/* ============================================================
   YOUNG MONEY CREATORS — Premium Conversion-Focused Design
   Brand Colors: Teal #00D4AA + Gold #F5C842 + Dark #06090C
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #06090C;
  --bg-2:        #0A0F14;
  --bg-card:     #0E1520;
  --bg-card-2:   #121C29;
  --teal:        #00D4AA;
  --teal-dim:    rgba(0, 212, 170, 0.10);
  --teal-glow:   rgba(0, 212, 170, 0.25);
  --gold:        #F5C842;
  --gold-dim:    rgba(245, 200, 66, 0.10);
  --gold-glow:   rgba(245, 200, 66, 0.30);
  --white:       #FFFFFF;
  --gray-1:      #C8D4E0;
  --gray-2:      #7A90A4;
  --gray-3:      #3A4D5C;
  --border:      #162030;
  --border-teal: rgba(0, 212, 170, 0.18);
  --border-gold: rgba(245, 200, 66, 0.20);
  --nav-h:       76px;
  --radius:      12px;
  --radius-lg:   20px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.2rem; font-family: 'Inter', sans-serif; font-weight: 700; }
p  { color: var(--gray-1); line-height: 1.8; }

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

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 120px 0; }
.section-sm { padding: 72px 0; }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,9,12,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-logo-text {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-text .teal { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--gray-2);
  transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--teal);
  transform: scaleX(0); transition: transform 0.25s; transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: 0.3s; border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.95rem;
  transition: all 0.28s var(--ease); white-space: nowrap; letter-spacing: 0.01em;
}
.btn-gold {
  background: linear-gradient(135deg, #F5C842, #E5A820);
  color: #000; box-shadow: 0 4px 24px var(--gold-glow);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #FFD84A, #F5C842);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--gold-glow);
}
.btn-teal {
  background: linear-gradient(135deg, #00D4AA, #00A882);
  color: #000; box-shadow: 0 4px 24px var(--teal-glow);
}
.btn-teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--teal-glow);
}
.btn-outline {
  border: 1.5px solid var(--border-teal); color: var(--white); background: transparent;
}
.btn-outline:hover {
  border-color: var(--teal); color: var(--teal); background: var(--teal-dim);
}
.btn-ghost { color: var(--gray-2); padding: 15px 20px; }
.btn-ghost:hover { color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-xl { padding: 22px 48px; font-size: 1.1rem; border-radius: 10px; }

/* ── MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(6,9,12,0.98); backdrop-filter: blur(24px);
  z-index: 999; padding: 32px 24px;
  transform: translateY(-110%); transition: transform 0.4s var(--ease);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu ul li a {
  display: block; padding: 18px 0;
  font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800;
  color: var(--gray-2); border-bottom: 1px solid var(--border);
  transition: color 0.25s;
}
.mobile-menu ul li a:hover { color: var(--teal); }
.mobile-menu-cta { margin-top: 28px; }
.mobile-menu-cta .btn { width: 100%; justify-content: center; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,212,170,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(245,200,66,0.05) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,170,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,170,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}
.hero-content { position: relative; z-index: 1; max-width: 920px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 36px;
  background: linear-gradient(135deg, rgba(245,200,66,0.12), rgba(0,212,170,0.08));
  border: 1px solid rgba(245,200,66,0.25);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold);
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero-title { margin-bottom: 28px; }
.hero-title .line-teal { color: var(--teal); display: block; }
.hero-title .line-gold {
  color: var(--gold);
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #F5C842, #FFD84A, #E5A820);
  -webkit-background-clip: text; background-clip: text;
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem); color: var(--gray-2);
  max-width: 560px; margin-bottom: 48px; line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-proof {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 24px;
  background: rgba(14,21,32,0.8); border: 1px solid var(--border);
  border-radius: 12px; width: fit-content;
}
.hero-proof-avatars { display: flex; }
.hero-proof-avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--teal-dim), var(--border));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--teal);
  margin-left: -10px;
}
.hero-proof-avatars span:first-child { margin-left: 0; }
.hero-proof-text { font-size: 0.85rem; }
.hero-proof-text strong { color: var(--white); font-weight: 700; }
.hero-proof-text span { color: var(--gray-2); }

/* ── PAIN SECTION ───────────────────────────────────────────── */
.pain-section {
  padding: 100px 0; background: var(--bg-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.pain-stat-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 64px;
}
.pain-stat {
  background: var(--bg-card); padding: 48px 36px; text-align: center; position: relative;
}
.pain-stat-num {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 4rem;
  line-height: 1; margin-bottom: 12px; display: block;
}
.pain-stat-label { font-size: 0.9rem; color: var(--gray-2); }
.pain-stat-desc { font-size: 0.82rem; color: var(--gray-3); margin-top: 8px; }

/* ── SOCIAL PROOF TICKER ────────────────────────────────────── */
.proof-ticker {
  padding: 20px 0; overflow: hidden;
  background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.proof-ticker-track {
  display: flex; gap: 48px; animation: ticker 25s linear infinite; width: max-content;
}
.proof-ticker-item {
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  font-size: 0.82rem; font-weight: 600; color: var(--gray-3);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.proof-ticker-item .star { color: var(--gold); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── TRANSFORMATION ─────────────────────────────────────────── */
.transform-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 64px;
}
.transform-before, .transform-after {
  border-radius: var(--radius-lg); padding: 40px; position: relative; overflow: hidden;
}
.transform-before {
  background: rgba(220,50,50,0.05); border: 1px solid rgba(220,50,50,0.12);
}
.transform-after {
  background: rgba(0,212,170,0.05); border: 1px solid var(--border-teal);
}
.transform-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 24px;
}
.transform-before .transform-label { background: rgba(220,50,50,0.1); color: #FF6B6B; border: 1px solid rgba(220,50,50,0.2); }
.transform-after .transform-label  { background: var(--teal-dim); color: var(--teal); border: 1px solid var(--border-teal); }
.transform-list { display: flex; flex-direction: column; gap: 14px; }
.transform-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: var(--gray-1); line-height: 1.6;
}
.transform-list li span { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.eyebrow-line { width: 32px; height: 2px; background: var(--teal); border-radius: 2px; }
.eyebrow-text {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal);
}
.section-sub {
  font-size: 1.05rem; color: var(--gray-2); margin-top: 16px; line-height: 1.8;
  max-width: 560px;
}
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

/* ── FEATURES ───────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.feature-block {
  background: var(--bg-card); padding: 40px 32px;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.feature-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-block:hover { background: var(--bg-card-2); }
.feature-block:hover::before { opacity: 1; }
.feature-icon {
  font-size: 1.8rem; margin-bottom: 20px; display: block;
}
.feature-block h4 { margin-bottom: 10px; font-family: 'Syne', sans-serif; font-weight: 800; }
.feature-block p { font-size: 0.88rem; color: var(--gray-2); line-height: 1.75; }

/* ── CHAPTERS ───────────────────────────────────────────────── */
.chapters-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.chapter-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 28px; border-bottom: 1px solid var(--border);
  background: var(--bg-card); transition: background 0.25s, border-color 0.25s;
}
.chapter-row:last-child { border-bottom: none; }
.chapter-row:hover { background: var(--bg-card-2); border-left: 3px solid var(--teal); padding-left: 25px; }
.chapter-num-badge {
  min-width: 36px; height: 36px;
  background: var(--teal-dim); border: 1px solid var(--border-teal);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.78rem; color: var(--teal);
  flex-shrink: 0;
}
.chapter-row-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.chapter-row-desc { font-size: 0.82rem; color: var(--gray-2); line-height: 1.6; }
.chapter-tag {
  margin-left: auto; flex-shrink: 0;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 100px;
  background: var(--gold-dim); color: var(--gold); border: 1px solid var(--border-gold);
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover { border-color: var(--border-teal); transform: translateY(-4px); }
.testi-stars { display: flex; gap: 3px; }
.testi-stars span { color: var(--gold); font-size: 0.95rem; }
.testi-result {
  display: inline-block; font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.6rem; color: var(--teal); margin-bottom: 8px;
}
.testi-quote { font-size: 0.9rem; color: var(--gray-1); line-height: 1.8; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dim), var(--bg));
  border: 1.5px solid var(--border-teal);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.85rem; color: var(--teal);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.88rem; }
.testi-role { font-size: 0.78rem; color: var(--gray-2); margin-top: 2px; }

/* ── COMPARISON TABLE ───────────────────────────────────────── */
.compare-table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.compare-table th {
  padding: 20px 24px; background: var(--bg-card-2); text-align: left;
  font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-2);
}
.compare-table th.highlight { color: var(--gold); background: rgba(245,200,66,0.06); }
.compare-table td {
  padding: 18px 24px; border-top: 1px solid var(--border);
  font-size: 0.9rem; color: var(--gray-1); background: var(--bg-card);
}
.compare-table td.highlight { background: rgba(245,200,66,0.04); color: var(--white); font-weight: 600; }
.compare-table td.check { color: var(--teal); font-size: 1.1rem; }
.compare-table td.cross { color: var(--gray-3); font-size: 1.1rem; }
.compare-table tr:last-child td { border-bottom: none; }

/* ── PRICING CARD ───────────────────────────────────────────── */
.pricing-wrapper { display: flex; justify-content: center; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: 24px; padding: 56px; max-width: 540px; width: 100%;
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}
.pricing-glow {
  position: absolute; top: -30%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,200,66,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-eyebrow {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--teal); margin-bottom: 12px;
}
.pricing-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.5rem; margin-bottom: 8px; }
.pricing-sub { font-size: 0.88rem; color: var(--gray-2); margin-bottom: 32px; }
.pricing-amount {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px;
}
.pricing-currency { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--gray-2); }
.pricing-number { font-family: 'Syne', sans-serif; font-size: 5rem; font-weight: 800; color: var(--white); line-height: 1; }
.pricing-old { font-size: 1rem; color: var(--gray-3); text-decoration: line-through; }
.pricing-save {
  display: inline-block; background: var(--gold-dim); color: var(--gold);
  border: 1px solid var(--border-gold); font-size: 0.78rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 32px;
}
.pricing-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--gray-1);
}
.pricing-item-check { color: var(--teal); font-size: 1rem; flex-shrink: 0; }
.pricing-cta { width: 100%; justify-content: center; margin-bottom: 20px; }
.pricing-note { text-align: center; font-size: 0.78rem; color: var(--gray-3); }
.guarantee-strip {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; background: var(--teal-dim);
  border: 1px solid var(--border-teal); border-radius: var(--radius);
  margin-top: 20px;
}
.guarantee-strip-icon { font-size: 1.6rem; flex-shrink: 0; }
.guarantee-strip h5 { font-size: 0.88rem; color: var(--teal); font-weight: 700; margin-bottom: 3px; }
.guarantee-strip p  { font-size: 0.78rem; color: var(--gray-2); line-height: 1.5; }

/* ── BONUS LIST ─────────────────────────────────────────────── */
.bonus-stack { display: flex; flex-direction: column; gap: 12px; }
.bonus-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color 0.25s;
}
.bonus-row:hover { border-color: var(--border-teal); }
.bonus-row-icon { font-size: 1.2rem; flex-shrink: 0; }
.bonus-row-name { font-weight: 600; font-size: 0.88rem; flex: 1; }
.bonus-row-value { font-size: 0.8rem; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.bonus-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; background: var(--gold-dim);
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  margin-top: 4px;
}
.bonus-total span:first-child { font-weight: 700; font-size: 0.9rem; }
.bonus-total span:last-child  { font-weight: 800; color: var(--gold); font-family: 'Syne', sans-serif; font-size: 1.1rem; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-stack { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--border-teal); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; font-weight: 700; font-size: 0.93rem; color: var(--white);
  text-align: left; transition: color 0.25s; gap: 16px;
}
.faq-q:hover { color: var(--teal); }
.faq-icon { font-size: 1.2rem; color: var(--gray-2); transition: transform 0.35s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--teal); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 24px 24px; font-size: 0.88rem; color: var(--gray-2); line-height: 1.8; }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section { padding: 120px 0; position: relative; overflow: hidden; }
.cta-box {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border); border-radius: 28px;
  padding: 88px; text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--teal), transparent);
}
.cta-glow {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,212,170,0.06) 0%, rgba(245,200,66,0.04) 30%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { margin-bottom: 16px; }
.cta-box p  { color: var(--gray-2); max-width: 500px; margin: 0 auto 44px; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-trust {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  margin-top: 32px; flex-wrap: wrap;
}
.cta-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--gray-2);
}
.cta-trust-item span { font-size: 1rem; }

/* ── STICKY BUY BAR ─────────────────────────────────────────── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: rgba(6,9,12,0.96); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-text strong { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; }
.sticky-bar-text span { font-size: 0.82rem; color: var(--gray-2); margin-left: 8px; }
.sticky-bar-right { display: flex; align-items: center; gap: 16px; }
.sticky-bar-price { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--gold); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.88rem; color: var(--gray-2); margin-top: 16px; max-width: 260px; line-height: 1.75;
}
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 36px; width: auto; }
.footer-logo-text {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.footer-col h5 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-3); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--gray-2); transition: color 0.25s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.78rem; color: var(--gray-3); }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--gray-2); transition: all 0.25s;
}
.social-btn:hover { border-color: var(--border-teal); color: var(--teal); background: var(--teal-dim); }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  padding: 160px 0 100px; position: relative; overflow: hidden;
}
.page-hero-mesh {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(0,212,170,0.06) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 10% 80%, rgba(245,200,66,0.04) 0%, transparent 60%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,170,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,170,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero-content { position: relative; z-index: 1; }

/* ── FORM ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-1); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 16px; color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 0.92rem; outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-3); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--border-teal); box-shadow: 0 0 0 3px var(--teal-dim);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select option { background: var(--bg-card); }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── PAGE-SPECIFIC GRIDS ────────────────────────────────────── */
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.two-col-center { align-items: center; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid    { grid-template-columns: repeat(2,1fr); }
  .pain-stat-grid { grid-template-columns: 1fr; }
  .transform-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .three-col { grid-template-columns: repeat(2,1fr); }
  .two-col   { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 80px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .three-col { grid-template-columns: 1fr; }
  .sticky-bar { flex-direction: column; align-items: stretch; text-align: center; }
  .sticky-bar-right { justify-content: center; }
  h1 { font-size: clamp(2.6rem, 10vw, 4rem); }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .pricing-card { padding: 36px 24px; }
}
