/* ═══════════════════════════════════════════════════════════
   FREEDOM OF MONEY — styles.css
   Conversion-focused, clean, premium sales page
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --gold:      #C9A84C;
  --gold-lt:   #E8C97A;
  --gold-dim:  rgba(201, 168, 76, .12);
  --black:     #07060A;
  --surface-1: #0D0C11;
  --surface-2: #131118;
  --surface-3: #1A1820;
  --text:      #C4BDB5;
  --muted:     #6A6460;
  --white:     #F0EAE0;
  --max:       1080px;
  --nav-h:     64px;
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
  --radius:    2px;
  --ease:      cubic-bezier(.22, 1, .36, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

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

a { color: var(--gold); text-decoration: none; }
img { display: block; max-width: 100%; }
strong { font-weight: 500; color: var(--white); }

/* ── Utility ──────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* Pulse dot */
.pulse {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-blink 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius);
  padding: 14px 28px;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-lt);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, .28);
}

.btn-xl {
  font-size: 15px;
  padding: 18px 44px;
  letter-spacing: 1.5px;
}
.btn-sm {
  font-size: 12px;
  padding: 11px 20px;
}

/* ── Navigation ───────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 800;
  background: rgba(7, 6, 10, .96);
  border-bottom: 1px solid rgba(201, 168, 76, .12);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.nav-brand { display: flex; flex-direction: column; gap: 2px; }
.nav-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  line-height: 1;
}
.nav-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .4);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .6);
  transition: color .2s;
  font-weight: 400;
}
.nav-link:hover { color: var(--gold); }

.nav-cta {
  font-size: 12px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius);
}
.nav-cta:hover {
  background: var(--gold-lt);
  color: var(--black);
  transform: none;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(201, 168, 76, .3);
  padding: 9px 10px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  transition: .2s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(7, 6, 10, .98);
  border-bottom: 1px solid rgba(201, 168, 76, .12);
  padding: 20px 24px 28px;
  z-index: 799;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .75);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: color .2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }
.mob-cta {
  margin-top: 12px;
  background: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 500 !important;
  text-align: center;
  padding: 14px !important;
  border: none !important;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  background: var(--black);
}

.hero-visual {
  position: relative;
  height: calc(100svh - var(--nav-h));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 0 40px 0;
}

.hero-cover {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
}

.hero-cover-shadow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 55%, var(--black) 100%),
    linear-gradient(to bottom, var(--black) 0%, transparent 8%, transparent 92%, var(--black) 100%),
    linear-gradient(to left, transparent 70%, rgba(7,6,10,.3) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-copy {
  padding: 60px 60px 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 16px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 153, 0, .07);
  border: 1px solid rgba(255, 153, 0, .2);
  padding: 7px 14px;
  margin-bottom: 20px;
  border-radius: var(--radius);
}
.stars { color: #ff9900; font-size: 14px; letter-spacing: 2px; }
.rating-text { font-size: 12px; color: var(--white); }
.rating-text a { color: inherit; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 20px;
}
.hero-title em { color: var(--gold); font-style: italic; display: block; }

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 20px;
}

.hero-byline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .5px;
  margin-bottom: 28px;
}
.hero-byline strong { color: var(--white); }

.hero-cta {
  width: 100%;
  max-width: 420px;
  font-size: 14px;
  padding: 17px 32px;
  box-shadow: 0 8px 32px rgba(201, 168, 76, .3);
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-cta:hover { box-shadow: 0 14px 44px rgba(201, 168, 76, .42); }

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}
.hero-trust span {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(201, 168, 76, .55);
  text-transform: uppercase;
}

/* ── Proof Bar ────────────────────────────────────────────── */
.proof-bar {
  background: var(--surface-1);
  border-top: 1px solid rgba(201, 168, 76, .08);
  border-bottom: 1px solid rgba(201, 168, 76, .08);
}
.proof-bar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .05);
}
.proof-item:last-child { border-right: none; }
.proof-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.proof-lbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Why This Matters ─────────────────────────────────────── */
.why-section {
  padding: 100px 0;
  background: var(--surface-2);
}
.why-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.why-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.why-title em { color: var(--gold); font-style: italic; }

.why-body {
  margin-bottom: 36px;
}
.why-body p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.why-body p:last-child { margin-bottom: 0; }
.why-body strong { color: var(--white); }

.why-quote {
  background: rgba(201, 168, 76, .06);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  position: relative;
}
.why-quote::before {
  content: '"';
  position: absolute;
  top: -10px; left: 20px;
  font-family: var(--serif);
  font-size: 72px;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
}
.why-quote p {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 12px;
}
.why-quote cite {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-family: var(--sans);
  font-weight: 500;
}

/* ── What You'll Learn ────────────────────────────────────── */
.learn-section {
  padding: 100px 0;
  background: var(--surface-1);
}
.learn-list {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .07);
}
.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .2s;
}
.learn-item:last-child { border-bottom: none; }
.learn-item:hover { background: rgba(201, 168, 76, .03); }
.learn-check {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  font-weight: 500;
}
.learn-title {
  display: block;
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 4px;
}
.learn-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Social Proof ─────────────────────────────────────────── */
.proof-section {
  padding: 100px 0;
  background: var(--surface-2);
}

.reader-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  margin: 20px 0 48px;
}
.reader-count strong {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--gold);
  font-weight: 400;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  margin-top: 32px;
}
.testi-card {
  background: var(--surface-2);
  padding: 36px 32px;
  transition: background .2s;
}
.testi-card:hover { background: var(--surface-3); }
.testi-stars { color: #ff9900; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 16px;
}
.testi-cite {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ── What You Get ─────────────────────────────────────────── */
.get-section {
  padding: 100px 0;
  background: var(--surface-1);
}
.get-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  margin-top: 48px;
}
.get-item {
  background: var(--surface-1);
  padding: 36px 28px;
  transition: background .2s;
}
.get-item:hover { background: var(--surface-2); }
.get-icon {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--gold);
}
.get-item h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.get-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Mid CTA ──────────────────────────────────────────────── */
.cta-section {
  padding: 96px 0;
  background: var(--surface-3);
  border-top: 1px solid rgba(201, 168, 76, .1);
  border-bottom: 1px solid rgba(201, 168, 76, .1);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { max-width: 620px; position: relative; }
.cta-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-title em { color: var(--gold); font-style: italic; }
.cta-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}
.amz-badge {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: rgba(255, 153, 0, .65);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section {
  padding: 100px 0;
  background: var(--surface-2);
}
.faq-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 0 22px;
}
.faq-a[hidden] { display: none; }
.faq-a a { color: var(--gold); }

/* ── Final CTA ────────────────────────────────────────────── */
.final-cta {
  padding: 120px 0;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,168,76,.06) 0%, transparent 62%);
  pointer-events: none;
}
.final-inner { max-width: 600px; position: relative; }
.final-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.final-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}
.final-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.final-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .45);
}
.final-guarantees .sep { opacity: .3; }
.final-meta {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 28px;
  opacity: .6;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-note {
  font-size: 11px;
  color: var(--muted);
  opacity: .35;
}

/* ── Sticky Mobile Bar ────────────────────────────────────── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(7, 6, 10, .97);
  border-top: 1px solid rgba(201, 168, 76, .18);
  padding: 10px 16px;
  z-index: 800;
  align-items: center;
  gap: 10px;
  transform: translateY(100%);
  transition: transform .3s var(--ease);
  backdrop-filter: blur(12px);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sticky-text strong {
  font-size: 13px;
  color: var(--white);
}
.sticky-text span {
  font-size: 11px;
  color: var(--muted);
}

/* ── Cookie Banner ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--surface-2);
  border-top: 1px solid rgba(201, 168, 76, .18);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
  box-shadow: 0 -8px 32px rgba(0,0,0,.5);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  min-width: 220px;
}
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border: none;
  cursor: pointer;
  transition: .2s;
  border-radius: var(--radius);
}
.cookie-accept { background: var(--gold); color: var(--black); }
.cookie-accept:hover { background: var(--gold-lt); }
.cookie-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.12);
}
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (960px)
══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-visual {
    height: 72vw;
    min-height: 260px;
    order: -1;
    justify-content: center;
    padding: 0;
  }
  .hero-cover-shadow {
    background:
      linear-gradient(to bottom, var(--black) 0%, transparent 8%, transparent 85%, var(--black) 100%);
  }
  .hero-copy {
    padding: 28px 24px 52px;
  }
  .hero-cta { max-width: 100%; }

  .proof-bar .wrap { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: none; }

  .testimonials { grid-template-columns: 1fr; gap: 0; }
  .get-grid { grid-template-columns: 1fr 1fr; }

  .sticky-bar { display: flex; }

  footer .wrap { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-note { display: none; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (600px)
══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --nav-h: 56px; }

  .nav-sub { display: none; }
  .nav-inner, .wrap { padding: 0 16px; }

  .hero-visual { height: 82vw; min-height: 200px; }
  .hero-copy { padding: 20px 16px 44px; }
  .hero-title { font-size: clamp(32px, 11vw, 52px); }
  .hero-sub { font-size: 14px; }
  .hero-cta { font-size: 13px; padding: 15px 20px; }

  .why-section, .learn-section, .proof-section,
  .get-section, .cta-section, .faq-section, .final-cta { padding: 64px 0; }

  .learn-item { padding: 20px 16px; gap: 14px; }

  .get-grid { grid-template-columns: 1fr; gap: 0; }
  .get-item { padding: 28px 20px; }

  .proof-section .wrap { padding: 0 16px; }

  .btn-xl { font-size: 13px; padding: 16px 24px; width: 100%; }

  .final-guarantees .sep { display: none; }
  .final-guarantees { flex-direction: column; gap: 6px; }

  .cookie-banner { padding: 14px 16px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }

  .faq-section .wrap { padding: 0 16px; }
  .footer-links { gap: 12px; }
  .footer-links a { font-size: 10px; }
}

/* ── Blog Preview Section (homepage) ─────────────────────── */
.blog-preview-section {
  padding: 88px 0;
  background: var(--surface-2);
  border-top: 1px solid rgba(255,255,255,.06);
}
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  margin-top: 40px;
}
.blog-preview-card {
  background: var(--surface-2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .2s;
}
.blog-preview-card:hover { background: var(--surface-3); }
.bp-date {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.bp-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}
.bp-title a { color: var(--white); transition: color .2s; }
.bp-title a:hover { color: var(--gold); }
.bp-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.bp-link {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 4px;
}

@media (max-width: 960px) {
  .blog-preview-grid { grid-template-columns: 1fr; gap: 0; }
  .blog-preview-section { padding: 60px 0; }
}

/* ── Hero meta row ─────────────────────────────────────────── */
.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-meta-item {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
}
.hero-meta-sep { color: rgba(255,255,255,.15); }

/* ── Blog Preview Section ──────────────────────────────────── */
.blog-preview-section {
  padding: 88px 0;
  background: var(--surface-2);
  border-top: 1px solid rgba(255,255,255,.06);
}
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  margin-top: 40px;
}
.blog-preview-card {
  background: var(--surface-2);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .2s;
}
.blog-preview-card:hover { background: var(--surface-3); }
.bp-date { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); }
.bp-title { font-family:var(--serif); font-size:17px; font-weight:400; line-height:1.3; }
.bp-title a { color:var(--white); transition:color .2s; }
.bp-title a:hover { color:var(--gold); }
.bp-excerpt { font-size:13px; color:var(--muted); line-height:1.65; flex:1; }
.bp-link { font-size:11px; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold); font-weight:500; margin-top:4px; }

@media (max-width:960px) {
  .blog-preview-grid { grid-template-columns:1fr; gap:0; }
  .blog-preview-section { padding:60px 0; }
}

/* ── "Who Is This For" Section ─────────────────────────────── */
.for-section {
  padding: 96px 0;
  background: var(--surface-1);
  border-top: 1px solid rgba(255,255,255,.05);
}

.for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  margin-top: 48px;
}

.for-item {
  background: var(--surface-1);
  padding: 28px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background .2s;
}
.for-item:hover { background: var(--surface-2); }

.for-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.for-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.4;
}

.for-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 960px) {
  .for-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .for-grid { grid-template-columns: 1fr; }
  .for-section { padding: 64px 0; }
}

/* ── Exit Intent Popup ─────────────────────────────────────── */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  z-index: 9990;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.exit-popup-overlay.show {
  display: flex;
}

.exit-popup-box {
  background: var(--surface-2);
  border: 1px solid rgba(201, 168, 76, .2);
  max-width: 520px;
  width: 100%;
  padding: 44px 40px 40px;
  position: relative;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
  animation: popup-in .35s var(--ease);
}
@keyframes popup-in {
  from { opacity: 0; transform: translateY(24px) scale(.96); }
  to   { opacity: 1; transform: none; }
}

.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
  padding: 4px 8px;
  font-family: var(--sans);
}
.exit-popup-close:hover { color: var(--white); }

.exit-popup-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.exit-popup-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.exit-popup-body {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 300;
}

.exit-popup-trust {
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
  letter-spacing: .5px;
}

@media (max-width: 600px) {
  .exit-popup-box { padding: 36px 24px 32px; }
}
