* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: #1e293b;
  background: #fff;
  line-height: 1.6
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 0 24px
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover
}

.nav-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a
}

.nav-title span {
  color: #ef4444;
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px
}

.nav-links a {
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
  transition: color 0.2s
}

.nav-links a:hover {
  color: #ef4444
}

.nav-cta {
  background: #ef4444;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s !important
}

.nav-cta:hover {
  background: #dc2626 !important;
  color: #fff !important
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1e293b;
  transition: all 0.3s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 998;
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  padding: 12px 0;
  font-size: 1rem;
  color: #475569;
  font-weight: 500;
  border-bottom: 1px solid #f1f5f9
}

.mobile-menu a:last-child {
  border-bottom: none;
  margin-top: 8px
}

.mobile-menu .nav-cta {
  text-align: center;
  margin-top: 8px;
  border-bottom: none !important;
  border-radius: 8px;
  padding: 12px
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #dc2626 100%);
  color: #fff;
  padding: 80px 24px 64px;
  text-align: center;
  overflow: hidden;
  position: relative
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 50%
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.hero-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px
}

.hero h1 span {
  color: #fca5a5
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #cbd5e1;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center
}

.btn-primary {
  background: #ef4444;
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-primary:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5)
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5)
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 52px
}

.stat {
  text-align: center;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  min-width: 120px
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fca5a5;
  display: block
}

.stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 2px
}

/* SECTIONS */
section {
  padding: 72px 24px
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto
}

.section-tag {
  display: inline-block;
  background: #fef2f2;
  color: #dc2626;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px
}

.section-sub {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 48px
}

/* BEFORE-AFTER */
.before-after {
  background: #f8fafc
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px
}

.ba-card {
  border-radius: 16px;
  padding: 32px;
  border: 2px solid
}

.ba-before {
  background: #fff5f5;
  border-color: #fecaca
}

.ba-after {
  background: #f0fdf4;
  border-color: #86efac
}

.ba-icon {
  font-size: 2rem;
  margin-bottom: 12px
}

.ba-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px
}

.ba-before h3 {
  color: #dc2626
}

.ba-after h3 {
  color: #16a34a
}

.ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.ba-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #475569
}

.ba-list li::before {
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700
}

.ba-before .ba-list li::before {
  content: '✗';
  background: #fecaca;
  color: #dc2626
}

.ba-after .ba-list li::before {
  content: '✓';
  background: #bbf7d0;
  color: #16a34a
}

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(90deg, #b91c1c, #ef4444);
  padding: 48px 24px;
  text-align: center;
  color: #fff
}

.cta-strip h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 8px
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-size: 1rem
}

.cta-strip-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center
}

.btn-white {
  background: #fff;
  color: #dc2626;
  padding: 13px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.97rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-white:hover {
  background: #fef2f2;
  transform: translateY(-2px)
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 13px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.97rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1)
}

/* FEATURES */
.features-bg {
  background: #fff
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px
}

.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #f97316)
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #fca5a5
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px
}

.feature-card p {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6
}

/* SCREENSHOTS */
.screenshots {
  background: #f8fafc
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px
}

.screen-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s
}

.screen-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12)
}

.screen-preview {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 20px 18px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative
}

.screen-bar {
  height: 7px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px
}

.screen-bar.accent {
  background: rgba(239, 68, 68, 0.55);
  width: 55%
}

.screen-bar.sm {
  width: 40%
}

.screen-row {
  display: flex;
  gap: 8px;
  align-items: center
}

.screen-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0
}

.screen-dot.red {
  background: rgba(239, 68, 68, 0.4)
}

.screen-line {
  flex: 1;
  height: 9px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px
}

.screen-line.short {
  width: 40%;
  flex: none
}

.screen-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
  letter-spacing: 0.5px
}

.screen-info {
  padding: 16px 18px
}

.screen-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px
}

.screen-info p {
  font-size: 0.82rem;
  color: #64748b
}

/* HOW IT WORKS */
.how {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff
}

.how h2 {
  color: #fff
}

.how .section-sub {
  color: #94a3b8
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px
}

.step {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  position: relative
}

.step-num {
  width: 52px;
  height: 52px;
  background: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 16px
}

.step h3 {
  color: #f1f5f9;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px
}

.step p {
  color: #94a3b8;
  font-size: 0.9rem
}

/* ROLES */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px
}

.role-card {
  border-radius: 16px;
  padding: 28px;
  border: 2px solid;
  transition: transform 0.2s
}

.role-card:hover {
  transform: translateY(-4px)
}

.role-security {
  background: #fef2f2;
  border-color: #fecaca
}

.role-client {
  background: #eff6ff;
  border-color: #bfdbfe
}

.role-dept {
  background: #f0fdf4;
  border-color: #bbf7d0
}

.role-icon {
  font-size: 2.5rem;
  margin-bottom: 12px
}

.role-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px
}

.role-security h3 {
  color: #dc2626
}

.role-client h3 {
  color: #2563eb
}

.role-dept h3 {
  color: #16a34a
}

.role-card .role-sub {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 16px;
  font-weight: 500
}

.role-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.role-features li {
  font-size: 0.9rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px
}

.role-features li::before {
  content: '→';
  font-weight: 700;
  font-size: 0.8rem
}

.role-security .role-features li::before {
  color: #dc2626
}

.role-client .role-features li::before {
  color: #2563eb
}

.role-dept .role-features li::before {
  color: #16a34a
}

/* TESTIMONIALS */
.testimonials {
  background: #fff
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px
}

.testi-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 5rem;
  color: #fecaca;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none
}

.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px
}

.testi-text {
  color: #475569;
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0
}

.testi-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.92rem
}

.testi-role {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 2px
}

/* PRICING */
.pricing {
  background: #f8fafc
}

.plans {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px
}

.plan {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 16px;
  text-align: center;
  position: relative;
  transition: all 0.3s
}

.plan:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12)
}

.plan-popular {
  border-color: #2563eb;
  transform: scale(1.03)
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.plan-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px
}

.plan h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px
}

.plan-subtitle {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 14px
}

.plan-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1
}

.plan-price sup {
  font-size: 1rem;
  vertical-align: top;
  margin-top: 8px;
  color: #64748b
}

.plan-price sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b
}

.plan-capacity {
  display: inline-block;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 700;
  margin: 12px 0 20px
}

.plan-popular .plan-capacity {
  background: rgba(37, 99, 235, 0.07);
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.25)
}

.plan-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px
}

.plan-features li {
  font-size: 0.82rem;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.plan-features li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

.plan-features li.no {
  color: #cbd5e1
}

.plan-features li.no::before {
  content: '—';
  color: #cbd5e1;
  font-weight: 400
}

.plan-btn {
  display: block;
  padding: 11px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s
}

.plan-popular .plan-btn {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35)
}

.plan-popular .plan-btn:hover {
  background: #1d4ed8
}

.plan-btn:not(.plan-popular .plan-btn) {
  background: #f1f5f9;
  color: #1e293b
}

.plan-btn:not(.plan-popular .plan-btn):hover {
  background: #e2e8f0
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  color: #64748b;
  font-size: 0.9rem
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden
}

.faq-q {
  padding: 18px 20px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #fff;
  transition: background 0.2s
}

.faq-q:hover {
  background: #fef2f2
}

.faq-q .arrow {
  font-size: 1.2rem;
  transition: transform 0.2s;
  color: #ef4444;
  flex-shrink: 0
}

.faq-a {
  padding: 0 20px 18px;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
  background: #fff
}

.faq-item.open .faq-q {
  background: #fef2f2
}

.faq-item.open .faq-a {
  display: block
}

.faq-item.open .arrow {
  transform: rotate(180deg)
}

/* CONTACT */
.contact {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  text-align: center
}

.contact h2 {
  color: #fff
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left
}

.contact-info h3 {
  color: #f1f5f9;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 100%;
  margin: 0 0 28px
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
  transition: background 0.2s
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1)
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 10px
}

.contact-card h4 {
  color: #f1f5f9;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px
}

.contact-card p,
.contact-card a {
  color: #94a3b8;
  font-size: 0.9rem;
  word-break: break-word
}

.contact-card a:hover {
  color: #fca5a5
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.2s
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px)
}

/* CONTACT FORM */
.contact-form-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px
}

.contact-form-box h3 {
  color: #f1f5f9;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px
}

.fg label {
  font-size: 0.82rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.fg input,
.fg select,
.fg textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 11px 13px;
  color: #f1f5f9;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border 0.2s;
  width: 100%
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: #475569
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: rgba(239, 68, 68, 0.7)
}

.fg select option {
  background: #1e293b;
  color: #f1f5f9
}

.fg textarea {
  resize: vertical;
  min-height: 80px
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.form-submit-btn {
  width: 100%;
  padding: 13px;
  background: #ef4444;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.form-submit-btn:hover {
  background: #dc2626
}

/* FLOATING WHATSAPP */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s;
  animation: wa-pulse 2.5s infinite
}

.float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
  animation: none
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5) }
  50% { box-shadow: 0 4px 36px rgba(37, 211, 102, 0.85) }
}

/* FOOTER */
footer {
  background: #0f172a;
  color: #64748b;
  padding: 24px;
  text-align: center;
  font-size: 0.85rem
}

footer strong {
  color: #94a3b8
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .plans { grid-template-columns: repeat(3, 1fr) }
}

@media (max-width: 768px) {
  .nav-links { display: none }
  .hamburger { display: flex }
  .ba-grid { grid-template-columns: 1fr }
  .plan-popular { transform: scale(1) }
  section { padding: 52px 20px }
  .hero { padding: 60px 20px 48px }
  .hero-stats { gap: 12px }
  .stat { padding: 12px 16px; min-width: 90px }
  .stat-num { font-size: 1.4rem }
  .contact-layout { grid-template-columns: 1fr }
}

@media (max-width: 700px) {
  .plans { grid-template-columns: repeat(2, 1fr) }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr }
  .roles-grid { grid-template-columns: 1fr }
  .plans { grid-template-columns: 1fr }
  .fg-row { grid-template-columns: 1fr }
  .steps { grid-template-columns: 1fr 1fr }
  .hero-buttons { flex-direction: column; align-items: center }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center }
}
