@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Barlow+Condensed:wght@300;400;500;600;700;800&family=Barlow:wght@300;400;500&display=swap');

/* ── VARIABLES ── */
:root {
  --navy: #0f1b31;
  --navy-dark: #0a1220;
  --navy-mid: #111f35;
  --navy-card: #0d1929;
  --gold: #c9a84c;
  --gold-light: #e2c07a;
  --gold-dim: rgba(201,168,76,0.35);
  --gold-faint: rgba(201,168,76,0.06);
  --white: #f5f4ef;
  --gray: #8b95a8;
  --green: #3ecf8e;
  --red: #e05252;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
.site-nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  padding: 0 60px; height: 68px;
  display: flex; align-items: stretch; justify-content: space-between;
  background: rgba(10,18,32,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  backdrop-filter: blur(8px);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: stretch; }
.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,244,239,0.55);
  padding: 0 22px; display: flex; align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.nav-link:hover { color: rgba(245,244,239,0.85); }
.nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 0 28px; display: flex; align-items: center;
  margin-left: 16px; transition: background 0.2s;
  text-decoration: none; white-space: nowrap; border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--gold-light); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(10,18,32,0.98);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  z-index: 199; flex-direction: column; padding: 8px 0 16px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu .nav-link { padding: 14px 32px; border-bottom: none; border-left: 3px solid transparent; font-size: 14px; letter-spacing: 2px; }
.nav-mobile-menu .nav-link.active { border-left-color: var(--gold); }
.nav-mobile-menu .nav-cta { margin: 12px 32px 4px; padding: 14px 28px; justify-content: center; }

/* ═══════════════════════════════
   SHARED
═══════════════════════════════ */
section { padding: 120px 60px; position: relative; }
.bg-dark { background: var(--navy-dark); }
.bg-mid  { background: var(--navy); }

.tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.tag.center { justify-content: center; }
.tag.center::before { display: none; }

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 800; text-transform: uppercase; line-height: 0.92; letter-spacing: -0.5px;
  margin-bottom: 32px;
}
h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800; text-transform: uppercase; line-height: 0.92; letter-spacing: -0.5px;
  margin-bottom: 22px;
}
h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 10px;
}
em { font-style: normal; color: var(--gold); }

.lead { font-size: 15px; line-height: 1.85; color: rgba(245,244,239,0.6); max-width: 560px; }
.lead + .lead { margin-top: 14px; }

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.2) 20%, rgba(201,168,76,0.2) 80%, transparent);
}

.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 18px 42px; display: inline-block; text-decoration: none;
  border: none; transition: background 0.25s; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  background: transparent; color: var(--gold);
  padding: 17px 42px; display: inline-block;
  cursor: pointer; border: 1px solid rgba(201,168,76,0.4);
  transition: all 0.25s; text-decoration: none;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }

.section-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 120px; font-weight: 800; color: rgba(201,168,76,0.04);
  position: absolute; top: 40px; right: 60px; line-height: 1;
  user-select: none; pointer-events: none;
}

.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.two-col-r { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 90px; align-items: start; }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero-wrap {
  min-height: 100vh; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 65% at 78% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
              linear-gradient(140deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(201,168,76,1) 59px, rgba(201,168,76,1) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(201,168,76,1) 59px, rgba(201,168,76,1) 60px);
}
.hero-main {
  position: relative; z-index: 1; flex: 1;
  display: flex; align-items: center; padding: 150px 60px 80px;
}
.hero-content { max-width: 1300px; width: 100%; }
.hero-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: center; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
  padding: 8px 16px 8px 10px; margin-bottom: 28px;
}
.hero-pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  flex-shrink: 0; animation: pulse-g 2s infinite;
}
@keyframes pulse-g {
  0%,100% { opacity:1; box-shadow:0 0 8px var(--green); }
  50%      { opacity:.6; box-shadow:0 0 3px var(--green); }
}
.hero-pill-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(201,168,76,0.8);
}

.hero-outcomes { display: flex; flex-direction: column; gap: 0; margin: 24px 0 36px; }
.hero-outcome {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero-outcome:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.hero-outcome-icon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; color: var(--green);
  margin-top: 2px; flex-shrink: 0;
}
.hero-outcome-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(245,244,239,0.45); line-height: 1.35;
}
.hero-outcome-text strong { color: rgba(245,244,239,0.85); font-weight: 700; display: block; }

.hero-stat-bar {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(10,18,32,0.75); backdrop-filter: blur(8px);
}
.hero-stat {
  padding: 26px 40px; border-right: 1px solid rgba(201,168,76,0.08);
  display: flex; flex-direction: column; gap: 4px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(245,244,239,0.3);
}

/* ═══════════════════════════════
   PROBLEM CARDS
═══════════════════════════════ */
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(201,168,76,0.08); margin-top: 60px;
}
.problem-card {
  background: var(--navy-card); padding: 40px 36px;
  position: relative; overflow: hidden;
}
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: transparent; transition: background 0.3s;
}
.problem-card:hover::before { background: var(--gold-dim); }
.problem-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(201,168,76,0.3); margin-bottom: 20px;
}
.problem-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--white); margin-bottom: 12px; line-height: 1.1;
}
.problem-body { font-size: 14px; line-height: 1.8; color: rgba(245,244,239,0.5); }

/* ═══════════════════════════════
   PHASE MAP
═══════════════════════════════ */
.phase-map { margin-top: 64px; }
.phase-row { display: grid; grid-template-columns: 130px 1fr; }
.phase-spine {
  display: flex; flex-direction: column; align-items: center;
  padding-top: 8px; border-top: 1px solid rgba(201,168,76,0.08);
}
.phase-dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--gold);
  flex-shrink: 0; box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
  position: relative; z-index: 1;
}
.phase-line { width: 1px; flex: 1; background: rgba(201,168,76,0.15); min-height: 50px; }
.phase-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(201,168,76,0.4); text-align: center; line-height: 1.4; padding-top: 10px;
}
.phase-content { padding: 8px 0 52px 40px; border-top: 1px solid rgba(201,168,76,0.08); }
.phase-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--white); margin-bottom: 10px;
}
.phase-desc { font-size: 14px; line-height: 1.8; color: rgba(245,244,239,0.5); max-width: 680px; margin-bottom: 16px; }
.phase-tasks { display: flex; flex-wrap: wrap; gap: 8px; }
.phase-task {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(201,168,76,0.7); background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.12); padding: 6px 14px;
}
.phase-duration {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(62,207,142,0.65); display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
}
.phase-duration::before { content: '◎'; font-size: 10px; }

/* ═══════════════════════════════
   BONUS STACK
═══════════════════════════════ */
.bonus-stack { display: flex; flex-direction: column; gap: 2px; margin-top: 56px; }
.bonus-item {
  display: grid; grid-template-columns: 56px 1fr auto;
  align-items: center; background: var(--navy-card);
  border: 1px solid rgba(201,168,76,0.06); transition: border-color 0.2s;
}
.bonus-item:hover { border-color: rgba(201,168,76,0.18); }
.bonus-num-col {
  display: flex; align-items: center; justify-content: center;
  height: 100%; padding: 20px 0; border-right: 1px solid rgba(201,168,76,0.06);
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; color: rgba(201,168,76,0.25);
}
.bonus-content { padding: 22px 28px; }
.bonus-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--green); margin-bottom: 5px;
}
.bonus-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--white); margin-bottom: 5px;
}
.bonus-desc { font-size: 13px; color: rgba(245,244,239,0.4); line-height: 1.7; }
.bonus-value-col {
  padding: 22px 28px; text-align: right; flex-shrink: 0;
  border-left: 1px solid rgba(201,168,76,0.06); min-width: 130px;
}
.bonus-val-old {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600;
  color: rgba(245,244,239,0.2); text-decoration: line-through;
}
.bonus-val-new {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800; color: var(--green);
}
.bonus-total-row {
  display: grid; grid-template-columns: 56px 1fr;
  background: rgba(201,168,76,0.05); border: 1px solid rgba(201,168,76,0.15); margin-top: 2px;
  align-items: center;
}
.bonus-total-center {
  font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px; color: var(--white);
  padding: 20px 28px; text-align: center;
}

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

/* ═══════════════════════════════
   GUARANTEES
═══════════════════════════════ */
.guarantee-stack {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(201,168,76,0.08); margin-top: 56px;
}
.guarantee-card { background: var(--navy-card); padding: 44px 36px; display: flex; flex-direction: column; }
.guarantee-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(62,207,142,0.07); border: 1px solid rgba(62,207,142,0.18);
  padding: 6px 14px; margin-bottom: 22px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--green);
}
.guarantee-badge::before { content: '✓'; }
.guarantee-headline {
  font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--white);
  line-height: 1.0; margin-bottom: 16px;
}
.guarantee-body { font-size: 14px; line-height: 1.85; color: rgba(245,244,239,0.5); margin-bottom: 24px; }
.guarantee-term {
  margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05);
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(201,168,76,0.4);
}

/* ═══════════════════════════════
   PRICING
═══════════════════════════════ */
.pricing-anchor-banner {
  background: rgba(201,168,76,0.04); border: 1px solid rgba(201,168,76,0.1);
  padding: 20px 36px; margin-bottom: 2px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.pricing-anchor-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: rgba(201,168,76,0.45); margin-bottom: 4px;
}
.pricing-anchor-body { font-size: 13px; color: rgba(245,244,239,0.4); }
.pricing-anchor-val {
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700;
  color: rgba(245,244,239,0.25); text-decoration: line-through; white-space: nowrap;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(201,168,76,0.08);
}
.pricing-card {
  background: var(--navy-card); padding: 44px 36px;
  display: flex; flex-direction: column; position: relative;
}
.pricing-card.featured {
  background: #0c1828; border: 1px solid rgba(201,168,76,0.25); margin: -2px; z-index: 1;
}
.pricing-tier {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: rgba(201,168,76,0.45); margin-bottom: 14px;
}
.pricing-card.featured .pricing-tier { color: var(--gold); }
.pricing-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--white);
  margin-bottom: 26px; line-height: 1.0;
}
.pricing-price { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 8px; }
.pricing-amount {
  font-family: 'Barlow Condensed', sans-serif; font-size: 50px; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.pricing-unit {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245,244,239,0.3); padding-bottom: 10px;
}
.pricing-note { font-size: 13px; color: rgba(245,244,239,0.35); margin-bottom: 28px; line-height: 1.65; }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 32px; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(245,244,239,0.5); line-height: 1.5;
}
.pricing-feature::before {
  content: '—'; color: rgba(201,168,76,0.35);
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; flex-shrink: 0; margin-top: 1px;
}
.pricing-card.featured .pricing-feature { color: rgba(245,244,239,0.7); }
.pricing-card.featured .pricing-feature::before { color: var(--gold); }

/* Scarcity */
.scarcity-banner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 36px; margin-top: 2px;
  background: rgba(224,82,82,0.04); border: 1px solid rgba(224,82,82,0.1);
  flex-wrap: wrap; gap: 16px;
}
.scarcity-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 8px var(--red);
  flex-shrink: 0; animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0%,100% { opacity:1; box-shadow:0 0 8px var(--red); }
  50%      { opacity:.5; box-shadow:0 0 3px var(--red); }
}
.scarcity-text {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(224,82,82,0.8);
}
.scarcity-sub { font-size: 13px; color: rgba(245,244,239,0.35); margin-top: 2px; }

/* ═══════════════════════════════
   PLUG DIAGRAM
═══════════════════════════════ */
.plug-grid {
  display: grid; grid-template-columns: 1fr 68px 1fr;
  border: 1px solid rgba(201,168,76,0.08);
}
.plug-side { padding: 36px; }
.plug-side h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: rgba(201,168,76,0.45); margin-bottom: 22px;
}
.plug-item {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245,244,239,0.5);
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.plug-item:last-child { border-bottom: none; }
.plug-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(201,168,76,0.25); flex-shrink: 0; }
.plug-dot.gold { background: var(--gold); box-shadow: 0 0 5px rgba(201,168,76,0.4); }
.plug-connector {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-left: 1px solid rgba(201,168,76,0.08); border-right: 1px solid rgba(201,168,76,0.08);
}
.plug-connector-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 8px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(201,168,76,0.25);
  writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
}
.plug-arrow {
  width: 1px; flex: 1; background: rgba(201,168,76,0.12);
  position: relative; margin: 10px 0;
}


/* ═══════════════════════════════
   PULLQUOTE
═══════════════════════════════ */
.pullquote {
  border-left: 3px solid var(--gold); padding: 26px 30px;
  background: rgba(201,168,76,0.04); margin-bottom: 30px;
}
.pullquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.8vw, 24px); font-style: italic;
  color: var(--gold-light); line-height: 1.5;
}
.pullquote p strong { font-style: normal; color: var(--white); font-weight: 500; }

/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
.about-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start; }
.principle-list { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.principle-item {
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  display: grid; grid-template-columns: 32px 1fr; gap: 18px; align-items: start;
}
.principle-item:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.principle-n {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic;
  color: rgba(201,168,76,0.3); line-height: 1; padding-top: 2px;
}
.principle-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 5px;
}
.principle-body { font-size: 13px; line-height: 1.8; color: rgba(245,244,239,0.4); }

/* ═══════════════════════════════
   BULLET LIST
═══════════════════════════════ */
.bullet-list { display: flex; flex-direction: column; gap: 0; margin-top: 34px; }
.bullet-item {
  display: grid; grid-template-columns: 40px 1fr;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px; line-height: 1.8; color: rgba(245,244,239,0.5); align-items: start;
}
.bullet-item:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.bullet-num {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic;
  color: rgba(201,168,76,0.25); line-height: 1; padding-top: 3px;
}
.bullet-item strong { color: rgba(245,244,239,0.85); font-weight: 500; display: block; margin-bottom: 3px; }

/* ═══════════════════════════════
   CONTACT FORM
═══════════════════════════════ */
.contact-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: rgba(245,244,239,0.35);
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.1);
  color: var(--white); font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 300;
  padding: 14px 16px; outline: none; transition: border-color 0.2s; width: 100%; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(201,168,76,0.4); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(245,244,239,0.18); }
.form-select { background-color: var(--navy-card); }
.form-select option { background: var(--navy-card); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.7; }

.what-next { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.what-next-item {
  display: grid; grid-template-columns: 28px 1fr; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px; line-height: 1.75; color: rgba(245,244,239,0.6);
}
.what-next-item:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.what-next-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 700; color: rgba(201,168,76,0.5); padding-top: 2px;
}

/* Contact detail list (used on contact page sidebar) */
.contact-detail-list { display: flex; flex-direction: column; gap: 0; }
.contact-detail {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-detail:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.contact-detail-icon {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic;
  color: rgba(201,168,76,0.3); flex-shrink: 0; margin-top: 2px;
}
.contact-detail-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: rgba(201,168,76,0.45); margin-bottom: 4px;
}
.contact-detail-val { font-size: 13px; color: rgba(245,244,239,0.55); line-height: 1.65; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: #070c17; padding: 42px 60px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(201,168,76,0.08);
  flex-wrap: wrap; gap: 18px;
}
footer img { height: 30px; opacity: 0.55; width: auto; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,244,239,0.25); text-decoration: none; transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(245,244,239,0.6); }
.footer-copy { font-size: 12px; color: var(--gray); }

/* ═══════════════════════════════
   LEGAL PAGES
═══════════════════════════════ */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 140px 60px 100px; }
.legal-wrap h1 { margin-bottom: 12px; }
.legal-effective {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(201,168,76,0.5); margin-bottom: 56px;
}
.legal-section { padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.legal-section:first-of-type { border-top: 1px solid rgba(255,255,255,0.05); }
.legal-section h3 { color: var(--white); margin-bottom: 14px; }
.legal-section p { font-size: 14px; line-height: 1.85; color: rgba(245,244,239,0.58); margin-bottom: 10px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { list-style: none; margin: 10px 0; display: flex; flex-direction: column; gap: 0; }
.legal-section ul li {
  font-size: 14px; line-height: 1.8; color: rgba(245,244,239,0.55);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 12px;
}
.legal-section ul li:last-child { border-bottom: none; }
.legal-section ul li::before { content: '—'; color: rgba(201,168,76,0.4); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; flex-shrink: 0; }

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.14s; }
.hero-content > *:nth-child(3) { animation-delay: 0.26s; }
.hero-content > *:nth-child(4) { animation-delay: 0.36s; }
.hero-content > *:nth-child(5) { animation-delay: 0.48s; }

/* ═══════════════════════════════
   RESPONSIVE — Tablet (max 960px)
═══════════════════════════════ */
@media (max-width: 960px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 80px 28px; }
  .hero-main { padding: 100px 28px 60px; }
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-stat-bar { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-bottom: 1px solid rgba(201,168,76,0.08); }

  .two-col, .two-col-r, .about-split, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }

  .problem-grid { grid-template-columns: 1fr; }
  .guarantee-stack { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { margin: 0; }
  .plug-grid { grid-template-columns: 1fr; }
  .plug-connector { display: none; }

  .phase-row { grid-template-columns: 60px 1fr; }
  .bonus-item { grid-template-columns: 40px 1fr auto; }
  .bonus-value-col { display: block; border-left: none; padding: 12px 16px; min-width: 0; text-align: right; }
  .bonus-total-row { grid-template-columns: 40px 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .section-num { display: none; }
  footer { flex-direction: column; text-align: center; padding: 36px 28px; }
  .footer-nav { justify-content: center; }
  .legal-wrap { padding: 110px 28px 80px; }
}

@media (max-width: 480px) {
  section { padding: 60px 20px; }
  .hero-main { padding: 90px 20px 50px; }
  .hero-stat-bar { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 18px 20px; }
  .hero-stat-val { font-size: 22px; }
  .btn-primary, .btn-ghost { padding: 16px 28px; font-size: 12px; }
  footer { padding: 28px 20px; }
  .legal-wrap { padding: 90px 20px 60px; }

  .bonus-total-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bonus-total-row > div:first-child {
    display: none;
  }

  .bonus-total-label {
    text-align: center;
    padding: 16px 20px 6px;
  }

  .bonus-total-val {
    text-align: center;
    min-width: 0;
    white-space: nowrap;
    padding: 0 20px 16px;
    font-size: 32px;
  }
}