/* ============================================================
   INSURANCE WAY — styles.css
   ============================================================
   PARA CAMBIAR COLORES: edita las variables de :root abajo.
   PARA CAMBIAR FUENTES: busca la sección "TIPOGRAFÍA".
   Mobile-first: responsive funciona desde 320px hasta 4K.
   ============================================================ */


/* ============================================================
   1. VARIABLES GLOBALES — cambia aquí para afectar todo el sitio
   ============================================================ */
:root {
  /* Colores principales — tema claro */
  --color-bg:        #fafaf7;    /* fondo general (casi blanco, cálido) */
  --color-bg-alt:    #f2f1ec;    /* fondo secciones alternas */
  --color-card:      #ffffff;    /* fondo de tarjetas */
  --color-text:      #0f0f0e;    /* texto principal (casi negro) */
  --color-muted:     #6b6b68;    /* texto secundario */
  --color-accent:    #1f3a2b;    /* verde oscuro — color de marca */
  --color-accent-2:  #d4ff3f;    /* lima — acento secundario */
  --color-border:    rgba(15,15,14,0.1);

  /* Tipografía */
  --font-display:    'Bebas Neue', sans-serif;
  --font-body:       'DM Sans', sans-serif;

  /* Espaciado */
  --radius-card:     20px;
  --radius-pill:     100px;

  /* Transiciones */
  --transition:      0.25s ease;
}


/* ============================================================
   2. RESET Y BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }


/* ============================================================
   3. UTILIDADES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent   { color: var(--color-accent); }
.accent-2 { color: var(--color-accent-2); }

.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 16px;
  color: var(--color-muted);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* Reveal al hacer scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { box-shadow: 0 12px 32px rgba(31,58,43,0.28); background: #12291d; }

.btn-lime { background: var(--color-accent-2); color: var(--color-accent); }
.btn-lime:hover { box-shadow: 0 12px 32px rgba(212,255,63,0.4); }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn-outline:hover { border-color: var(--color-text); }


/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--color-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--color-muted);
  transition: color var(--transition);
  font-weight: 500;
}
.nav-links a:hover { color: var(--color-text); }
.nav-links .btn {
  padding: 9px 20px;
  font-size: 14px;
  color: #fff;
}

/* Toggle mobile */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 120px 24px 60px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,255,63,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-left { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--color-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2ecc71;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.92;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-title .accent { color: var(--color-accent); }
.hero-title .ghost {
  -webkit-text-stroke: 1.5px var(--color-text);
  color: transparent;
}

.hero-sub {
  font-size: 17px;
  color: var(--color-muted);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--color-text); font-weight: 600; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

.hero-visual { position: relative; z-index: 1; }
.hero-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--color-muted);
  flex-direction: column;
  gap: 14px;
  text-align: center;
  padding: 20px;
}

.hero-float {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--color-text);
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  max-width: 260px;
}
.hero-float-icon {
  width: 40px; height: 40px;
  background: var(--color-accent-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-float-value { font-weight: 600; font-size: 15px; line-height: 1.2; }


/* ============================================================
   6. TICKER
   ============================================================ */
.ticker {
  padding: 16px 0;
  overflow: hidden;
  background: var(--color-accent);
  color: #fff;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
}
.ticker-item .sep { color: var(--color-accent-2); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   7. CÓMO FUNCIONA
   ============================================================ */
.how-section {
  padding: 90px 24px;
  background: var(--color-bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  padding: 36px 28px;
  border-radius: var(--radius-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.step-number {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--color-accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  width: 48px; height: 48px;
  background: var(--color-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--color-muted); line-height: 1.7; }


/* ============================================================
   8. PLANES
   ============================================================ */
.plans-section {
  padding: 90px 24px;
  background: var(--color-bg-alt);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.plan-card.featured {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: scale(1.02);
}
.plan-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.plan-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--color-accent-2);
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.plan-name {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
  font-weight: 600;
}
.plan-card.featured .plan-name { color: rgba(255,255,255,0.6); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.plan-price .currency { font-size: 22px; color: var(--color-muted); }
.plan-price .amount {
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1;
}
.plan-card.featured .plan-price .currency { color: rgba(255,255,255,0.55); }
.plan-card.featured .plan-price .amount   { color: #fff; }
.plan-price .period { font-size: 14px; color: var(--color-muted); }
.plan-card.featured .plan-price .period   { color: rgba(255,255,255,0.6); }

.plan-desc {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 24px;
  line-height: 1.6;
  min-height: 44px;
}
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.7); }

.plan-features {
  margin-bottom: 28px;
  border-top: 1px solid var(--color-border);
}
.plan-card.featured .plan-features { border-top-color: rgba(255,255,255,0.15); }

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--color-border);
}
.plan-card.featured .plan-features li { color: #fff; border-bottom-color: rgba(255,255,255,0.15); }

.plan-features .check { color: var(--color-accent); flex-shrink: 0; font-weight: 700; }
.plan-card.featured .plan-features .check { color: var(--color-accent-2); }
.plan-features .no { color: var(--color-muted); flex-shrink: 0; opacity: 0.5; }
.plan-features li.disabled { opacity: 0.4; }

.plan-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--color-accent);
  background: transparent;
  color: var(--color-accent);
  transition: all var(--transition);
  text-decoration: none;
}
.plan-btn:hover { background: var(--color-accent); color: #fff; }
.plan-card.featured .plan-btn {
  background: var(--color-accent-2);
  border-color: var(--color-accent-2);
  color: var(--color-accent);
}
.plan-card.featured .plan-btn:hover { background: #fff; border-color: #fff; }


/* ============================================================
   9. POR QUÉ NOSOTROS
   ============================================================ */
.why-section {
  padding: 90px 24px;
  background: var(--color-bg);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.why-img-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  position: relative;
}
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.why-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--color-muted);
  flex-direction: column;
  gap: 12px;
  text-align: center;
  padding: 20px;
}
.why-float-card {
  position: absolute;
  bottom: 20px; right: -16px;
  background: var(--color-accent-2);
  color: var(--color-accent);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}
.why-float-number { font-family: var(--font-display); font-size: 44px; line-height: 1; }
.why-float-label  { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

.why-list .why-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}
.why-list .why-item:first-child { border-top: 1px solid var(--color-border); }
.why-item-num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  padding-top: 2px;
}
.why-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.why-item p  { font-size: 14px; color: var(--color-muted); line-height: 1.65; }


/* ============================================================
   10. FAQ
   ============================================================ */
.faq-section {
  padding: 90px 24px;
  background: var(--color-bg-alt);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.faq-list { border-top: 1px solid var(--color-border); }
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  gap: 20px;
}
.faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--color-accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 12px;
}


/* ============================================================
   11. TESTIMONIOS
   ============================================================ */
.testimonials-section {
  padding: 90px 24px;
  background: var(--color-bg);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}
.testi-stars { color: #f5b301; font-size: 15px; letter-spacing: 3px; margin-bottom: 16px; }
.testi-text { font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name  { font-size: 14px; font-weight: 600; }
.author-meta  { font-size: 12px; color: var(--color-muted); margin-top: 1px; }


/* ============================================================
   12. CONTACTO
   ============================================================ */
.contact-section {
  padding: 90px 24px;
  background: var(--color-bg-alt);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-item:first-of-type { border-top: 1px solid var(--color-border); }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--color-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 13px; color: var(--color-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-weight: 600; }
.contact-item p  { font-size: 16px; font-weight: 500; }
.contact-item a  { color: var(--color-accent); transition: color var(--transition); }
.contact-item a:hover { color: var(--color-text); }

.contact-card {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 40px 32px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
}
.contact-card p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  line-height: 1.6;
}
.contact-card .btn {
  background: var(--color-accent-2);
  color: var(--color-accent);
  width: 100%;
}
.contact-card .btn:hover { background: #fff; }


/* ============================================================
   13. BANNER CTA FINAL
   ============================================================ */
.cta-banner {
  background: var(--color-text);
  color: #fff;
  border-radius: 28px;
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  border: 60px solid rgba(212,255,63,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  margin-bottom: 10px;
}
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.65); }


/* ============================================================
   14. FOOTER
   ============================================================ */
footer {
  background: var(--color-text);
  color: #fff;
  padding: 60px 24px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-brand .logo-name { color: #fff; }
.footer-col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-accent-2); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); margin-left: 20px; }
.footer-bottom a:hover { color: var(--color-accent-2); }


/* ============================================================
   15. RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 20px 60px;
    gap: 40px;
  }
  .hero::before { display: none; }
  .hero-img-wrap { aspect-ratio: 4/3; }
  .hero-float { left: 16px; }

  .steps-grid,
  .plans-grid,
  .testi-grid { grid-template-columns: 1fr; }

  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-4px); }

  .why-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
    margin: 0 24px 60px;
  }
}

@media (max-width: 640px) {
  .navbar { padding: 14px 20px; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 32px 32px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    width: 100%;
  }
  .nav-links .btn {
    margin-top: 16px;
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    border-bottom: none;
    color: #fff;
  }
  .nav-toggle { display: flex; }

  .hero { padding: 90px 16px 50px; }
  .hero-title { font-size: clamp(40px, 12vw, 64px); }
  .hero-actions .btn { flex: 1; min-width: 140px; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 30px; }

  .how-section,
  .plans-section,
  .why-section,
  .faq-section,
  .testimonials-section,
  .contact-section { padding: 64px 16px; }

  .section-title { font-size: clamp(32px, 8vw, 44px); }

  .cta-banner {
    margin: 0 16px 40px;
    padding: 36px 24px;
    border-radius: 20px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .why-float-card { right: 12px; padding: 14px 18px; }
  .why-float-number { font-size: 36px; }
}
