/* ============================================================
   IBIT OPTIONS INCOME PLAYBOOK — World-Class Design System
   EarnSideIncome.net / iPro Decisions
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Jost:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Backgrounds — deep navy/slate */
  --bg:    #050A0F;
  --bg2:   #080D13;
  --bg3:   #0C1420;
  --bg4:   #101928;
  --card:  #0E1720;
  --card2: #121E2A;

  /* Brand gold */
  --gold:        #E87820;
  --gold-l:      #F5A040;
  --gold-d:      #C06010;
  --gold-glow:   rgba(232,120,32,.12);
  --gold-glow2:  rgba(232,120,32,.06);
  --gold-border: rgba(232,120,32,.28);

  /* Accents */
  --green:   #00C896;
  --green-g: rgba(0,200,150,.10);
  --red:     #FF4365;
  --red-g:   rgba(255,67,101,.08);
  --blue:    #4FA3FF;
  --warn:    #F5A040;

  /* Text scale — proper contrast hierarchy */
  --text:  #EEF2F6;   /* primary — near white */
  --text2: #B8CCd8;   /* secondary — readable mid */
  --text3: #6A8296;   /* tertiary — labels, captions */
  --text4: #3A5060;   /* muted — disabled, fine print */

  /* Borders */
  --border:   rgba(255,255,255,.06);
  --border-m: rgba(255,255,255,.10);
  --border-h: rgba(255,255,255,.16);

  /* Fonts */
  --fd: 'Bebas Neue', sans-serif;
  --fb: 'Jost', sans-serif;
  --fm: 'IBM Plex Mono', monospace;

  /* Misc */
  --r:  4px;
  --r2: 8px;
  --tr: .2s ease;
  --sp: 88px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 17px;
  line-height: 1.65;
  padding-top: 64px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
strong { color: var(--text); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 880px;  margin: 0 auto; padding: 0 28px; }
.container-xs { max-width: 660px;  margin: 0 auto; padding: 0 28px; }

.section      { padding: var(--sp) 0; }
.section-dark { background: var(--bg2); }
.section-alt  { background: var(--bg3); }

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fm); font-size: 12px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  font-weight: 500;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 22px; height: 1.5px;
  background: var(--gold); flex-shrink: 0;
}

.sec-title {
  font-family: var(--fd);
  font-size: clamp(52px, 6vw, 84px);
  line-height: .90; letter-spacing: .5px;
  margin-bottom: 22px;
  color: var(--text);
}
.sec-title .g  { color: var(--gold); }
.sec-title .sk { -webkit-text-stroke: 1.5px var(--gold); color: transparent; }

.sec-sub {
  font-size: 19px;
  color: var(--text2);
  line-height: 1.78;
  max-width: 620px;
}

/* ============================================================
   BUTTONS — professional hierarchy
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 15px 30px;
  font-family: var(--fm); font-size: 12px;
  letter-spacing: 1.8px; text-transform: uppercase; font-weight: 600;
  border: none; cursor: pointer; transition: all var(--tr);
  position: relative; white-space: nowrap; border-radius: 3px;
}
.btn-xl  { padding: 18px 40px; font-size: 13px; letter-spacing: 1.5px; }
.btn-sm  { padding: 11px 22px; font-size: 11px; letter-spacing: 1.5px; }
.btn-full { width: 100%; }

/* Amazon — warm orange, highest contrast */
.btn-amz {
  background: linear-gradient(135deg, #FF9900 0%, #E87820 100%);
  color: #0A0A0A;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(232,120,32,.30), inset 0 1px 0 rgba(255,255,255,.18);
  border: none;
}
.btn-amz:hover {
  background: linear-gradient(135deg, #FFB030 0%, #F5A040 100%);
  box-shadow: 0 6px 32px rgba(232,120,32,.50), inset 0 1px 0 rgba(255,255,255,.22);
  transform: translateY(-2px);
}

/* Primary — gold gradient */
.btn-primary {
  background: linear-gradient(135deg, #E87820 0%, #C06010 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(232,120,32,.28);
  border: none;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #F5A040 0%, #E87820 100%);
  box-shadow: 0 6px 28px rgba(232,120,32,.45);
  transform: translateY(-2px);
}

/* Outline — gold border, subtle fill */
.btn-outline {
  background: rgba(232,120,32,.07);
  color: var(--gold);
  border: 1.5px solid rgba(232,120,32,.45);
  font-weight: 600;
}
.btn-outline:hover {
  background: rgba(232,120,32,.14);
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(232,120,32,.20);
  transform: translateY(-1px);
}

/* Ghost — nav / secondary */
.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border-m);
  font-weight: 500;
}
.btn-ghost:hover {
  color: var(--gold);
  border-color: rgba(232,120,32,.4);
  background: rgba(232,120,32,.05);
}

/* Bundle — deep gold, bold */
.btn-bundle {
  background: linear-gradient(135deg, #E87820 0%, #C06010 100%);
  color: #fff;
  border: none;
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(232,120,32,.38);
  border-radius: 6px;
}
.btn-bundle:hover {
  background: linear-gradient(135deg, #F5A040 0%, #E87820 100%);
  box-shadow: 0 8px 32px rgba(232,120,32,.55);
  transform: translateY(-2px);
}

/* Stripe / Pay with Card */
#main-stripe-btn {
  background: rgba(255,255,255,.05) !important;
  color: var(--text) !important;
  border: 1.5px solid var(--border-h) !important;
  font-weight: 600 !important;
}
#main-stripe-btn:hover {
  background: rgba(255,255,255,.09) !important;
  border-color: rgba(255,255,255,.28) !important;
  transform: translateY(-1px) !important;
}

.btn:active { transform: translateY(0) !important; box-shadow: none !important; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px; border-bottom: 1px solid var(--border);
  background: rgba(5,10,15,.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: background var(--tr), border-color var(--tr);
}
.site-header .container {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 36px; height: 36px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 18px; color: #050A0F; border-radius: var(--r);
}
.logo-name {
  font-family: var(--fd); font-size: 19px; letter-spacing: 1px; line-height: 1;
  color: var(--text);
}
.logo-name span { color: var(--gold); }
.logo-sub {
  font-family: var(--fm); font-size: 11px; color: var(--text3);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 3px;
}
.hdr-right { display: flex; align-items: center; gap: 14px; }

/* ============================================================
   PROOF BAR
   ============================================================ */
.proof-bar {
  background: var(--bg3); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 16px 0;
}
.proof-inner {
  display: flex; justify-content: center; gap: 36px;
  flex-wrap: wrap; align-items: center;
}
.pf {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--fm); font-size: 12px; color: var(--text2);
  letter-spacing: .5px;
}
.pf-val { color: var(--gold); font-weight: 600; }
.pf-sep { color: var(--text4); font-size: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 72px 0 64px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 75% 30%, rgba(232,120,32,.08), transparent 65%),
    radial-gradient(ellipse 45% 70% at 10% 80%, rgba(0,200,150,.03), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black, transparent 75%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 540px; gap: 48px; align-items: center;
  position: relative; z-index: 2;
}
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(232,120,32,.07); border: 1px solid var(--gold-border);
  padding: 8px 16px; font-size: 11px; font-family: var(--fm);
  color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 28px;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero-title {
  font-family: var(--fd);
  font-size: clamp(70px, 9vw, 114px);
  line-height: .88; letter-spacing: .5px; margin-bottom: 26px;
  color: var(--text);
}
.hero-sub {
  font-size: 20px; color: var(--text2); line-height: 1.72;
  max-width: 520px; margin-bottom: 38px;
}
.hero-stats {
  display: flex; gap: 0; margin-bottom: 40px;
  border: 1px solid var(--border-m); overflow: hidden;
}
.hs {
  flex: 1; padding: 18px 20px; border-right: 1px solid var(--border-m);
  text-align: center;
}
.hs:last-child { border-right: none; }
.hs-val { font-family: var(--fd); font-size: 32px; color: var(--gold); line-height: 1; }
.hs-lbl {
  font-family: var(--fm); font-size: 11px; color: var(--text3);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 5px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.guarantee-note {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--fm); font-size: 13px; color: var(--text3);
}

/* ============================================================
   BOOK 3D VISUAL
   ============================================================ */
.book-wrap {
  position: relative; display: flex; justify-content: center;
  padding: 20px 0 24px; margin-top: 0;
}
.book-float { animation: bfloat 8s ease-in-out infinite; }
@keyframes bfloat {
  0%, 100% { transform: perspective(1000px) rotateY(-14deg) rotateX(3deg) translateY(0); }
  50%       { transform: perspective(1000px) rotateY(-14deg) rotateX(3deg) translateY(-16px); }
}
.book { width: 390px; height: 530px; position: relative; transform-style: preserve-3d; }
.book-front {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #0D2040 0%, #091630 55%, #050E22 100%);
  border: 1px solid rgba(232,120,32,.22);
  border-radius: 2px 6px 6px 2px; padding: 36px 32px;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 32px 100px rgba(0,0,0,.85), 10px 0 30px rgba(0,0,0,.6);
}
.book-spine {
  position: absolute; left: -24px; top: 0; bottom: 0; width: 24px;
  background: linear-gradient(90deg, #020710, #0B1E3A);
  border-radius: 2px 0 0 2px; border-left: 1px solid rgba(232,120,32,.1);
  display: flex; align-items: center; justify-content: center;
}
.spine-txt {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--fm); font-size: 9px; letter-spacing: 3px;
  color: rgba(232,120,32,.75);
}
.bk-badge {
  display: inline-block; background: var(--gold); color: #050A0F;
  font-family: var(--fm); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 14px; margin-bottom: 20px; font-weight: 700;
}
.bk-label {
  font-family: var(--fm); font-size: 10px; letter-spacing: 2px;
  color: rgba(232,120,32,.7); text-transform: uppercase; margin-bottom: 16px;
}
.bk-title {
  font-family: var(--fd); font-size: 36px; font-weight: 400;
  line-height: 1.02; color: var(--text); margin-bottom: 12px;
}
.bk-sub { font-size: 13px; color: var(--text2); line-height: 1.65; font-family: var(--fb); }
.bk-line {
  height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin: 22px 0;
}
.bk-stats { display: flex; gap: 10px; margin-top: auto; }
.bkst {
  text-align: center; flex: 1; padding: 12px 6px;
  border: 1px solid rgba(232,120,32,.16); background: rgba(232,120,32,.04);
}
.bkst-v { font-family: var(--fd); font-size: 28px; color: var(--gold); }
.bkst-l {
  font-family: var(--fm); font-size: 9px; letter-spacing: 1px;
  color: var(--text3); text-transform: uppercase; margin-top: 4px;
}
.book-glow {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  width: 280px; height: 60px; background: rgba(232,120,32,.22);
  filter: blur(36px); border-radius: 50%; pointer-events: none;
}

/* ============================================================
   PROBLEM GRID
   ============================================================ */
.prob-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); margin-bottom: 0;
}
.prob-cell {
  background: var(--bg2); padding: 42px 38px;
  position: relative; overflow: hidden; transition: background var(--tr);
}
.prob-cell:hover { background: var(--card); }
.prob-num {
  position: absolute; top: 12px; right: 20px;
  font-family: var(--fd); font-size: 96px;
  color: rgba(255,255,255,.04); line-height: 1; user-select: none;
}
.prob-icon { font-size: 30px; margin-bottom: 18px; }
.prob-title { font-size: 17px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.prob-desc { font-size: 15px; color: var(--text2); line-height: 1.78; }

.callout {
  background: linear-gradient(135deg, rgba(232,120,32,.08), rgba(232,120,32,.02));
  border: 1px solid var(--gold-border);
  padding: 38px 42px; margin-top: 1px;
  display: flex; gap: 26px; align-items: flex-start;
}
.callout-icon { font-size: 34px; flex-shrink: 0; margin-top: 2px; }
.callout-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--gold); }
.callout-body { font-size: 16px; color: var(--text2); line-height: 1.78; }

/* ============================================================
   BENEFIT CARDS
   ============================================================ */
.ben-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
}
.ben-card {
  background: var(--bg2); padding: 34px 30px;
  transition: background var(--tr), transform var(--tr);
  position: relative; overflow: hidden;
}
.ben-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.ben-card:hover { background: var(--card); }
.ben-card:hover::after { transform: scaleX(1); }
.ben-icon { font-size: 32px; margin-bottom: 18px; }
.ben-title { font-size: 17px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.ben-desc { font-size: 15px; color: var(--text2); line-height: 1.75; }

/* ============================================================
   PARTS GRID
   ============================================================ */
.parts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
}
.part-card {
  background: var(--card); padding: 30px 26px; position: relative;
}
.part-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--gold);
}
.part-label {
  font-family: var(--fm); font-size: 11px; letter-spacing: 1.5px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
}
.part-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.part-chs {
  font-family: var(--fm); font-size: 12px; color: var(--gold);
  letter-spacing: .5px; margin-bottom: 12px;
}
.part-items { font-size: 14px; color: var(--text2); line-height: 1.88; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
}
.test-card {
  background: var(--card); padding: 34px 30px; position: relative;
}
.test-q {
  font-family: var(--fd); font-size: 80px; color: rgba(232,120,32,.1);
  position: absolute; top: 8px; right: 22px; line-height: 1;
}
.test-result {
  display: inline-block; font-family: var(--fm); font-size: 11px; color: var(--green);
  letter-spacing: 1px; padding: 4px 12px; border: 1px solid rgba(0,200,150,.22);
  background: var(--green-g); margin-bottom: 16px;
}
.test-text {
  font-size: 15px; color: var(--text2); line-height: 1.82; margin-bottom: 22px;
  font-style: italic;
}
.test-user { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 14px; color: var(--gold); flex-shrink: 0;
}
.test-name { font-size: 15px; font-weight: 700; margin-bottom: 3px; color: var(--text); }
.test-role { font-family: var(--fm); font-size: 11px; color: var(--text3); letter-spacing: .3px; }
.stars { color: #FFB020; font-size: 13px; display: block; margin-bottom: 14px; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.cmp-wrap { overflow-x: auto; }
.cmp-table {
  width: 100%; border-collapse: collapse; min-width: 700px;
  border: 1px solid var(--border-m);
}
.cmp-table th, .cmp-table td {
  padding: 16px 22px; text-align: left;
  border-bottom: 1px solid var(--border); font-size: 14px;
  color: var(--text2);
}
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table thead { background: var(--bg3); }
.cmp-table th {
  font-family: var(--fm); font-size: 11px; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--text3); font-weight: 500;
}
.cmp-table tbody tr:hover td { background: rgba(255,255,255,.02); }
.hl-col { background: rgba(232,120,32,.05) !important; }
.cmp-table td.hl-col { color: var(--gold) !important; }
.cmp-table th.hl-col { color: var(--gold) !important; }
.cmp-y { color: var(--green) !important; font-weight: 600; }
.cmp-n { color: var(--text4) !important; }

/* ============================================================
   LEAD CAPTURE
   ============================================================ */
.capture-box {
  background: var(--card); border: 1px solid var(--gold-border);
  padding: 56px 52px; position: relative; overflow: hidden;
}
.capture-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.bonus-chips { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0 32px; }
.bonus-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--green-g); border: 1px solid rgba(0,200,150,.22);
  padding: 8px 16px; font-family: var(--fm); font-size: 11px; color: var(--green);
  letter-spacing: .5px;
}
.capture-form { display: flex; flex-direction: column; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-input {
  width: 100%; padding: 14px 18px; background: var(--bg);
  border: 1px solid var(--border-m); color: var(--text);
  font-family: var(--fb); font-size: 16px; border-radius: var(--r);
  transition: border-color var(--tr); outline: none;
}
.form-input:focus { border-color: var(--gold-border); background: var(--bg2); }
.form-input::placeholder { color: var(--text4); }
.form-note {
  font-family: var(--fm); font-size: 12px; color: var(--text3);
  text-align: center; margin-top: 4px; letter-spacing: .5px;
}

/* ============================================================
   PRICE CARD
   ============================================================ */
.price-card {
  background: var(--card); border: 1px solid var(--gold-border);
  max-width: 620px; margin: 0 auto; position: relative; overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.price-top {
  padding: 44px 44px 32px;
  background: linear-gradient(135deg, rgba(232,120,32,.08), transparent);
  border-bottom: 1px solid var(--border);
}
.price-badge {
  display: inline-block; background: var(--red); color: #fff;
  font-family: var(--fm); font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 12px; margin-bottom: 16px;
}
.price-label {
  font-family: var(--fm); font-size: 11px; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
}
.price-was {
  font-size: 14px; color: var(--text3); text-decoration: line-through;
  font-family: var(--fm);
}
.price-row { display: flex; align-items: flex-end; gap: 6px; margin: 4px 0 18px; }
.price-now { font-family: var(--fd); font-size: 92px; color: var(--gold); line-height: .88; }
.price-unit { font-family: var(--fd); font-size: 30px; color: var(--text2); margin-bottom: 14px; }
.price-body { padding: 32px 44px; }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text2); line-height: 1.65;
}
.ck { color: var(--green); font-size: 15px; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   ORDER BUMP
   ============================================================ */
.bump-box {
  background: rgba(232,120,32,.04); border: 1px solid var(--gold-border);
  padding: 20px 22px; display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 24px; cursor: pointer; transition: background var(--tr);
  border-radius: 4px;
}
.bump-box:hover { background: rgba(232,120,32,.08); }
.bump-box input[type="checkbox"] {
  margin-top: 3px; accent-color: var(--gold);
  width: 18px; height: 18px; cursor: pointer; flex-shrink: 0;
}
.bump-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.bump-desc { font-size: 14px; color: var(--text2); line-height: 1.72; }
.bump-price { font-family: var(--fm); font-size: 14px; color: var(--gold); margin-top: 8px; font-weight: 600; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-row {
  display: flex; justify-content: center; gap: 22px;
  flex-wrap: wrap; margin-top: 18px;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--fm); font-size: 12px; color: var(--text3); letter-spacing: .5px;
}

/* ============================================================
   COUNTDOWN
   ============================================================ */
.cd-wrap { display: flex; align-items: center; gap: 6px; }
.cd-blk {
  background: var(--bg); border: 1px solid var(--border-m);
  padding: 8px 14px; text-align: center; min-width: 58px; border-radius: 3px;
}
.cd-num { font-family: var(--fd); font-size: 30px; color: var(--gold); line-height: 1; display: block; }
.cd-sub { font-family: var(--fm); font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; }
.cd-sep { font-family: var(--fd); font-size: 24px; color: var(--text3); }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee-box {
  background: var(--bg2); border: 1px solid var(--border-m);
  padding: 40px; display: flex; gap: 26px; align-items: flex-start;
  border-radius: 4px;
}
.guarantee-icon { font-size: 52px; flex-shrink: 0; }
.guarantee-badge {
  font-family: var(--fm); font-size: 11px; letter-spacing: 2px;
  color: var(--green); text-transform: uppercase; margin-bottom: 10px;
}
.guarantee-title { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.guarantee-body { font-size: 16px; color: var(--text2); line-height: 1.78; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 1px; }
.faq-item { background: var(--card); border: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; cursor: pointer; gap: 16px;
  font-size: 16px; font-weight: 600; color: var(--text);
  transition: color var(--tr); user-select: none; line-height: 1.45;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 22px; color: var(--gold); flex-shrink: 0;
  font-family: var(--fm); transition: transform .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 28px 24px;
  font-size: 15px; color: var(--text2); line-height: 1.82;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative; overflow: hidden; text-align: center;
  padding: var(--sp) 0;
}
.final-cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(232,120,32,.09), transparent 65%);
}

/* ============================================================
   STICKY BAR
   ============================================================ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(8,13,19,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-m);
  padding: 12px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  transform: translateY(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-text { font-size: 15px; font-weight: 600; color: var(--text); }
.sticky-price { font-family: var(--fm); font-size: 13px; color: var(--gold); margin-top: 2px; }

/* ============================================================
   EXIT POPUP
   ============================================================ */
.popup-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.82); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s; padding: 24px;
}
.popup-overlay.visible { opacity: 1; pointer-events: all; }
.popup {
  background: var(--card); border: 1px solid var(--gold-border);
  max-width: 490px; width: 100%; padding: 48px 42px; position: relative;
  transform: translateY(20px); transition: transform .25s;
}
.popup-overlay.visible .popup { transform: translateY(0); }
.popup-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; color: var(--text3); font-size: 22px;
  cursor: pointer; transition: color var(--tr); line-height: 1;
}
.popup-close:hover { color: var(--text); }

/* ============================================================
   OTO / FUNNEL PAGES
   ============================================================ */
.oto-banner {
  background: linear-gradient(90deg, rgba(255,67,101,.12), rgba(255,67,101,.04));
  border-bottom: 1px solid rgba(255,67,101,.22);
  padding: 13px 24px; text-align: center;
  font-family: var(--fm); font-size: 12px; color: var(--red);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.oto-cd-banner {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 18px 24px; text-align: center;
}
.oto-cd-label {
  font-family: var(--fm); font-size: 11px; letter-spacing: 2px;
  color: var(--text3); text-transform: uppercase; margin-bottom: 12px;
}

/* ============================================================
   VIDEO FRAME
   ============================================================ */
.video-frame {
  background: var(--bg2); border: 1px solid var(--border);
  aspect-ratio: 16/9; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 52px; cursor: pointer; position: relative; overflow: hidden;
  transition: border-color var(--tr);
}
.video-frame:hover { border-color: var(--gold-border); }
.video-frame::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232,120,32,.06), transparent);
}
.play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 0 rgba(232,120,32,0); position: relative; z-index: 1;
}
.play-btn:hover, .video-frame:hover .play-btn {
  transform: scale(1.1); box-shadow: 0 0 40px rgba(232,120,32,.5);
}
.video-label {
  font-family: var(--fm); font-size: 11px; color: var(--text3);
  letter-spacing: 1.5px; text-transform: uppercase; z-index: 1;
}
.video-embed { position: absolute; inset: 0; width: 100%; height: 100%; display: none; border: none; }

/* ============================================================
   COURSE MODULES
   ============================================================ */
.modules { display: flex; flex-direction: column; gap: 1px; margin-bottom: 48px; }
.module {
  background: var(--card); padding: 28px 32px;
  display: grid; grid-template-columns: 76px 1fr;
  gap: 22px; border-left: 2px solid transparent;
  transition: border-color .2s, background .2s;
}
.module:hover { border-left-color: var(--gold); background: var(--card2); }
.mod-num {
  font-family: var(--fd); font-size: 48px;
  color: rgba(232,120,32,.15); line-height: 1;
}
.mod-title { font-size: 16px; font-weight: 700; margin-bottom: 7px; color: var(--text); }
.mod-desc { font-size: 14px; color: var(--text2); line-height: 1.70; }
.mod-tag {
  display: inline-block; background: rgba(0,200,150,.07);
  color: var(--green); font-family: var(--fm); font-size: 10px;
  padding: 3px 10px; margin-top: 10px; letter-spacing: .5px;
}

/* ============================================================
   BONUS ITEMS
   ============================================================ */
.bonus-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 48px; }
.bonus-item {
  background: rgba(232,120,32,.03); border: 1px solid var(--gold-border);
  padding: 22px 26px; display: flex; gap: 18px; align-items: flex-start;
}
.b-icon { font-size: 30px; flex-shrink: 0; }
.b-title { font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.b-desc { font-size: 14px; color: var(--text2); line-height: 1.68; }
.b-val { font-family: var(--fm); font-size: 10px; color: var(--text3); margin-top: 6px; }

/* ============================================================
   VALUE BREAKDOWN
   ============================================================ */
.val-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; font-size: 15px; border-bottom: 1px solid var(--border);
  color: var(--text2);
}
.val-row:last-child { border-bottom: none; }
.val-price { font-family: var(--fm); font-size: 12px; color: var(--text4); text-decoration: line-through; }
.val-total { color: var(--gold); font-weight: 700; border-top: 1px solid var(--gold-border) !important; }

/* ============================================================
   ALERT CARDS
   ============================================================ */
.alert-card {
  background: var(--card); border-left: 2px solid var(--gold);
  padding: 24px 28px; display: flex; gap: 18px; align-items: flex-start;
  transition: background var(--tr);
}
.alert-card:hover { background: var(--card2); }
.alert-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.alert-title { font-size: 15px; font-weight: 700; margin-bottom: 7px; color: var(--text); }
.alert-desc { font-size: 14px; color: var(--text2); line-height: 1.68; }
.alert-meta { font-family: var(--fm); font-size: 11px; color: var(--text3); margin-top: 8px; letter-spacing: .5px; }
.alerts-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 48px; }

/* ============================================================
   WAIT / SUCCESS BANNERS
   ============================================================ */
.wait-banner {
  background: linear-gradient(90deg, rgba(232,120,32,.13), rgba(232,120,32,.04));
  border-bottom: 1px solid var(--gold-border);
  padding: 14px 24px; text-align: center;
  font-family: var(--fm); font-size: 12px; color: var(--gold); letter-spacing: 1px;
}
.success-bar {
  background: linear-gradient(90deg, rgba(0,200,150,.13), rgba(0,200,150,.03));
  border-bottom: 1px solid rgba(0,200,150,.24);
  padding: 14px 24px; text-align: center;
  font-family: var(--fm); font-size: 12px; color: var(--green); letter-spacing: 1px;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.checkmark-wrap {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(0,200,150,.09); border: 1px solid rgba(0,200,150,.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; margin: 0 auto 28px;
  animation: pop .5s cubic-bezier(.175,.885,.32,1.275) both;
}
@keyframes pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.dl-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 20px 24px; display: flex; align-items: center; gap: 16px;
  color: var(--text); transition: border-color .2s, background .2s; margin-bottom: 8px;
  border-radius: 3px;
}
.dl-card:hover { border-color: var(--gold-border); background: var(--card2); }
.dl-icon { font-size: 34px; flex-shrink: 0; }
.dl-title { font-size: 16px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.dl-desc { font-size: 13px; color: var(--text3); font-family: var(--fm); }
.dl-btn {
  margin-left: auto; background: var(--gold-glow); border: 1px solid var(--gold-border);
  color: var(--gold); padding: 9px 18px; font-size: 11px; font-family: var(--fm);
  white-space: nowrap; flex-shrink: 0; letter-spacing: .5px; cursor: pointer;
  transition: background var(--tr);
}
.dl-btn:hover { background: rgba(232,120,32,.2); }

.step { display: flex; gap: 22px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 22px; color: var(--gold); flex-shrink: 0;
}
.step-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-desc { font-size: 15px; color: var(--text2); line-height: 1.78; }

/* ============================================================
   COACHING / UPSELL BOXES
   ============================================================ */
.coaching-box {
  background: var(--card); border: 1px solid var(--gold-border);
  position: relative; overflow: hidden; margin-bottom: 52px;
}
.coaching-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.coaching-inner { padding: 48px; }
.coaching-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.coaching-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--text2);
}
.ck-g { font-size: 16px; }
.coaching-price { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.coaching-amt { font-family: var(--fd); font-size: 72px; color: var(--gold); line-height: 1; }
.coaching-detail { font-size: 14px; color: var(--text2); font-family: var(--fm); line-height: 1.65; }

.share-box {
  background: var(--card); border: 1px solid var(--border);
  padding: 42px; text-align: center; margin-bottom: 40px;
}
.share-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px;
  font-size: 13px; font-family: var(--fm); cursor: pointer;
  border: 1px solid var(--border-m); transition: transform .2s, border-color .2s;
  background: var(--bg3); color: var(--text2); letter-spacing: .5px; border-radius: 3px;
}
.share-btn:hover { transform: translateY(-2px); border-color: var(--border-h); color: var(--text); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 780px; margin: 0 auto; padding: 80px 28px; }
.legal-content h1 { font-family: var(--fd); font-size: 54px; margin-bottom: 8px; color: var(--text); }
.legal-content .updated {
  font-family: var(--fm); font-size: 11px; color: var(--text3);
  letter-spacing: 1px; margin-bottom: 48px;
}
.legal-content h2 { font-size: 20px; font-weight: 700; margin: 40px 0 14px; color: var(--gold); }
.legal-content p { font-size: 16px; color: var(--text2); line-height: 1.82; margin-bottom: 18px; }
.legal-content a { color: var(--gold); border-bottom: 1px solid var(--gold-border); transition: color var(--tr); }
.legal-content a:hover { color: var(--gold-l); }
.legal-content ul { list-style: disc; padding-left: 26px; }
.legal-content ul li { font-size: 16px; color: var(--text2); line-height: 1.82; margin-bottom: 10px; }

/* ============================================================
   LEGAL NAV BAR
   ============================================================ */
.legal-nav {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 14px 28px; display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.legal-nav .btn-home {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid var(--border-m);
  color: var(--text2); padding: 9px 18px;
  font-family: var(--fm); font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer; transition: all .2s; text-decoration: none;
  border-radius: 3px;
}
.legal-nav .btn-home:hover { border-color: var(--gold-border); color: var(--gold); background: var(--gold-glow2); }
.legal-nav .btn-contact {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #050A0F; padding: 9px 18px;
  font-family: var(--fm); font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer; transition: all .2s;
  border: none; text-decoration: none; border-radius: 3px; font-weight: 700;
}
.legal-nav .btn-contact:hover { background: var(--gold-l); }
.legal-nav-spacer { flex: 1; }
.legal-nav-links { display: flex; align-items: center; gap: 16px; }
.legal-nav-links a {
  font-family: var(--fm); font-size: 11px; color: var(--text3);
  text-transform: uppercase; letter-spacing: .5px; transition: color .2s;
  text-decoration: none; border: none !important;
}
.legal-nav-links a:hover { color: var(--gold); }

/* ============================================================
   TAGS & CARD GOLD
   ============================================================ */
.tag {
  display: inline-block; background: var(--gold-glow);
  border: 1px solid var(--gold-border); color: var(--gold);
  font-family: var(--fm); font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 12px;
}
.card-gold {
  background: var(--card); border: 1px solid var(--gold-border);
  overflow: hidden; position: relative; display: flex; flex-direction: column;
}
.card-gold::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 64px 0 36px; margin-top: var(--sp);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 52px; margin-bottom: 52px;
}
.footer-col h4 {
  font-family: var(--fm); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text3); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 15px; color: var(--text2); transition: color var(--tr); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; }
.footer-copy { font-family: var(--fm); font-size: 13px; color: var(--text3); letter-spacing: .5px; margin-bottom: 14px; }
.footer-disc { font-size: 13px; color: var(--text3); line-height: 1.75; max-width: 820px; }
.footer-disc strong { color: var(--text2); }
.footer-disc a { color: var(--text3); transition: color var(--tr); }
.footer-disc a:hover { color: var(--gold); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
/* Always visible — no broken invisible sections */
.fa { opacity: 1 !important; transform: none !important; }
.fa.fa-d1 { transition-delay: .08s; }
.fa.fa-d2 { transition-delay: .16s; }
.fa.fa-d3 { transition-delay: .24s; }
.fa.in-view { opacity: 1; transform: translateY(0); }

/* Hero elements always shown */
.hero-eyebrow,.hero-title,.hero-sub,.hero-stats,
.cta-row,.guarantee-note,.book-wrap {
  opacity: 1 !important; transform: none !important; visibility: visible !important;
}

/* ============================================================
   MISC COMPONENTS
   ============================================================ */
.no-thanks { text-align: center; padding: 24px 0 52px; }
.no-thanks a {
  font-family: var(--fm); font-size: 13px; color: var(--text3);
  text-decoration: underline; cursor: pointer; transition: color var(--tr);
}
.no-thanks a:hover { color: var(--text2); }

.bridge-modal {
  background: var(--card); border: 1px solid var(--gold-border);
  max-width: 580px; width: 100%; padding: 0; position: relative; overflow: hidden;
  transform: translateY(20px); transition: transform .25s;
}
.popup-overlay.visible .bridge-modal { transform: translateY(0); }
.bridge-header {
  background: linear-gradient(135deg, rgba(232,120,32,.12), rgba(232,120,32,.03));
  border-bottom: 1px solid var(--gold-border); padding: 30px 38px 26px; text-align: center;
}
.bridge-body { padding: 28px 38px; }
.bridge-offer {
  background: rgba(232,120,32,.06); border: 1px solid var(--gold-border);
  padding: 20px 24px; margin-bottom: 20px;
}

.contact-wrap {
  background: var(--card); border: 1px solid var(--gold-border);
  padding: 48px 52px; position: relative; overflow: hidden;
  max-width: 700px; margin: 0 auto;
}
.contact-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-grid .field { margin-bottom: 0; }
.contact-field-full { margin-bottom: 16px; }
textarea.form-input { resize: vertical; min-height: 120px; padding: 14px 18px; }
.contact-info-row { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.contact-info-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text2); }
.ci-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.ci-label { font-family: var(--fm); font-size: 10px; color: var(--text3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px; }

.hiw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin-bottom: 40px; }
.hiw-step { background: var(--card); padding: 30px 26px; text-align: center; position: relative; }
.hiw-step::after { content: '→'; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); font-size: 18px; color: var(--gold); z-index: 2; background: var(--bg); padding: 4px; }
.hiw-step:last-child::after { display: none; }
.hiw-num { font-family: var(--fd); font-size: 52px; color: rgba(232,120,32,.15); line-height: 1; margin-bottom: 12px; }
.hiw-icon { font-size: 30px; margin-bottom: 12px; }
.hiw-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.hiw-desc { font-size: 14px; color: var(--text2); line-height: 1.68; }
.hiw-tag { display: inline-block; margin-top: 10px; background: var(--gold-glow); border: 1px solid var(--gold-border); color: var(--gold); font-family: var(--fm); font-size: 9px; letter-spacing: 1px; padding: 3px 10px; text-transform: uppercase; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .book-wrap { max-width: 400px; margin: 0 auto; padding: 16px 0; }
  .book { width: 340px !important; height: 460px !important; }
  .bk-title { font-size: 30px !important; }
  .bk-sub   { font-size: 12px !important; }
  .ben-grid  { grid-template-columns: 1fr 1fr; }
  .parts-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 52px 0 52px; }
  .hiw-grid { grid-template-columns: 1fr 1fr; }
  .hiw-step::after { display: none; }
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 768px) {
  :root { --sp: 68px; }
  .prob-grid  { grid-template-columns: 1fr; }
  .ben-grid   { grid-template-columns: 1fr; }
  .parts-grid { grid-template-columns: 1fr; }
  .test-grid  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats { flex-wrap: wrap; }
  .proof-inner { gap: 16px; }
  .callout { flex-direction: column; }
  .module { grid-template-columns: 1fr; }
  .mod-num { font-size: 36px; }
  .guarantee-box { flex-direction: column; gap: 18px; }
  .coaching-inner { padding: 32px 28px; }
}
@media (max-width: 600px) {
  .container, .container-sm, .container-xs { padding: 0 20px; }
  .capture-box { padding: 32px 24px; }
  .price-top, .price-body { padding: 28px 24px; }
  .price-now { font-size: 70px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; }
  .hdr-right { gap: 8px; }
  .hero-stats { border: none; }
  .hs { padding: 14px; border: 1px solid var(--border); }
  .sec-sub { font-size: 17px; }
  .hero-sub { font-size: 17px; }
  .coaching-box .coaching-inner { padding: 28px 22px; }
}

/* ============================================================
   BOOK SIZE UPGRADE — larger, no wasted padding
   ============================================================ */

/* Widen the right column to give the book more real estate */
.hero-inner {
  grid-template-columns: 1fr 520px !important;
  gap: 52px !important;
  align-items: center !important;
}

/* Remove the bottom padding that was creating blank space */
.book-wrap {
  padding: 0 0 20px !important;
  margin-top: 0 !important;
}

/* Bigger book */
.book {
  width: 380px !important;
  height: 520px !important;
}

/* Spine scales with book */
.book-spine {
  width: 24px !important;
  left: -24px !important;
}

/* Book front — scale up typography */
.bk-label {
  font-size: 10px !important;
  letter-spacing: 1.8px !important;
  margin-bottom: 14px !important;
}
.bk-badge {
  font-size: 10px !important;
  padding: 5px 12px !important;
  margin-bottom: 20px !important;
}
.bk-title {
  font-size: 34px !important;
  line-height: 1.02 !important;
  margin-bottom: 12px !important;
}
.bk-sub {
  font-size: 13px !important;
  line-height: 1.65 !important;
}
.bk-line {
  margin: 20px 0 !important;
}
.bkst-v {
  font-size: 28px !important;
}
.bkst-l {
  font-size: 9px !important;
  letter-spacing: 1.2px !important;
}
.bkst {
  padding: 10px 6px !important;
}

/* Glow scales with book size */
.book-glow {
  width: 260px !important;
  height: 60px !important;
  bottom: 10px !important;
  filter: blur(36px) !important;
  background: rgba(232,120,32,.22) !important;
}

/* Responsive — scale back on medium screens */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .book-wrap {
    max-width: 380px !important;
    margin: 0 auto !important;
    padding: 0 0 16px !important;
  }
  .book {
    width: 320px !important;
    height: 440px !important;
  }
  .bk-title { font-size: 28px !important; }
  .bk-sub   { font-size: 11px !important; }
  .bkst-v   { font-size: 22px !important; }
}

