/* ══════════════════════════════════════════════════════════
   FACELESS YOUTUBE MINDSET 2026 – SALES PAGE
   Color Palette:
     --navy:     #0d1b2a   (deep background)
     --navy-mid: #132236   (section alternation)
     --navy-lt:  #1a2f47   (cards, elevated)
     --gold:     #c9a84c   (primary accent)
     --gold-lt:  #e8c97a   (hover / highlights)
     --gold-dim: #9b7d38   (muted gold)
     --white:    #f0f4f8
     --muted:    #8899aa
   ══════════════════════════════════════════════════════════ */

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

:root {
  --navy:       #0d1b2a;
  --navy-mid:   #111f30;
  --navy-lt:    #182b40;
  --navy-card:  #1b3150;
  --gold:       #c9a84c;
  --gold-lt:    #e8c97a;
  --gold-dim:   #9b7d38;
  --gold-glow:  rgba(201,168,76,0.18);
  --white:      #f0f4f8;
  --off-white:  #d8e2ec;
  --muted:      #6b82a0;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 8px 32px rgba(0,0,0,0.45);
  --shadow-gold:0 0 40px rgba(201,168,76,0.15);
  --transition: 0.28s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-lt); }

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

.gold-text {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── LAYOUT ────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: 860px;
}

.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only { display: inline; }
}

/* ─── SHARED SECTION STYLES ─────────────────────────────── */
.section-dark {
  background: var(--navy);
  padding: 96px 0;
}

.section-mid {
  background: var(--navy-mid);
  padding: 96px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.section-label.light {
  color: rgba(201,168,76,0.85);
}

.label-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
}

.label-line.light {
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4));
}

.label-line:last-child {
  background: linear-gradient(270deg, transparent, var(--gold-dim));
}

.label-line.light:last-child {
  background: linear-gradient(270deg, transparent, rgba(201,168,76,0.4));
}

.section-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 56px;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt), var(--gold));
  background-size: 200% 200%;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(201,168,76,0.5);
  color: var(--navy);
}

.btn-primary:active {
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(ellipse at 60% 40%, #1a3055 0%, var(--navy) 65%);
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Eyebrow */
.eyebrow-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 36px;
  animation: fadeSlideDown 0.7s ease both;
}

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

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

/* Hero headline */
.hero-headline {
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
  color: var(--white);
  max-width: 860px;
  margin-bottom: 24px;
  animation: fadeSlideDown 0.8s 0.1s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--off-white);
  text-align: center;
  max-width: 600px;
  margin-bottom: 64px;
  opacity: 0.85;
  animation: fadeSlideDown 0.9s 0.2s ease both;
}

/* CTA block */
.hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  animation: fadeSlideUp 1s 0.3s ease both;
}

@media (min-width: 768px) {
  .hero-cta-block {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }
}

/* Book Mockup */
.book-mockup-wrap {
  flex-shrink: 0;
  perspective: 900px;
}

.book-mockup {
  position: relative;
  width: 200px;
  transform: rotateY(-12deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7));
}

.book-mockup:hover {
  transform: rotateY(-6deg) rotateX(2deg) scale(1.03);
}

.book-cover-img {
  width: 100%;
  border-radius: 6px 10px 10px 6px;
  display: block;
}

.book-spine {
  position: absolute;
  top: 0;
  left: -14px;
  width: 14px;
  height: 100%;
  background: linear-gradient(90deg, #0a1520, #1a2f47);
  border-radius: 6px 0 0 6px;
  transform-origin: right;
}

.book-shadow {
  position: absolute;
  bottom: -20px;
  left: -10px;
  right: -10px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.5), transparent 70%);
  filter: blur(8px);
}

/* Price + CTA */
.hero-text-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-text-side {
    align-items: flex-start;
    text-align: left;
  }
}

.price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.btn-hero {
  font-size: 1.1rem;
  padding: 18px 42px;
}

.hero-guarantee {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-guarantee i { color: var(--gold); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  animation: bounce 2.5s ease infinite;
}

.scroll-hint i { font-size: 0.9rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════════════════════
   PROBLEM SECTION
   ══════════════════════════════════════════════════════════ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 56px;
}

@media (min-width: 600px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .problem-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.problem-card {
  background: var(--navy-lt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201,168,76,0.2);
}

.problem-card--highlight {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(135deg, var(--navy-lt), #1d2e45);
}

.problem-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1.1rem;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--off-white);
  line-height: 1.65;
}

.problem-statement {
  text-align: center;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}

.problem-statement p {
  font-size: 1.1rem;
  color: var(--off-white);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   REFRAME SECTION
   ══════════════════════════════════════════════════════════ */
.reframe-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .reframe-columns { grid-template-columns: 1fr 1fr; }
}

.reframe-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reframe-block {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid transparent;
}

.reframe-block--wrong {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.07);
}

.reframe-block--right {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.25);
}

.reframe-label-small {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reframe-block--wrong .reframe-label-small { color: var(--muted); }
.reframe-block--right .reframe-label-small { color: var(--gold); }

.reframe-block p {
  font-size: 0.98rem;
  color: var(--off-white);
  line-height: 1.65;
}

.reframe-note {
  margin-top: 10px !important;
  font-weight: 600;
  font-size: 0.88rem !important;
  color: var(--muted) !important;
}

.reframe-block--right .reframe-note { color: var(--gold-dim) !important; }

.reframe-insight-box {
  background: linear-gradient(135deg, var(--navy-lt), #1d3655);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(201,168,76,0.08);
}

.insight-gold-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.insight-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
}

.reframe-insight-box > p {
  font-size: 0.98rem;
  color: var(--off-white);
  line-height: 1.65;
  margin-bottom: 12px;
}

.insight-punchline {
  font-size: 1.15rem !important;
  color: var(--gold) !important;
  font-weight: 700;
}

.insight-cta {
  font-size: 1rem !important;
  color: var(--off-white) !important;
  font-style: italic;
  margin-top: 12px !important;
}

/* ══════════════════════════════════════════════════════════
   PRODUCT SECTION
   ══════════════════════════════════════════════════════════ */
.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 768px) {
  .product-layout {
    grid-template-columns: 280px 1fr;
    gap: 64px;
  }
}

.product-book-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 40px;
}

.floating-book {
  width: 220px;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.8));
  animation: float 5s ease-in-out infinite;
}

.floating-book img {
  width: 100%;
  border-radius: 8px 12px 12px 8px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}

.product-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 6px 14px;
  border-radius: 50px;
}

.features-intro {
  font-size: 1.05rem;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.feature-item:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.2);
  transform: translateX(4px);
}

.feature-item--highlight {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.22);
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.05rem;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-text strong {
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}

.feature-text span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   AUTHOR SECTION
   ══════════════════════════════════════════════════════════ */
.author-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 768px) {
  .author-layout {
    grid-template-columns: 260px 1fr;
    gap: 64px;
  }
}

.author-avatar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.author-avatar-wrap {
  position: relative;
}

.author-avatar-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-lt), var(--navy-card));
  border: 3px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gold-dim);
  box-shadow: 0 0 40px rgba(201,168,76,0.15);
}

.author-badge {
  position: absolute;
  bottom: 0;
  right: -10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}

.author-stats {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

.author-name {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 6px;
}

.author-tagline {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.author-bio p {
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.75;
  margin-bottom: 16px;
}

.gold-quote-block {
  margin-top: 32px;
  padding: 28px 28px 28px 32px;
  background: rgba(201,168,76,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.2);
  position: relative;
  overflow: hidden;
}

.quote-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dim));
  border-radius: 4px 0 0 4px;
}

blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 10px;
}

cite {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
  margin-bottom: 14px;
}

.quote-context {
  font-size: 0.95rem;
  color: var(--off-white);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   WHAT IT'S NOT SECTION
   ══════════════════════════════════════════════════════════ */
.not-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}

.not-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
}

.not-icon {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.not-item p {
  font-size: 0.98rem;
  color: var(--off-white);
  line-height: 1.6;
}

.what-it-is-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.gold-bar-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.what-it-is-box h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 20px;
}

.what-it-is-box p {
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ══════════════════════════════════════════════════════════
   CTA / PRICE SECTION
   ══════════════════════════════════════════════════════════ */
.section-cta {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(ellipse at center, #152233 0%, var(--navy) 70%);
  overflow: hidden;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1.25;
}

/* Price comparison */
.price-comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

.price-compare-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  min-width: 130px;
  font-size: 0.88rem;
  text-align: center;
  transition: all var(--transition);
}

.price-compare-item i {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.price-compare-item.strike {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.price-compare-item.strike i { color: var(--muted); }

.price-compare-item.gold {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--white);
  text-decoration: none;
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(201,168,76,0.12);
}

.price-compare-item.gold i { color: var(--gold); }

.compare-price {
  font-weight: 700;
  font-size: 1rem;
}

/* CTA Box */
.cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  background: var(--navy-lt);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 24px;
  padding: 44px 40px;
  width: 100%;
  box-shadow: var(--shadow), 0 0 80px rgba(201,168,76,0.07);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

@media (min-width: 640px) {
  .cta-box {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}

.cta-book-mini {
  flex-shrink: 0;
  width: 120px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
}

.cta-book-mini img {
  width: 100%;
  border-radius: 4px 8px 8px 4px;
}

.cta-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (min-width: 640px) {
  .cta-details {
    align-items: flex-start;
  }
}

.cta-details h3 {
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.3;
}

.cta-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.cta-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--off-white);
}

.cta-includes li i {
  color: var(--gold);
  font-size: 0.85rem;
}

.final-price-display {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.final-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.final-price-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.btn-cta {
  font-size: 1.05rem;
  padding: 18px 40px;
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .btn-cta { width: auto; }
}

.cta-security {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-security i { color: var(--gold-dim); }

/* ══════════════════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(201,168,76,0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: var(--navy-lt);
  border: none;
  cursor: pointer;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(201,168,76,0.05);
}

.faq-item.open .faq-question {
  background: rgba(201,168,76,0.07);
  color: var(--gold-lt);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
  background: rgba(255,255,255,0.02);
}

.faq-answer p {
  padding: 0 28px;
  font-size: 0.97rem;
  color: var(--off-white);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p:first-child { padding-top: 20px; }
.faq-answer p:last-child  { padding-bottom: 24px; }

/* ══════════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════════ */
.final-cta-section {
  padding: 100px 0 80px;
}

.final-headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  text-align: center;
  color: var(--white);
  margin-bottom: 56px;
}

.two-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
  align-items: center;
}

@media (min-width: 640px) {
  .two-options {
    grid-template-columns: 1fr auto 1fr;
  }
}

.option {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}

.option--bad {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.option--good {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 0 50px rgba(201,168,76,0.08);
}

.option-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.gold-bg {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt)) !important;
  color: var(--navy) !important;
}

.option p {
  font-size: 0.98rem;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 12px;
}

.option-punchline {
  color: var(--gold) !important;
  font-size: 1rem !important;
}

.option-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-divider span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
}

.final-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-final {
  font-size: 1.05rem;
  padding: 20px 44px;
  text-align: center;
}

.final-note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: #080f18;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════ */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ══════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .section-dark,
  .section-mid,
  .section-cta,
  .final-cta-section { padding: 64px 0; }

  .hero-section { padding: 80px 0 60px; }

  .cta-box { padding: 32px 24px; }

  .what-it-is-box { padding: 28px; }

  .gold-quote-block { padding: 22px 20px 22px 24px; }

  .problem-statement { padding: 24px; }

  .product-book-col { position: static; }

  .two-options { gap: 12px; }

  .option-divider {
    transform: rotate(90deg);
    margin: 4px 0;
  }
}

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── Selection ─────────────────────────────────────────── */
::selection {
  background: rgba(201,168,76,0.25);
  color: var(--white);
}
