/* === Promo Banner === */
.promo-banner {
  background: linear-gradient(90deg, #0D9488, #0B7C72, #0D9488);
  background-size: 200% 100%;
  animation: promoShimmer 3s ease infinite;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

@keyframes promoShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.promo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.promo-banner-text {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-original-price {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 0.85em;
}

.promo-badge {
  background: #fff;
  color: #0B7C72;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.promo-banner-cta {
  background: #fff;
  color: #0B7C72;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.promo-banner-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.promo-banner-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
}

.promo-banner-close:hover {
  color: #fff;
}

/* Offset nav and hero when promo is visible */
body.has-promo .nav {
  top: 40px;
}

body.has-promo .hero-dark {
  padding-top: calc(68px + 40px);
}

body.has-promo .page-header {
  padding-top: calc(140px + 40px);
}

/* CTA promo pill */
.cta-promo-pill {
  display: inline-block;
  background: rgba(13, 148, 136, 0.15);
  color: #2DD4BF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.cta-box .promo-original-price {
  text-decoration: line-through;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .promo-banner {
    font-size: 0.78rem;
    padding: 8px 12px;
  }
  .promo-banner-inner {
    gap: 10px;
  }
  .promo-banner-cta {
    padding: 4px 12px;
    font-size: 0.75rem;
  }
  body.has-promo .nav {
    top: 56px;
  }
  body.has-promo .hero-dark {
    padding-top: calc(68px + 56px);
  }
  body.has-promo .page-header {
    padding-top: calc(140px + 56px);
  }
}

@media (max-width: 480px) {
  .promo-banner-inner {
    flex-wrap: wrap;
    gap: 6px;
  }
  .promo-banner-cta {
    order: 3;
  }
  body.has-promo .nav {
    top: 72px;
  }
  body.has-promo .hero-dark {
    padding-top: calc(68px + 72px);
  }
  body.has-promo .page-header {
    padding-top: calc(140px + 72px);
  }
}

/* === Skip to Content (A11y) === */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 12px 24px;
  background: var(--navy);
  color: #fff;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 0;
  color: #fff;
}

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

:root {
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --surface: #ffffff;
  --surface-hover: #f4f6f9;
  --border: #e8ecf1;
  --border-hover: #d0d7e0;
  --text: #1a2332;
  --text-secondary: #3d4f63;
  --text-muted: #7b8a9e;
  --navy: #1a2744;
  --navy-light: #2a3a5c;
  --green: #0D9488;
  --green-dark: #0B7C72;
  --green-light: #e6f5f3;
  --navy-glow: rgba(26, 39, 68, 0.06);
  --green-glow: rgba(13, 148, 136, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(26, 39, 68, 0.05);
  --shadow-md: 0 4px 20px rgba(26, 39, 68, 0.07);
  --shadow-lg: 0 12px 40px rgba(26, 39, 68, 0.1);
  --shadow-xl: 0 24px 60px rgba(26, 39, 68, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--green);
}

/* === Scroll Animations === */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Nav === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(26, 39, 68, 0.04);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  transition: color 0.3s;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo:hover {
  color: #fff;
}

.nav.scrolled .nav-logo {
  color: var(--navy);
}

.nav.scrolled .nav-logo:hover {
  color: var(--navy);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.nav-links a.active {
  color: #2DD4BF;
  background: rgba(13,148,136,.15);
  font-weight: 600;
}

.nav.scrolled .nav-links a {
  color: var(--text-muted);
}

.nav.scrolled .nav-links a:hover {
  color: var(--text);
  background: var(--bg-alt);
}

.nav.scrolled .nav-links a.active {
  color: var(--green-dark);
  background: #e6f5f3;
}

.hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s;
}

.nav.scrolled .hamburger {
  border-color: var(--border);
  color: var(--navy);
}

/* === Layout === */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 100px 0;
}

/* === Dark Hero === */
.hero-dark {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(ellipse 70% 50% at 35% 50%, #0D2420, #070E0D);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-dark::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 18%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: ambientDrift 20s ease-in-out infinite alternate;
}

@keyframes ambientDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(15px, -10px) scale(1.05); }
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0;
  animation: particleSlow 14s ease-in-out infinite;
}

@keyframes particleSlow {
  0% { opacity: 0; transform: translateY(0) scale(0.4); }
  15% { opacity: 0.25; }
  85% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-180px) scale(0.8); }
}

.hero-dark-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

/* Hero text column */
.hero-text {
  position: relative;
}

.privacy-anchor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #14B8A6;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeIn 0.6s 0.2s forwards;
}

.anchor-dot {
  width: 6px;
  height: 6px;
  background: #14B8A6;
  border-radius: 50%;
  animation: anchorPulse 3s ease-in-out infinite;
}

@keyframes anchorPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-dark-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 8px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.4px;
  opacity: 0;
  animation: heroFadeUp 0.7s 0.4s forwards;
  box-shadow: 0 0 40px rgba(13,148,136,.25);
}

.hero-headline {
  margin-top: 28px;
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  opacity: 0;
  animation: heroFadeUp 0.7s 0.65s forwards;
}

.accent-line {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #2DD4BF);
  border-radius: 4px;
  margin-top: 18px;
  animation: lineGrow 0.5s 1s forwards;
}

@keyframes lineGrow {
  to { width: 72px; }
}

.hero-subtitle {
  margin-top: 18px;
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  font-weight: 400;
  opacity: 0;
  animation: heroFadeUp 0.7s 1.1s forwards;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  opacity: 0;
  animation: heroFadeUp 0.7s 1.3s forwards;
}

.hero-tag {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(13,148,136,.1);
  color: #2DD4BF;
  border: 1px solid rgba(13,148,136,.15);
  transition: all 0.4s cubic-bezier(.25,.1,.25,1);
  cursor: default;
  text-decoration: none;
}

a.hero-tag {
  cursor: pointer;
}

.hero-tag:hover {
  background: rgba(13,148,136,.18);
  border-color: rgba(13,148,136,.35);
  transform: translateY(-1px);
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  opacity: 0;
  animation: heroFadeUp 0.7s 1.55s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(.25,.1,.25,1);
  position: relative;
  overflow: hidden;
}

.hero-cta-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(13,148,136,.25);
}

.hero-cta-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(13,148,136,.35);
  color: #fff;
}

.hero-cta-primary:hover::after {
  opacity: 1;
}

.hero-cta-secondary {
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.08);
  cursor: default;
}

.hero-cta-secondary:hover {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}

.hero-cta-sub {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  opacity: 0;
  animation: heroFadeUp 0.7s 1.8s forwards;
}

/* Social proof badge */
.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  opacity: 0;
  animation: heroFadeUp 0.7s 2s forwards;
}

.social-proof .stars {
  color: #FBBF24;
  letter-spacing: 1px;
}

/* Store badge buttons */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px 10px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.25,.1,.25,1);
  cursor: pointer;
}

.store-badge:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-2px);
  color: #fff;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-weight: 700;
  font-size: 16px;
}

.store-badge-text small {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.store-badge-disabled {
  opacity: 0.45;
  cursor: default;
}

.store-badge-disabled:hover {
  transform: none;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
}

/* Light variant (for CTA section) */
.store-badge.store-badge-light {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}

.store-badge.store-badge-light:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.3);
}

.store-badge.store-badge-light.store-badge-disabled:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Phone showcase */
.phone-showcase {
  position: relative;
  height: 640px;
  opacity: 0;
  animation: heroFadeIn 1s 0.5s forwards;
}

.phone-glow {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(13,148,136,.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 1.5s, transform 1.5s;
}

.phone-glow.bright {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.15);
}

.phone-glow.dim {
  opacity: 0.5;
  transform: translate(-50%, -50%) scale(0.95);
}

.phone {
  position: absolute;
  width: 260px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.06);
  will-change: transform, opacity, filter;
  transition: all 1.4s cubic-bezier(.4, 0, .2, 1);
}

.phone img {
  width: 100%;
  display: block;
  border-radius: 26px;
}

.pos-center { top: 30px; left: 50%; transform: translateX(-50%) scale(1); z-index: 5; opacity: 1; filter: brightness(1); animation: gentleFloat 6s ease-in-out infinite; }
.pos-right { top: 55px; left: 73%; transform: translateX(-50%) scale(0.82); z-index: 3; opacity: 0.55; filter: brightness(0.65); }
.pos-left { top: 55px; left: 27%; transform: translateX(-50%) scale(0.82); z-index: 3; opacity: 0.55; filter: brightness(0.65); }
.pos-far-right { top: 70px; left: 88%; transform: translateX(-50%) scale(0.68); z-index: 1; opacity: 0.2; filter: brightness(0.45); }
.pos-far-left { top: 70px; left: 12%; transform: translateX(-50%) scale(0.68); z-index: 1; opacity: 0.2; filter: brightness(0.45); }

@keyframes gentleFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* Floating info cards */
.float-card {
  position: absolute;
  z-index: 10;
  background: rgba(8,20,18,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(13,148,136,.15);
  border-radius: 14px;
  padding: 12px 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s, transform 1s;
}

.float-card.visible {
  opacity: 1;
}

.float-card-label {
  color: rgba(255,255,255,.4);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.float-card-value {
  font-size: 20px;
  font-weight: 800;
  color: #2DD4BF;
  margin-top: 3px;
}

.fc-privacy {
  top: 30px;
  right: -10px;
  animation: cardFloat 8s 2.5s ease-in-out infinite;
}

.fc-savings {
  bottom: 110px;
  left: -5px;
  animation: cardFloat 9s 3.2s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.shield-icon {
  font-size: 10px;
}

/* Dark hero nav override */
.hero-dark ~ .nav,
.hero-dark + .nav {
  background: transparent;
}

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

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.93rem;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--navy-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  color: var(--navy);
  border-color: var(--border-hover);
  background: var(--bg-alt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.25);
}

.btn-green:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.3);
}

.store-icon {
  width: 18px;
  height: 18px;
}

/* Coming Soon Button */
.btn-coming-soon {
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  cursor: default;
  position: relative;
}

.btn-coming-soon .badge {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--green);
  color: #fff;
  margin-left: 4px;
}

/* === Section Headers === */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 460px;
  margin: 0 auto;
}

/* === Top 3 Benefits === */
.benefits-section {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

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

.benefit-card {
  text-align: center;
  padding: 44px 28px 36px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--navy));
}

.benefit-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 24px 48px rgba(26, 39, 68, 0.12);
  border-color: rgba(13, 148, 136, 0.25);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #e6f5f3;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-icon.navy {
  background: #e8ecf4;
  color: var(--navy);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === Privacy Hook === */
.privacy-hook {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.06), rgba(26, 39, 68, 0.06));
}

.privacy-hook-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 48px 36px;
}

.hook-line {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.hook-line.highlight {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--green);
  margin-top: 8px;
}

.hook-line em {
  font-style: italic;
  color: var(--navy);
}

/* === Feature Groups === */
.feature-group {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 20px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-group:hover {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(13, 148, 136, 0.25);
  box-shadow: 0 16px 36px rgba(26, 39, 68, 0.08);
}

.feature-group:hover::before {
  opacity: 1;
}

.feature-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.feature-group-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #e8ecf4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-group-icon.green {
  background: #e6f5f3;
}

.feature-group-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.feature-group-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--green);
  color: #fff;
}

.feature-group-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.feature-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-alt);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.feature-mini:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.feature-mini span {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* === Comparison Table === */
.comparison-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 50%, var(--bg) 100%);
}

.comparison-table {
  max-width: 640px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}

.comparison-table .spent-col {
  color: var(--green-dark);
  font-weight: 600;
}

.comparison-table thead .spent-col {
  background: var(--green-dark);
  color: #fff;
}

.comparison-table tbody tr:hover td {
  background: #e6f5f3;
}

.comparison-table .check {
  color: var(--green);
  font-weight: 700;
  margin-right: 4px;
}

.comparison-table .cross {
  color: #dc2626;
  font-weight: 700;
  margin-right: 4px;
}

/* === Preview Section === */
.preview-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 50%, var(--bg) 100%);
  text-align: center;
}

.preview-banner {
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.preview-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.preview-screenshots {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.preview-screenshots::-webkit-scrollbar {
  display: none;
}

.screenshots-track {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}

.screenshot-card {
  flex: 0 0 auto;
  width: 240px;
  scroll-snap-align: center;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--surface);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* === What's New Timeline === */
.whats-new-section {
  padding: 80px 0 100px;
  text-align: center;
  background: var(--bg);
}

.timeline {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
  text-align: left;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--green), var(--navy));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--green);
  z-index: 1;
}

.timeline-dot.green {
  background: var(--green);
  box-shadow: 0 0 0 2px var(--green);
}

.timeline-dot.navy {
  background: var(--navy);
  box-shadow: 0 0 0 2px var(--navy);
}

.timeline-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(26, 39, 68, 0.1);
  border-color: var(--border-hover);
}

.timeline-content:hover::before {
  opacity: 1;
}

.timeline-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.timeline-tag.new {
  background: #e6f5f3;
  color: var(--green-dark);
}

.timeline-tag.improved {
  background: #e8ecf4;
  color: var(--navy);
}

.timeline-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* === Features Section === */
.features-section {
  padding: 100px 0 80px;
  text-align: center;
}

.features-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}

.feature-tile {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26, 39, 68, 0.1);
  border-color: var(--border-hover);
}

.feature-tile:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e6f5f3;
  margin-bottom: 20px;
}

.feature-tile:nth-child(even) .feature-icon {
  background: #e8ecf4;
}

.feature-tile:nth-child(3n) .feature-icon {
  background: #fef3c7;
}

.feature-tile:nth-child(4n+1) .feature-icon {
  background: #fee2e2;
}

.feature-tile h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-tile p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* === CTA === */
.cta {
  text-align: center;
  padding: 100px 0;
}

.cta-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaOrb 15s ease-in-out infinite;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaOrb 15s ease-in-out infinite reverse;
}

@keyframes ctaOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.cta p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  font-size: 1.1rem;
  position: relative;
}

.cta .btn-green {
  box-shadow: 0 4px 24px rgba(13, 148, 136, 0.35);
}

.cta .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* === Page Header === */
.page-header {
  padding-top: 140px;
  padding-bottom: 48px;
  text-align: center;
  background: linear-gradient(180deg, #edf7f6 0%, var(--bg-alt) 40%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 8px;
}

.page-header .subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* === Content === */
.content-section {
  padding: 40px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 14px;
  padding-top: 28px;
  padding-left: 16px;
  border-top: 1px solid var(--border);
  border-left: 3px solid var(--green);
}

.content-section h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
  border-left: 3px solid var(--green);
  padding-left: 16px;
}

.content-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-light);
  margin-top: 24px;
  margin-bottom: 10px;
}

.content-section p,
.content-section li {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.content-section ul {
  padding-left: 18px;
  margin-bottom: 14px;
}

.content-section li {
  margin-bottom: 6px;
}

.content-section li::marker {
  color: var(--green);
}

.content-section strong {
  color: var(--navy);
  font-weight: 600;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0 24px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: var(--surface);
}

.content-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.content-section th,
.content-section td {
  padding: 12px 14px;
  text-align: left;
  border: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
  word-wrap: break-word;
}

.content-section th {
  background: var(--navy);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-color: var(--navy-light);
  white-space: nowrap;
}

.content-section tbody tr:nth-child(even) {
  background: var(--bg-alt);
}

.content-section tbody tr:hover td {
  background: #e6f5f3;
  transition: background 0.2s ease;
}

.content-section td:first-child {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .content-section table {
    font-size: 0.82rem;
  }
  .content-section th,
  .content-section td {
    padding: 10px 10px;
  }
}

/* === Currencies Page === */
.currencies-page {
  max-width: 960px;
}

.currency-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.currency-stat {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.currency-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.03em;
}

.currency-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.currency-info-box {
  background: var(--green-light);
  border: 1px solid rgba(13, 148, 136, 0.15);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
}

.currency-info-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.currency-info-box ul {
  padding-left: 18px;
  margin: 0;
}

.currency-info-box li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.currency-info-box li strong {
  color: var(--navy);
}

.currency-search-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.currency-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.currency-search {
  width: 100%;
  padding: 12px 80px 12px 42px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.currency-search:focus {
  border-color: var(--green);
}

.currency-search::placeholder {
  color: var(--text-muted);
}

.currency-search-count {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.currency-no-results {
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* Region Tabs */
.region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.region-tab {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  color: var(--text-secondary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.region-tab:hover {
  border-color: var(--green);
  color: var(--green);
}

.region-tab.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* Currency Card Grid */
.currency-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.cc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.cc:hover {
  border-color: var(--green);
  box-shadow: 0 2px 12px rgba(13, 148, 136, 0.1);
  transform: translateY(-1px);
}

.cc-flag {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.cc-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.cc-code {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.cc-name {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cc-symbol {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  margin-left: auto;
}

/* Country Grid */
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 32px;
}

.country-region {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.country-region h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.region-count {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--green-light);
  color: var(--green);
  padding: 2px 7px;
  border-radius: 20px;
}

.country-region ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.country-region li {
  font-size: 0.84rem;
  color: var(--text-secondary);
  padding: 3px 0;
  line-height: 1.5;
}

.currency-cta {
  text-align: center;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.currency-cta p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text-secondary);
}

.currency-cta a {
  color: var(--green);
  font-weight: 600;
}

@media (max-width: 768px) {
  .currency-stats {
    gap: 10px;
  }
  .currency-stat {
    padding: 16px 10px;
  }
  .currency-stat-number {
    font-size: 1.5rem;
  }
  .currency-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .region-tabs {
    gap: 6px;
  }
  .region-tab {
    padding: 5px 12px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .currency-stats {
    flex-direction: column;
    gap: 8px;
  }
  .currency-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    text-align: left;
  }
  .currency-stat-number {
    font-size: 1.3rem;
  }
  .currency-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cc {
    padding: 10px 12px;
    gap: 8px;
  }
  .cc-flag {
    font-size: 1.3rem;
  }
  .cc-symbol {
    display: none;
  }
  .country-grid {
    grid-template-columns: 1fr;
  }
  .currency-info-box {
    padding: 18px 20px;
  }
}

/* === Contact Cards V2 === */
.contact-cards-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-v2-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-v2-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-v2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26, 39, 68, 0.1);
  border-color: var(--border-hover);
}

.contact-v2-card:hover::before {
  opacity: 1;
}

.contact-v2-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.contact-v2-icon.green-bg {
  background: #e6f5f3;
  color: var(--green);
}

.contact-v2-icon.navy-bg {
  background: #e8ecf4;
  color: var(--navy);
}

.contact-v2-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-v2-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.contact-v2-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.contact-v2-card:hover .contact-v2-link {
  color: var(--navy);
}

/* Response Banner */
.response-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 48px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.response-banner svg {
  color: var(--green);
  flex-shrink: 0;
}

/* Contact Download */
.contact-download {
  text-align: center;
  padding: 48px 0 60px;
}

.contact-download h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-download p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-download .hero-buttons {
  justify-content: center;
}

/* === Footer === */
.footer {
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--green), var(--navy)) 1;
  padding: 40px 0;
  background: var(--bg-alt);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-text {
  font-size: 0.83rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.83rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--navy);
}

/* === Stats Counters === */
.stats-section {
  padding: 60px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 24px 16px;
}

.stat-number {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--green);
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* === FAQ Accordion === */
.faq-section {
  padding: 80px 0 100px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  background: var(--surface);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: var(--border-hover);
  box-shadow: 0 4px 16px rgba(26, 39, 68, 0.06);
}

.faq-item[open] {
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: 0 8px 24px rgba(26, 39, 68, 0.08);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-alt);
}

.faq-item[open] summary::after {
  content: '\2212';
  background: var(--green-light);
  color: var(--green-dark);
}

.faq-item summary:hover {
  color: var(--green-dark);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === Scroll-to-Top Button === */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26, 39, 68, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

/* === Screenshot Scroll Indicator === */
.scroll-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.scroll-indicator .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s;
}

.scroll-indicator .dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

/* === Contact Section Fix === */
.contact-section-wrapper {
  padding-top: 32px;
  padding-bottom: 0;
}

/* === Mobile === */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(7,14,13,.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .nav.scrolled .nav-links {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .container {
    padding: 0 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-card {
    padding: 32px 24px 28px;
  }

  .privacy-hook {
    padding: 60px 0;
  }

  .hook-line {
    font-size: 1.3rem;
  }

  .hook-line.highlight {
    font-size: 1.5rem;
  }

  .feature-group {
    padding: 24px 20px;
  }

  .feature-group-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .feature-mini {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .contact-cards-v2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshot-card {
    width: 200px;
  }

  .whats-new-section {
    padding: 60px 0 80px;
  }

  .timeline {
    max-width: 100%;
    padding-left: 28px;
  }

  .timeline::before {
    left: 8px;
  }

  .timeline-dot {
    left: -28px;
    width: 18px;
    height: 18px;
    border-width: 2px;
  }

  .timeline-item {
    padding-bottom: 24px;
  }

  .timeline-content {
    padding: 18px 20px;
  }

  .timeline-content h3 {
    font-size: 0.95rem;
  }

  .timeline-content p {
    font-size: 0.84rem;
  }

  .preview-banner {
    border-radius: var(--radius);
  }

  .preview-section {
    padding: 60px 0 80px;
  }

  /* Dark hero responsive */
  .hero-dark-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 40px 20px;
  }

  .hero-tags, .hero-cta-row {
    justify-content: center;
  }

  .phone-showcase {
    height: 480px;
    margin-top: 10px;
  }

  .float-card {
    display: none;
  }

  .phone {
    width: 210px;
  }

  .pos-far-left, .pos-far-right {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item {
    padding: 16px 12px;
  }

  .store-badge {
    padding: 10px 20px 10px 14px;
  }

  .store-badge-text {
    font-size: 14px;
  }

  .faq-item summary {
    padding: 16px 20px;
    font-size: 0.92rem;
  }

  .faq-answer {
    padding: 0 20px 16px;
    font-size: 0.88rem;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .cta h2 {
    font-size: 1.6rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .features-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }

  .features-section {
    padding: 60px 0 40px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

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

  .table-wrapper {
    position: relative;
  }

  .table-wrapper::after {
    content: 'Scroll \2192';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.85);
    padding: 2px 8px;
    border-radius: 4px;
    pointer-events: none;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .contact-cards-v2 {
    grid-template-columns: 1fr;
  }

  .feature-group-grid {
    grid-template-columns: 1fr;
  }

  .feature-mini {
    font-size: 0.78rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .screenshot-card {
    width: 180px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-suffix {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Dark hero responsive (small) */
  .hero-dark-inner {
    padding: 30px 16px;
  }

  .phone-showcase {
    height: 420px;
  }

  .phone {
    width: 180px;
  }

  .pos-left, .pos-right {
    display: none;
  }

  .hero-particles {
    display: none;
  }

  .hero-headline {
    font-size: clamp(28px, 7vw, 38px);
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: center;
  }

  .features-title {
    font-size: 1.5rem;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  .cta h2 {
    font-size: 1.3rem;
  }

  .content-section h2 {
    font-size: 1.15rem;
  }

  .whats-new-section {
    padding: 48px 0 60px;
  }

  .timeline {
    padding-left: 24px;
  }

  .timeline::before {
    left: 6px;
  }

  .timeline-dot {
    left: -24px;
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .timeline-item {
    padding-bottom: 20px;
  }

  .timeline-content {
    padding: 16px 16px;
  }

  .timeline-tag {
    font-size: 0.62rem;
    padding: 2px 8px;
    margin-bottom: 8px;
  }

  .timeline-content h3 {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }

  .timeline-content p {
    font-size: 0.82rem;
    line-height: 1.5;
  }
}
