/* ─── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #14B8A6;
  --teal-dark:  #0D9488;
  --teal-dim:   rgba(20,184,166,0.12);
  --teal-glow:  rgba(20,184,166,0.25);
  --violet:     #818CF8;
  --violet-dim: rgba(129,140,248,0.12);
  --pink:       #FB7185;
  --amber:      #FBBF24;
  --navy:       #0A0F1E;
  --navy-2:     #0D1420;
  --navy-3:     #111827;
  --navy-4:     #1E293B;
  --slate-1:    #F8FAFC;
  --slate-2:    #CBD5E1;
  --slate-3:    #94A3B8;
  --slate-4:    #475569;
  --slate-5:    #1E293B;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--slate-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography Scale ──────────────────────────────────────────────────────── */
.display-1 { font-size: clamp(2.75rem, 6vw, 5rem);   font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
.display-2 { font-size: clamp(2rem,   4vw, 3.25rem); font-weight: 700; line-height: 1.1;  letter-spacing: -0.025em; }
.heading-1 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2;  letter-spacing: -0.02em; }
.heading-2 { font-size: clamp(1.1rem, 2vw, 1.375rem);font-weight: 600; line-height: 1.3; }
.body-lg   { font-size: 1.125rem; line-height: 1.7; }
.body-md   { font-size: 1rem;     line-height: 1.65; }
.body-sm   { font-size: 0.875rem; line-height: 1.6; }
.label     { font-size: 0.75rem;  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── Layout ────────────────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(10,15,30,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav__inner {
  max-width: 1120px; margin: 0 auto;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; color: #fff;
  box-shadow: 0 0 20px var(--teal-glow);
}
.nav__wordmark { font-size: 18px; font-weight: 700; color: var(--slate-1); }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link { color: var(--slate-3); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav__link:hover { color: var(--slate-1); }
.nav__cta {
  background: var(--teal); color: #fff;
  padding: 9px 20px; border-radius: 99px;
  font-size: 0.875rem; font-weight: 600;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 24px var(--teal-glow);
}
.nav__cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 32px var(--teal-glow); }
.nav__mobile-toggle { display: none; color: var(--slate-2); padding: 8px; }
.nav__mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--navy-2); border-top: 1px solid var(--navy-4);
  padding: 8px 0 16px;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-link {
  padding: 13px 24px; color: var(--slate-2); font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav__mobile-link:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__mobile-toggle { display: block; }
}

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(20,184,166,0.13) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 80%, rgba(129,140,248,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 20% 70%, rgba(251,113,133,0.05) 0%, transparent 60%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 0%, transparent 75%);
}

/* Waveform orb behind headline */
.hero__orb {
  position: absolute; top: 18%; left: 50%; transform: translateX(-50%);
  width: 520px; height: 520px; z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,0.07) 0%, transparent 70%);
  animation: orb-pulse 6s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50%       { transform: translateX(-50%) scale(1.12); opacity: 1; }
}

.hero__content { position: relative; z-index: 1; max-width: 860px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(20,184,166,0.1); border: 1px solid rgba(20,184,166,0.3);
  color: var(--teal); padding: 6px 16px; border-radius: 99px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fade-up 0.6s ease both;
}
.hero__badge-dot {
  width: 6px; height: 6px; background: var(--teal); border-radius: 50%;
  animation: badge-blink 2s ease infinite;
}
@keyframes badge-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero__headline {
  margin-bottom: 24px;
  animation: fade-up 0.7s 0.1s ease both;
}
.hero__headline .gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, #67E8F9 50%, var(--violet) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  color: var(--slate-3); font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px; margin: 0 auto 40px;
  line-height: 1.7;
  animation: fade-up 0.7s 0.2s ease both;
}
.hero__actions {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 56px;
  animation: fade-up 0.7s 0.3s ease both;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem; font-weight: 600; border-radius: 99px;
  padding: 14px 28px; transition: all 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal); color: #fff;
  box-shadow: 0 0 32px var(--teal-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--teal-glow); }
.btn--secondary {
  background: rgba(255,255,255,0.06); color: var(--slate-2);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn--secondary:hover { background: rgba(255,255,255,0.1); color: var(--slate-1); transform: translateY(-1px); }
.btn--ghost {
  color: var(--teal); font-size: 0.9rem; padding: 8px 0;
}

/* Store badge buttons */
.btn--store {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: var(--slate-1); padding: 12px 22px; border-radius: 12px;
  font-size: 0.875rem; font-weight: 600;
  transition: all 0.2s;
}
.btn--store:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn--store svg { width: 22px; height: 22px; }
.btn--store .store-label { display: flex; flex-direction: column; text-align: left; }
.btn--store .store-label span:first-child { font-size: 0.65rem; font-weight: 400; color: var(--slate-3); line-height: 1.2; }

.hero__social-proof {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  color: var(--slate-4); font-size: 0.85rem;
  animation: fade-up 0.7s 0.4s ease both;
}
.hero__avatars { display: flex; }
.hero__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--navy);
  margin-left: -8px; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-dark), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: #fff;
}
.hero__avatar:first-child { margin-left: 0; }

/* Phone mockup */
.hero__mockup {
  position: relative; z-index: 1;
  margin-top: 60px;
  animation: fade-up 0.8s 0.5s ease both;
}
.hero__phone {
  width: 280px; margin: 0 auto;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.hero__phone::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 26px;
  background: var(--navy-2); border-radius: 0 0 16px 16px;
  z-index: 1;
}
.hero__screen {
  background: var(--navy-3); border-radius: 28px; overflow: hidden;
  min-height: 480px;
  display: flex; flex-direction: column;
}
.phone__topbar {
  background: var(--navy-2); padding: 36px 16px 12px;
  display: flex; align-items: center; gap: 10px;
}
.phone__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 0 16px var(--teal-glow);
}
.phone__info { flex: 1; }
.phone__name { font-size: 13px; font-weight: 600; }
.phone__status { font-size: 11px; color: var(--teal); }
.phone__wave {
  display: flex; align-items: center; gap: 2px; height: 20px;
}
.phone__wave-bar {
  width: 3px; border-radius: 2px; background: var(--teal);
  animation: wave-bar var(--dur, 0.8s) ease-in-out infinite alternate;
  transform-origin: bottom;
}
@keyframes wave-bar { from{height:4px;opacity:0.4} to{height:var(--h,16px);opacity:1} }

.phone__messages { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.phone__bubble {
  max-width: 85%; padding: 10px 14px; border-radius: 16px;
  font-size: 12px; line-height: 1.5;
}
.phone__bubble--nova {
  background: rgba(20,184,166,0.15); border: 1px solid rgba(20,184,166,0.2);
  color: var(--slate-2); align-self: flex-start; border-bottom-left-radius: 4px;
}
.phone__bubble--user {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.08);
  color: var(--slate-2); align-self: flex-end; border-bottom-right-radius: 4px;
}
.phone__bubble--nova .bubble-label {
  font-size: 10px; font-weight: 600; color: var(--teal);
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px;
}
.phone__bar {
  padding: 12px 16px;
  background: var(--navy-2); border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 10px;
}
.phone__input-pill {
  flex: 1; background: rgba(255,255,255,0.06); border-radius: 99px;
  padding: 8px 14px; font-size: 12px; color: var(--slate-4);
  border: 1px solid rgba(255,255,255,0.08);
}
.phone__mic {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--teal); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 16px var(--teal-glow);
}

/* floating stat cards */
.hero__stat {
  position: absolute;
  background: rgba(13,20,32,0.9); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.hero__stat--left  { left: -90px; top: 30%; }
.hero__stat--right { right: -90px; top: 55%; animation-delay: -2s; }
.hero__stat-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.hero__stat-val { font-size: 16px; font-weight: 700; line-height: 1.1; }
.hero__stat-lbl { font-size: 10px; color: var(--slate-4); }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

@media (max-width: 640px) {
  .hero__stat { display: none; }
}

/* ─── LOGOS / TRUST BAR ─────────────────────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--navy-4);
  border-bottom: 1px solid var(--navy-4);
  padding: 32px 0;
  overflow: hidden;
}
.trust-bar__label { text-align: center; color: var(--slate-4); margin-bottom: 24px; }
.trust-bar__scroll {
  display: flex; align-items: center; gap: 56px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 10px;
  color: var(--slate-4); font-size: 0.875rem; font-weight: 500;
  opacity: 0.7; transition: opacity 0.2s;
  white-space: nowrap;
}
.trust-bar__item svg { flex-shrink: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── FEATURES ──────────────────────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-top: 56px;
}
.feature-card {
  background: var(--navy-2); border: 1px solid var(--navy-4);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, var(--card-color, rgba(20,184,166,0.08)) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--slate-3); font-size: 0.9rem; line-height: 1.65; }
.feature-card .feature-tag {
  display: inline-block; margin-top: 16px;
  background: var(--teal-dim); color: var(--teal);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 3px 10px; border-radius: 99px;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }

/* ─── HOW IT WORKS ──────────────────────────────────────────────────────────── */
.steps { margin-top: 56px; display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 0 28px;
  position: relative; padding-bottom: 48px;
}
.step:last-child { padding-bottom: 0; }
.step__line-col { display: flex; flex-direction: column; align-items: center; }
.step__num {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  background: var(--navy-3); border: 2px solid var(--navy-4);
  color: var(--slate-3);
  flex-shrink: 0; z-index: 1;
  transition: border-color 0.3s, color 0.3s;
}
.step.active .step__num { border-color: var(--teal); color: var(--teal); box-shadow: 0 0 20px var(--teal-glow); }
.step__connector {
  flex: 1; width: 2px; background: var(--navy-4); margin: 4px 0;
}
.step__body { padding-top: 10px; }
.step__body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step__body p { color: var(--slate-3); font-size: 0.9rem; line-height: 1.65; }

/* ─── TESTIMONIALS ──────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-top: 56px; align-items: start;
}
.testimonial-card {
  background: var(--navy-2); border: 1px solid var(--navy-4);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(255,255,255,0.1); }
.testimonial-stars { color: var(--amber); font-size: 0.875rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: var(--slate-2); font-size: 0.925rem; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.875rem; font-weight: 600; }
.testimonial-role { font-size: 0.75rem; color: var(--slate-4); }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ─── PERSONAS ──────────────────────────────────────────────────────────────── */
.personas-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
  margin-top: 48px;
}
.persona-card {
  border-radius: var(--radius-lg); padding: 28px 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background: var(--navy-2);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.persona-card:hover { transform: translateY(-4px); border-color: var(--card-border, rgba(255,255,255,0.15)); }
.persona-emoji { font-size: 2rem; margin-bottom: 12px; }
.persona-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.persona-desc { font-size: 0.8rem; color: var(--slate-3); line-height: 1.5; }
.persona-traits { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 14px; }
.persona-trait {
  font-size: 0.7rem; padding: 2px 9px; border-radius: 99px;
  background: rgba(255,255,255,0.06); color: var(--slate-3);
}

@media (max-width: 900px) { .personas-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .personas-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* ─── PRICING ───────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
  max-width: 760px; margin: 56px auto 0;
}
.pricing-card {
  border-radius: var(--radius-xl); padding: 36px;
  border: 1px solid var(--navy-4);
  background: var(--navy-2);
  position: relative; overflow: hidden;
}
.pricing-card--featured {
  border-color: var(--teal);
  background: linear-gradient(135deg, rgba(20,184,166,0.08) 0%, var(--navy-2) 60%);
  box-shadow: 0 0 60px rgba(20,184,166,0.1);
}
.pricing-badge {
  display: inline-block; background: var(--teal); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px; margin-bottom: 20px;
}
.pricing-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.pricing-price {
  font-size: 2.75rem; font-weight: 800; line-height: 1; margin: 16px 0 4px;
  letter-spacing: -0.03em;
}
.pricing-period { font-size: 0.85rem; color: var(--slate-3); margin-bottom: 8px; }
.pricing-save {
  display: inline-block;
  background: rgba(251,191,36,0.15); color: var(--amber);
  font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 99px;
  margin-bottom: 24px;
}
.pricing-divider { border: none; border-top: 1px solid var(--navy-4); margin: 24px 0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--slate-2);
}
.pricing-check { color: var(--teal); flex-shrink: 0; font-size: 1rem; margin-top: 1px; }
.pricing-cross { color: var(--slate-5); flex-shrink: 0; font-size: 1rem; margin-top: 1px; }
.pricing-cta {
  display: block; text-align: center;
  margin-top: 28px; padding: 14px; border-radius: 99px;
  font-weight: 600; font-size: 0.925rem;
  transition: all 0.2s;
}
.pricing-cta--primary {
  background: var(--teal); color: #fff;
  box-shadow: 0 0 32px var(--teal-glow);
}
.pricing-cta--primary:hover { opacity: 0.9; transform: translateY(-1px); }
.pricing-cta--secondary {
  background: rgba(255,255,255,0.06); color: var(--slate-2);
  border: 1px solid rgba(255,255,255,0.1);
}
.pricing-cta--secondary:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */
.faq { max-width: 680px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--navy-4);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--navy-4); }
.faq-question {
  width: 100%; text-align: left; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.975rem; font-weight: 600; color: var(--slate-1);
  gap: 16px; background: none;
}
.faq-question .faq-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--navy-4); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 400; color: var(--slate-3);
  transition: transform 0.25s, background 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); color: #fff; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  color: var(--slate-3); font-size: 0.9rem; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* ─── CTA SECTION ───────────────────────────────────────────────────────────── */
.cta-section {
  padding: 96px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(20,184,166,0.1) 0%, transparent 70%);
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--slate-3); max-width: 480px; margin: 0 auto 40px; }
.cta-section .store-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--navy-4);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer__brand p { color: var(--slate-3); font-size: 0.875rem; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer__col h4 { font-size: 0.8rem; font-weight: 600; color: var(--slate-3); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col li a { color: var(--slate-3); font-size: 0.875rem; transition: color 0.2s; }
.footer__col li a:hover { color: var(--slate-1); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px;
  border-top: 1px solid var(--navy-4); padding-top: 24px;
  color: var(--slate-4); font-size: 0.8rem;
}
.footer__bottom a { color: var(--slate-4); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--slate-2); }
.footer__bottom-links { display: flex; gap: 20px; }

@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1/-1; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ─── LEGAL PAGES ───────────────────────────────────────────────────────────── */
.legal-page { padding: 100px 0 80px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-page .meta { color: var(--slate-4); font-size: 0.875rem; margin-bottom: 32px; }
.legal-page .intro-box {
  background: var(--navy-2); border-left: 3px solid var(--violet);
  border-radius: var(--radius-md); padding: 20px 24px;
  color: var(--slate-3); font-size: 0.925rem; margin-bottom: 48px;
  line-height: 1.7;
}
.legal-section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--navy-4); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: 1rem; font-weight: 700; color: var(--teal); margin-bottom: 12px; }
.legal-section p, .legal-section li { font-size: 0.9rem; color: var(--slate-3); line-height: 1.7; }
.legal-section li { margin-left: 20px; margin-bottom: 5px; }
.legal-section strong { color: var(--slate-2); display: block; margin: 12px 0 4px; }
.legal-section a { color: var(--teal); }

/* ─── SECTION HEADER ────────────────────────────────────────────────────────── */
.section-header { text-align: center; max-width: 620px; margin: 0 auto; }
.section-header .label { color: var(--teal); margin-bottom: 14px; display: block; }
.section-header p { color: var(--slate-3); margin-top: 14px; font-size: 1rem; line-height: 1.7; }

/* ─── STAT STRIP ────────────────────────────────────────────────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border: 1px solid var(--navy-4);
  border-radius: var(--radius-xl); overflow: hidden;
  background: var(--navy-2);
  margin-top: 56px;
}
.stat-item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--navy-4);
}
.stat-item:last-child { border-right: none; }
.stat-value { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stat-label { color: var(--slate-3); font-size: 0.875rem; margin-top: 6px; }

@media (max-width: 700px) { .stats-strip { grid-template-columns: repeat(2,1fr); } .stat-item:nth-child(2) { border-right: none; } .stat-item:nth-child(1),.stat-item:nth-child(2) { border-bottom: 1px solid var(--navy-4); } }
@media (max-width: 400px) { .stats-strip { grid-template-columns: 1fr; } .stat-item { border-right: none; border-bottom: 1px solid var(--navy-4); } .stat-item:last-child { border-bottom: none; } }

/* ─── UTILITIES ─────────────────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, #67E8F9 50%, var(--violet) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-muted { color: var(--slate-3); }

/* ─── ANIMATIONS ────────────────────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── SCROLLBAR ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy-4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--slate-4); }
