/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1E1B4B;
  background: #FAFAFE;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOKENS ===== */
:root {
  --indigo-950: #1E1B4B;
  --indigo-900: #312E81;
  --indigo-700: #4338CA;
  --indigo-600: #4F46E5;
  --indigo-500: #6366F1;
  --indigo-400: #818CF8;
  --indigo-200: #C7D2FE;
  --indigo-100: #E0E7FF;
  --indigo-50:  #EEF2FF;
  --gold-400:   #FCD34D;
  --gold-500:   #F59E0B;
  --emerald:    #34D399;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-500:   #6B7280;
  --gray-600:   #4B5563;
  --gray-700:   #374151;
  --gray-900:   #111827;
  --radius:     12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --shadow-sm:  0 1px 2px rgba(0,0,0,0.05);
  --shadow:     0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--sm { padding: 8px 18px; font-size: 14px; }
.btn--lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius-lg); }
.btn--block { width: 100%; justify-content: center; padding: 14px 24px; font-size: 15px; }
.btn--primary {
  background: var(--indigo-600);
  color: white;
  box-shadow: 0 2px 8px rgba(79,70,229,0.3);
}
.btn--primary:hover { background: var(--indigo-700); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(79,70,229,0.4); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--indigo-950);
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.4); }
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.btn--outline {
  background: transparent;
  color: var(--indigo-600);
  border: 2px solid var(--indigo-200);
}
.btn--outline:hover { border-color: var(--indigo-600); background: var(--indigo-50); }
.btn--white {
  background: white;
  color: var(--indigo-600);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}
.nav--scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}
.nav__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__name {
  font-size: 20px;
  font-weight: 800;
  color: white;
  transition: color var(--transition);
}
.nav--scrolled .nav__name { color: var(--indigo-950); }
.nav__name--accent {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav__link:hover { color: white; }
.nav--scrolled .nav__link { color: var(--gray-600); }
.nav--scrolled .nav__link:hover { color: var(--indigo-600); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}
.nav--scrolled .nav__toggle span { background: var(--indigo-950); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, var(--indigo-950) 0%, var(--indigo-900) 30%, var(--indigo-600) 60%, var(--indigo-500) 100%);
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}
.hero__orb--1 { width: 400px; height: 400px; background: rgba(129,140,248,0.3); top: -100px; right: 10%; animation: float 8s ease-in-out infinite; }
.hero__orb--2 { width: 300px; height: 300px; background: rgba(52,211,153,0.15); bottom: 0; left: 5%; animation: float 10s ease-in-out infinite reverse; }
.hero__orb--3 { width: 250px; height: 250px; background: rgba(251,191,36,0.1); top: 40%; left: 30%; animation: float 12s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}
.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero__title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: white;
  margin-bottom: 24px;
}
.hero__title--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero popup mockup */
.hero__popup {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1);
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.hero__popup:hover { transform: perspective(800px) rotateY(-1deg) rotateX(1deg); }
.hero__popup-chrome {
  background: #f8f9fa;
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--gray-200);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--red { background: #EF4444; }
.dot--yellow { background: #F59E0B; }
.dot--green { background: #10B981; }
.hero__popup-body {
  background: linear-gradient(135deg, var(--indigo-50), var(--indigo-100));
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__popup-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--indigo-600), var(--indigo-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(79,70,229,0.3);
}
.hero__popup-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--indigo-600);
  margin-bottom: 10px;
}
.hero__popup-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 28px;
}
.hero__popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--indigo-600);
  color: white;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(79,70,229,0.35);
}
.hero__popup-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(79,70,229,0.1);
}
.hero__popup-stat { text-align: center; }
.hero__popup-stat-val { display: block; font-size: 20px; font-weight: 700; color: var(--indigo-600); }
.hero__popup-stat-label { font-size: 11px; color: var(--gray-500); margin-top: 2px; }

/* ===== SOCIAL PROOF ===== */
.proof {
  background: white;
  border-bottom: 1px solid var(--gray-200);
  padding: 48px 0;
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.proof__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.proof__icon { font-size: 28px; margin-bottom: 4px; }
.proof__value {
  font-size: 32px;
  font-weight: 800;
  color: var(--indigo-600);
  letter-spacing: -1px;
}
.proof__label {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--indigo-50);
  color: var(--indigo-600);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--indigo-950);
  margin-bottom: 16px;
}
.section-title--left { text-align: left; }
.section-desc {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.steps {
  padding: 100px 0;
  background: white;
}
.steps__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.steps__card {
  position: relative;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  max-width: 300px;
  flex: 1;
  transition: all var(--transition);
}
.steps__card:hover {
  border-color: var(--indigo-200);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.steps__number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--indigo-600);
  color: white;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(79,70,229,0.3);
}
.steps__icon-wrap {
  margin: 16px auto 20px;
}
.steps__card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--indigo-950);
}
.steps__card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-500);
}
.steps__connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
  flex-shrink: 0;
  margin: 0 8px;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
  background: var(--gray-50);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.features__card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: all var(--transition);
}
.features__card:hover {
  border-color: var(--indigo-200);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.features__card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--indigo-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.features__card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--indigo-950);
  margin-bottom: 8px;
}
.features__card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-500);
}

/* ===== PRIVACY ===== */
.privacy {
  padding: 100px 0;
  background: white;
}
.privacy__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.privacy__visual {
  display: flex;
  justify-content: center;
}
.privacy__shield {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.privacy__float {
  position: absolute;
  padding: 8px 18px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--indigo-600);
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.privacy__float--1 { top: 10px; right: -20px; animation: floatBadge 4s ease-in-out infinite; }
.privacy__float--2 { bottom: 20px; left: -30px; animation: floatBadge 5s ease-in-out infinite 1s; }
.privacy__float--3 { bottom: -10px; right: 0; animation: floatBadge 6s ease-in-out infinite 2s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.privacy__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 32px;
}
.privacy__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.privacy__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.5;
}
.privacy__list li svg { flex-shrink: 0; margin-top: 2px; }

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: var(--gray-50);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}
.pricing__card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.pricing__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing__card--featured {
  position: relative;
  border-color: var(--gold-400);
  box-shadow: 0 0 0 1px var(--gold-400), var(--shadow);
}
.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--indigo-950);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing__card-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}
.pricing__plan {
  font-size: 20px;
  font-weight: 700;
  color: var(--indigo-950);
  margin-bottom: 8px;
}
.pricing__price {
  font-size: 40px;
  font-weight: 900;
  color: var(--indigo-600);
  letter-spacing: -1px;
}
.pricing__card--featured .pricing__price {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing__period {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
}
.pricing__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.pricing__features li {
  font-size: 15px;
  color: var(--gray-600);
  padding-left: 28px;
  position: relative;
}
.pricing__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--emerald);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: white;
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.faq__item[open] {
  background: white;
  border-color: var(--indigo-200);
  box-shadow: var(--shadow-sm);
}
.faq__question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--indigo-950);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--indigo-400);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq__item[open] .faq__question::after {
  content: '\2212';
  transform: rotate(180deg);
}
.faq__answer {
  padding: 0 24px 20px;
}
.faq__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(150deg, var(--indigo-950) 0%, var(--indigo-900) 30%, var(--indigo-600) 70%, var(--indigo-500) 100%);
}
.cta__bg { position: absolute; inset: 0; }
.cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta__orb--1 { width: 300px; height: 300px; background: rgba(129,140,248,0.3); top: -80px; right: 15%; }
.cta__orb--2 { width: 250px; height: 250px; background: rgba(251,191,36,0.12); bottom: -60px; left: 20%; }
.cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta__title {
  font-size: 44px;
  font-weight: 900;
  color: white;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta__desc {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--indigo-950);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
}
.footer__brand .nav__name { color: white; }
.footer__tagline {
  font-size: 14px;
  margin-top: 12px;
  color: rgba(255,255,255,0.5);
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__col a:hover { color: white; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__visual { display: flex; justify-content: center; }
  .hero__popup { transform: perspective(800px) rotateY(0) rotateX(0); max-width: 380px; }
  .hero__popup:hover { transform: none; }
  .hero__title { font-size: 52px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .privacy__layout { grid-template-columns: 1fr; gap: 48px; }
  .privacy__text .section-title { text-align: center; }
  .privacy__text .section-tag { display: block; text-align: center; }
  .privacy__desc { text-align: center; }
  .steps__connector { display: none; }
  .steps__grid { flex-wrap: wrap; gap: 40px; justify-content: center; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__title { font-size: 40px; letter-spacing: -1px; }
  .hero__subtitle { font-size: 16px; }
  .hero__badge { font-size: 12px; }
  .hero__popup { max-width: 320px; }
  .section-title { font-size: 32px; }
  .section-desc { font-size: 16px; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .proof__value { font-size: 26px; }
  .features__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer__layout { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
  .footer__bottom { flex-direction: column; gap: 4px; text-align: center; }
  .cta__title { font-size: 32px; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav__links--open { right: 0; }
  .nav__links .nav__link { color: var(--gray-700); font-size: 16px; }
  .nav__links .nav__link:hover { color: var(--indigo-600); }
}

@media (max-width: 480px) {
  .hero__title { font-size: 34px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__card { max-width: 100%; }
  .footer__links { grid-template-columns: 1fr 1fr; }
}

/* ===== LEGAL PAGES (shared) ===== */
.legal {
  padding: 120px 0 60px;
  background: white;
}
.legal h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--indigo-950);
  margin-bottom: 8px;
}
.legal .legal__updated {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--indigo-950);
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--indigo-950);
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal p, .legal li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.legal ul, .legal ol {
  padding-left: 24px;
  margin-bottom: 12px;
}
.legal ul { list-style: disc; }
.legal ol { list-style: decimal; }
.legal a { color: var(--indigo-600); text-decoration: underline; }
.legal a:hover { color: var(--indigo-700); }
.legal strong { color: var(--gray-700); }
