/* ══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════ */
:root {
  --gold:       #E85A00;
  --gold-light: #FF7520;
  --gold-pale:  #FFB070;
  --gold-glow:  rgba(232,90,0,0.20);
  --gold-line:  rgba(232,90,0,0.30);
  --ink:        #080501;
  --ink2:       #0e0802;
  --ink3:       #140b02;
  --ink4:       #1c1003;
  --cream:      #F0EAD6;
  --cream2:     #C8BFA8;
  --muted:      #7A7260;
  --border:     rgba(232,90,0,0.18);
  --display:    'Barlow Condensed', 'Arial Narrow', sans-serif;
  --sans:       'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.5;
}


/* ══ TOPBAR ══ */
.topbar {
  background: linear-gradient(90deg, var(--ink2), var(--ink3), var(--ink2));
  border-bottom: 1px solid var(--gold-line);
  text-align: center;
  padding: 11px 16px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ══ STICKY CTA ══ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(8,7,0,0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--gold-line);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta span { font-size: 1.1rem; color: var(--muted); font-family: var(--sans); }
.sticky-cta strong { color: var(--cream); font-weight: 600; }

/* ══ HERO ══ */
.hero {
  background: var(--ink);
  padding: 72px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--gold-line);
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-badge::before, .hero-badge::after {
  content: '◆';
  font-size: 0.4rem;
  color: var(--gold);
  opacity: 0.6;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  max-width: 820px;
  margin: 0 auto 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero h1 em {
  font-style: normal;
  font-weight: 800;
  color: var(--gold-light);
}
.hero h1 strong {
  font-weight: 800;
  color: var(--cream);
}
.hero-sub {
  font-size: 1.3rem;
  color: var(--cream2);
  max-width: 540px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.8;
}

/* ══ ORNAMENT ══ */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 40px;
  max-width: 320px;
}
.ornament-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-line)); }
.ornament-line.r { background: linear-gradient(90deg, var(--gold-line), transparent); }
.ornament-diamond { color: var(--gold); font-size: 0.55rem; }

/* ══ VSL ══ */
.vsl-wrap {
  max-width: 840px;
  margin: 0 auto 48px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--gold-line),
    0 0 0 4px rgba(8,7,0,0.8),
    0 0 0 5px var(--gold-line),
    0 40px 100px rgba(0,0,0,0.8);
}
.vsl-wrap iframe, .vsl-wrap video {
  display: block; width: 100%; aspect-ratio: 16/9; border: none; background: #000;
}
.vsl-play {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 0 50px var(--gold-glow);
}
.vsl-play svg { margin-left: 5px; }
.vsl-caption {
  font-size: 1.05rem;
  color: var(--cream2);
  letter-spacing: 0.08em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}
.vsl-thumb-link {
  display: block; position: relative; aspect-ratio: 16/9; text-decoration: none;
}
.vsl-thumb-img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: filter 0.35s;
}
.vsl-thumb-link:hover .vsl-thumb-img { filter: brightness(0.7); }
.vsl-thumb-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: rgba(0,0,0,0.38); transition: background 0.35s;
}
.vsl-thumb-link:hover .vsl-thumb-overlay { background: rgba(0,0,0,0.58); }
.vsl-thumb-link:hover .vsl-play {
  transform: scale(1.1);
  box-shadow: 0 0 70px rgba(232,90,0,0.65);
}

/* ══ COUNTDOWN ══ */
.countdown-wrap { margin-bottom: 44px; }
.countdown-label {
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  font-family: var(--sans);
}
.countdown { display: inline-flex; gap: 10px; }
.cd-item {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 14px 20px;
  min-width: 76px;
  text-align: center;
}
.cd-item .num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.cd-item .unit {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
  display: block;
}

/* ══ BUTTONS ══ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #CC4400 0%, #FF6600 40%, #FF9944 60%, #E05000 100%);
  background-size: 200% 100%;
  color: #0d0a00;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 17px 40px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 30px var(--gold-glow);
  transition: background-position 0.4s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,90,0,0.45);
}
.btn-primary.btn-lg { font-size: 1.2rem; padding: 22px 56px; }
.btn-sub {
  display: block;
  font-size: 1rem;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.05em;
}

/* ══ SECTIONS ══ */
section { padding: 96px 20px; }
.container { max-width: 860px; margin: 0 auto; }
.container-sm { max-width: 640px; margin: 0 auto; }

.section-label {
  font-family: var(--sans);
  font-size: 1.15rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 14px;
}
h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--cream);
}
h2 span { color: var(--gold-light); font-weight: 800; }
h2 strong { font-weight: 800; color: var(--cream); }

/* ══ DIVIDER ══ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-line) 30%, var(--gold-line) 70%, transparent 100%);
}

/* ══ PAIN SECTION ══ */
.pain-section { background: var(--ink2); }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.pain-card {
  background: var(--ink3);
  padding: 32px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.pain-card:hover { background: var(--ink4); }
.pain-icon {
  width: 34px; height: 34px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--display);
}
.pain-card p { font-size: 1.15rem; color: var(--cream2); line-height: 1.6; }

/* ══ TRUTH SECTION ══ */
.truth-section { background: var(--ink); }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.pillar {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 26px;
  text-align: center;
  position: relative;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pillar-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 14px;
}
.pillar h3 { font-family: var(--sans); font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; color: var(--cream); letter-spacing: 0.02em; }
.pillar p { font-size: 1.05rem; color: var(--muted); line-height: 1.6; }

.highlight-box {
  background: linear-gradient(135deg, var(--ink2), var(--ink3));
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  padding: 36px 40px;
  text-align: center;
  margin-top: 48px;
  position: relative;
}
.highlight-box::before, .highlight-box::after {
  content: '◆';
  position: absolute;
  color: var(--gold);
  font-size: 0.55rem;
  opacity: 0.5;
}
.highlight-box::before { top: 14px; left: 50%; transform: translateX(-50%); }
.highlight-box::after { bottom: 14px; left: 50%; transform: translateX(-50%); }
.highlight-box p {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.6;
}
.highlight-box strong { color: var(--gold-light); }

/* ══ PATTERN SECTION ══ */
.pattern-section { background: var(--ink2); }
.pattern-list {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.pattern-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
  color: var(--cream2);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.pattern-list li:last-child { border-bottom: none; }
.pattern-list li:hover { background: var(--ink3); }
.pattern-list li::before {
  content: '—';
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  margin-top: 1px;
}
.callout-bold {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--cream);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 36px 0;
  line-height: 1.6;
}

/* ══ TODAY SECTION ══ */
.today-section { background: var(--ink); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.col-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
}
.col-card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.col-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.col-card ul li { font-size: 1.02rem; color: var(--cream2); display: flex; gap: 12px; align-items: flex-start; line-height: 1.5; }
.col-card ul li::before { content: '×'; color: var(--gold); font-weight: 300; flex-shrink: 0; font-size: 1.1rem; line-height: 1.2; }
.col-card.consequences ul li::before { content: '↓'; color: var(--muted); font-size: 0.9rem; margin-top: 2px; }

/* ══ SOLUTION SECTION ══ */
.solution-section { background: var(--ink); }
.solution-intro { font-size: 1.25rem; color: var(--cream2); margin-bottom: 40px; text-align: center; }
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 56px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.solution-item {
  background: var(--ink2);
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.solution-item:hover { background: var(--ink3); }
.check-circle {
  width: 28px; height: 28px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
}
.solution-item p { font-size: 1.02rem; color: var(--cream2); line-height: 1.55; }

/* ══ MENTOR SECTION ══ */
.mentor-section { background: var(--ink2); }
.mentor-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
.mentor-photo-frame { position: relative; }
.mentor-photo-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  pointer-events: none;
}
.mentor-photo-frame::after {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(232,90,0,0.09);
  border-radius: 4px;
  pointer-events: none;
}
.mentor-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--ink3);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.mentor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: contrast(1.05) brightness(0.96);
}
.mentor-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(8,7,0,0.5) 100%);
}
.mentor-content { padding-top: 8px; }
.mentor-name {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.mentor-title {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mentor-story { color: var(--cream2); font-size: 1.15rem; margin-bottom: 20px; line-height: 1.75; }
.mentor-highlight {
  background: transparent;
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 20px;
  font-family: var(--display);
  font-size: 1rem;
  margin-bottom: 32px;
  color: var(--cream);
  line-height: 1.6;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}
.stat-box {
  background: var(--ink3);
  padding: 18px 14px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.stat-num {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
}
.stat-label { font-size: 0.95rem; color: var(--muted); line-height: 1.3; margin-top: 4px; letter-spacing: 0.03em; }

/* ══ DAYS SECTION ══ */
.days-section { background: var(--ink); }
.days-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.day-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.day-header {
  background: linear-gradient(135deg, #1c0c00, #2a1100);
  border-bottom: 1px solid var(--gold-line);
  padding: 22px 24px;
  position: relative;
}
.day-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.day-num {
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.day-title {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 6px;
  color: var(--cream);
}
.day-body { padding: 24px; }
.day-body ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.day-body ul li {
  font-size: 1rem;
  color: var(--cream2);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.day-body ul li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 8px;
}

/* ══ DIFFERENTIALS ══ */
.diff-section { background: var(--ink2); }
.diff-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 48px 0;
}
.diff-col { border-radius: 4px; padding: 32px; }
.diff-col.others {
  background: var(--ink3);
  border: 1px solid var(--border);
  opacity: 0.65;
}
.diff-col.us {
  background: linear-gradient(145deg, #1e0d00, #261000);
  border: 1px solid var(--gold-line);
}
.diff-col h3 {
  font-family: var(--sans);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.diff-col.others h3 { color: var(--muted); }
.diff-col.us h3 { color: var(--gold); }
.diff-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.diff-col ul li { font-size: 1.02rem; display: flex; gap: 12px; align-items: flex-start; }
.diff-col.others ul li { color: var(--muted); }
.diff-col.others ul li::before { content: '×'; color: #444; flex-shrink: 0; font-size: 1rem; line-height: 1.3; font-weight: 300; }
.diff-col.us ul li { color: var(--cream2); }
.diff-col.us ul li::before { content: '✓'; color: var(--gold-light); font-size: 0.8rem; flex-shrink: 0; margin-top: 3px; }

/* ══ SOCIAL PROOF ══ */
.proof-section { background: var(--ink); }
.proof-placeholder {
  background: var(--ink2);
  border: 1px dashed var(--border);
  border-radius: 4px;
  padding: 70px 30px;
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: 40px;
}
.proof-placeholder .big { font-size: 1.8rem; margin-bottom: 14px; opacity: 0.4; }

/* ══ BONUSES ══ */
.bonus-section { background: var(--ink2); }
.bonus-list { display: flex; flex-direction: column; gap: 1px; margin-top: 40px; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.bonus-item {
  background: var(--ink3);
  border-bottom: 1px solid var(--border);
  padding: 26px 28px;
  display: flex;
  gap: 22px;
  align-items: center;
  transition: background 0.2s;
}
.bonus-item:last-child { border-bottom: none; }
.bonus-item:hover { background: var(--ink4); }
.bonus-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--display);
}
.bonus-item h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 4px; color: var(--cream); }
.bonus-item p { font-size: 1.1rem; color: var(--muted); }

/* ══ COST ══ */
.cost-section { background: var(--ink); }
.cost-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin: 40px 0; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.cost-list li {
  display: flex; gap: 16px; align-items: flex-start;
  font-size: 1.2rem; color: var(--cream2);
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.cost-list li:last-child { border-bottom: none; }
.cost-list li:hover { background: var(--ink2); }
.cost-list li::before { content: '—'; color: var(--muted); font-weight: 300; flex-shrink: 0; }

.price-anchor {
  background: var(--ink2);
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.price-anchor::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.price-anchor p { font-size: 1.02rem; color: var(--cream2); margin-bottom: 20px; line-height: 1.6; }
.price-anchor strong { color: var(--cream); }
.price-big {
  font-family: var(--display);
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.price-label { font-size: 1rem; color: var(--muted); margin-top: 8px; margin-bottom: 32px; letter-spacing: 0.06em; }

/* ══ GUARANTEE ══ */
.guarantee-section { background: var(--ink2); }
.guarantee-inner { display: flex; gap: 48px; align-items: center; }
.guarantee-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 6px 24px rgba(200, 146, 42, 0.35));
}
.guarantee-text h2 { font-size: 1.8rem; }
.guarantee-text p { color: var(--cream2); font-size: 1.2rem; margin-top: 16px; line-height: 1.7; }

/* ══ URGENCY ══ */
.urgency-section { background: var(--ink); }
.urgency-box {
  background: linear-gradient(145deg, #1e0d00, #261000);
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  padding: 56px 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.urgency-box::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.urgency-box h2 { font-size: 1.7rem; margin-bottom: 16px; }
.urgency-box p { color: var(--cream2); font-size: 1.2rem; margin-bottom: 36px; line-height: 1.7; }

/* ══ CTA SECTION ══ */
.cta-section {
  background: var(--ink);
  padding: 20px 20px 110px;
  text-align: center;
}
.cta-section h2 { margin-bottom: 10px; }
.cta-section .sub { color: var(--cream2); font-size: 1.2rem; margin-bottom: 44px; font-weight: 300; }
.cta-box {
  background: var(--ink2);
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  padding: 52px 44px;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.trust-badges { display: flex; justify-content: center; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 7px; font-size: 1rem; color: var(--muted); letter-spacing: 0.04em; }
.trust-badge svg { opacity: 0.5; }

/* ══ FOOTER ══ */
footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 36px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 720px) {
  .pain-grid, .two-col, .solution-grid, .days-grid, .diff-compare, .pillars, .stats-grid { grid-template-columns: 1fr; }
  .mentor-inner { grid-template-columns: 1fr; }
  .mentor-photo { aspect-ratio: 4/3; }
  .guarantee-inner { flex-direction: column; text-align: center; }
  .countdown { gap: 8px; }
  .cd-item { min-width: 62px; padding: 12px 14px; }
  section { padding: 70px 20px; }
  footer { padding-bottom: 90px; }
  .section-label {
    font-size: clamp(1.35rem, 7vw, 2rem);
    letter-spacing: 0.12em;
    text-align: center;
  }
}

/* ══ ANIMATIONS ══ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══ PULSE ══ */
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 30px var(--gold-glow); }
  50% { box-shadow: 0 6px 50px rgba(232,90,0,0.5); }
}
.btn-pulse { animation: pulse 2.5s infinite; }
