/* ============================================
   MILLIONAIRE MODE — PROMO SITE
   Design: Black + Gold (#D4AF37) luxury dark theme
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --surface: #0D0D0D;
  --surface-elevated: #111111;
  --border: #1A1A1A;
  --border-light: #222222;
  --border-modal: #333333;
  --gold: #D4AF37;
  --gold-light: #E5C76B;
  --gold-pale: #F0DFA0;
  --gold-border: rgba(212, 175, 55, 0.25);
  --gold-border-subtle: rgba(212, 175, 55, 0.2);
  --gold-border-faint: rgba(212, 175, 55, 0.15);
  --gold-glow: rgba(212, 175, 55, 0.08);
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --gray-light: #999999;
  --gray-mid: #888888;
  --gray: #666666;
  --gray-dark: #555555;
  --gray-darker: #444444;
  --red: #E74C3C;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1200px;
  --nav-h: 72px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.gold {
  color: var(--gold);
}

strong {
  font-weight: 700;
  color: var(--white);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.nav--scrolled {
  border-bottom-color: var(--border);
  background: rgba(0, 0, 0, 0.92);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav__logo-icon {
  display: flex;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-mid);
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--white);
}

.nav__cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}

.nav__cta-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.3);
}

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

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.3s, background 0.2s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius);
}

.btn--primary:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.btn--outline:hover {
  border-color: var(--gold-border);
  background: rgba(212, 175, 55, 0.05);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn--xl {
  padding: 20px 40px;
  font-size: 18px;
  border-radius: 16px;
}

.btn--full {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
}

.btn__icon {
  flex-shrink: 0;
}

.btn__apple-icon {
  flex-shrink: 0;
  margin-right: 4px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border-faint);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__proof-avatars {
  display: flex;
}

.hero__proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid var(--black);
  margin-right: -8px;
}

.hero__proof-text {
  font-size: 14px;
  color: var(--gray);
}

.hero__proof-text strong {
  color: var(--off-white);
}

/* Phone Mockup */
.hero__phone {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__phone-frame {
  position: relative;
  width: 280px;
  height: 580px;
  background: var(--surface);
  border-radius: 40px;
  border: 2px solid var(--border-light);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 8px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  z-index: 2;
}

.hero__phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--black);
  border-radius: 20px;
  z-index: 10;
}

.hero__phone-screen {
  width: 100%;
  height: 100%;
  background: var(--black);
  border-radius: 30px;
  overflow: hidden;
}

.hero__phone-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Mock Screen Content */
.mock-screen {
  padding: 48px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.mock-header {
  margin-bottom: 4px;
}

.mock-greeting {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.mock-date {
  font-size: 12px;
  color: var(--gray);
}

.mock-goal {
  background: var(--surface);
  border: 1px solid var(--gold-border-subtle);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: center;
}

.mock-goal-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 6px;
}

.mock-goal-amount {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.mock-goal-timeline {
  font-size: 11px;
  color: var(--gray-mid);
}

.mock-streak {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
}

.mock-streak-count {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
}

.mock-streak-label {
  font-size: 10px;
  color: var(--gray);
  font-weight: 600;
}

.mock-actions {
  flex: 1;
}

.mock-actions-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
}

.mock-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
}

.mock-action--done {
  border-color: var(--gold-border-faint);
}

.mock-action-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.mock-action-num {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--border-light);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.mock-action-text {
  font-size: 12px;
  color: var(--off-white);
  font-weight: 500;
  line-height: 1.3;
}

.mock-action--done .mock-action-text {
  color: var(--gray-mid);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   PROBLEM
   ============================================ */
.problem {
  padding: 120px 0;
  position: relative;
}

.problem__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.problem__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
}

.problem__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.problem__text {
  font-size: 18px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 56px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

.problem__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.problem__card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.problem__card-icon {
  margin-bottom: 20px;
}

.problem__card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.problem__card-text {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ============================================
   METHOD
   ============================================ */
.method {
  padding: 120px 0;
  position: relative;
}

.method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.method__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
}

.method__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 20px;
}

.method__subtitle {
  font-size: 18px;
  color: var(--gray-light);
  text-align: center;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 72px;
}

.method__pillars {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
}

.method__pillar {
  flex: 1;
  max-width: 320px;
  text-align: center;
}

.method__pillar-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.method__pillar-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.method__pillar-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.method__pillar-text {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.7;
}

.method__pillar-divider {
  display: flex;
  align-items: center;
  padding-top: 60px;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 120px 0;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.features__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
}

.features__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 20px;
}

.features__subtitle {
  font-size: 18px;
  color: var(--gray-light);
  text-align: center;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 64px;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.feature-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.feature-card__icon {
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--gold-border-faint);
  border-radius: 14px;
}

.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card__text {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.65;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  padding: 120px 0;
  position: relative;
}

.how::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.how__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
}

.how__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 72px;
}

.how__steps {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.how__step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.how__step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
}

.how__step-content {
  padding-top: 4px;
}

.how__step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.how__step-text {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.65;
}

.how__step-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
  margin-left: 23px;
  margin: 8px 0 8px 23px;
}

/* ============================================
   QUOTE BANNER
   ============================================ */
.quote-banner {
  padding: 80px 0;
}

.quote-banner__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.quote-banner__mark {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.quote-banner__text {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.5;
  font-style: italic;
  color: var(--off-white);
  margin-bottom: 16px;
}

.quote-banner__author {
  font-size: 14px;
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.testimonials__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
}

.testimonials__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 56px;
}

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.testimonial-card:hover {
  border-color: var(--gold-border-faint);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border-light);
  border: 1px solid var(--gold-border-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

.testimonial-card__name {
  font-size: 15px;
  font-weight: 600;
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--gray);
}

/* Stats */
.testimonials__stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 120px 0;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.pricing__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
}

.pricing__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 16px;
}

.pricing__subtitle {
  font-size: 18px;
  color: var(--gray-light);
  text-align: center;
  margin-bottom: 56px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

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

.pricing-card--featured {
  border-color: var(--gold-border);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04) 0%, var(--surface) 100%);
}

.pricing-card--featured:hover {
  border-color: var(--gold);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 100px;
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-card__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 12px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.pricing-card__currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}

.pricing-card__amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-card__period {
  font-size: 16px;
  color: var(--gray);
  font-weight: 500;
}

.pricing-card__savings {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-card__features li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--off-white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 120px 0;
  position: relative;
}

.final-cta__inner {
  text-align: center;
  position: relative;
  padding: 80px 40px;
  background: var(--surface);
  border: 1px solid var(--gold-border-faint);
  border-radius: 32px;
  overflow: hidden;
}

.final-cta__glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  position: relative;
}

.final-cta__text {
  font-size: 18px;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 40px;
  position: relative;
}

.final-cta .btn {
  position: relative;
}

.final-cta__disclaimer {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-dark);
  position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--gray);
}

.footer__links {
  display: flex;
  gap: 64px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer__col a {
  font-size: 14px;
  color: var(--gray-mid);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer__bottom p {
  font-size: 13px;
  color: var(--gray-darker);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero__inner {
    gap: 48px;
  }

  .method__pillars {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .method__pillar-divider {
    padding-top: 0;
    transform: rotate(90deg);
  }

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

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

  .testimonials__grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .container {
    padding: 0 20px;
  }

  /* Nav mobile */
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .nav__links.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    font-size: 20px;
    font-weight: 600;
  }

  .nav__cta-btn {
    font-size: 16px;
    padding: 14px 32px;
  }

  /* Hero mobile */
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 24px);
    padding-bottom: 64px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 0;
  }

  .hero__content {
    text-align: center;
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__proof {
    justify-content: center;
  }

  .hero__phone {
    order: -1;
  }

  .hero__phone-frame {
    width: 240px;
    height: 500px;
    border-radius: 34px;
  }

  .hero__phone-screen {
    border-radius: 26px;
  }

  .hero__phone-notch {
    width: 100px;
    height: 24px;
  }

  .mock-screen {
    padding: 40px 14px 14px;
    gap: 12px;
  }

  .mock-greeting {
    font-size: 17px;
  }

  .mock-goal-amount {
    font-size: 22px;
  }

  .hero__scroll-indicator {
    display: none;
  }

  /* Problem mobile */
  .problem {
    padding: 80px 0;
  }

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

  /* Method mobile */
  .method {
    padding: 80px 0;
  }

  .method__pillars {
    gap: 24px;
  }

  .method__pillar {
    max-width: 100%;
  }

  /* Features mobile */
  .features {
    padding: 80px 0;
  }

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

  /* How mobile */
  .how {
    padding: 80px 0;
  }

  /* Testimonials mobile */
  .testimonials {
    padding: 80px 0;
  }

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

  .testimonials__grid .testimonial-card:last-child {
    max-width: 100%;
  }

  .testimonials__stats {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  /* Pricing mobile */
  .pricing {
    padding: 80px 0;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* Final CTA mobile */
  .final-cta {
    padding: 80px 0;
  }

  .final-cta__inner {
    padding: 48px 24px;
    border-radius: 24px;
  }

  .btn--lg {
    padding: 14px 24px;
    font-size: 15px;
  }

  .btn--xl {
    padding: 16px 32px;
    font-size: 16px;
  }

  /* Footer mobile */
  .footer__inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer__links {
    gap: 40px;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__proof {
    flex-direction: column;
    gap: 8px;
  }

  .hero__phone-frame {
    width: 220px;
    height: 460px;
    border-radius: 30px;
  }

  .mock-goal-amount {
    font-size: 20px;
  }

  .mock-action-text {
    font-size: 11px;
  }
}
