/* ============================================================
   TOKENS
============================================================ */
:root {
  --navy:        #0D1B2E;
  --navy-mid:    #162540;
  --navy-light:  #1E3254;
  --gold:        #C8952A;
  --gold-bright: #E0A830;
  --gold-pale:   #F0C96A;
  --cream:       #FAF5EC;
  --cream-deep:  #F2EAD8;
  --cream-border:#E0D5BE;
  --text-dark:   #1A1208;
  --text-mid:    #3D3020;
  --text-light:  #6B5C40;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  --max-w:       780px;
  --max-w-wide:  1100px;
  --section-pad: clamp(64px, 9vw, 108px) clamp(20px, 5vw, 40px);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============================================================
   UTILITY
============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

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

.rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
  opacity: 0.7;
}

/* ============================================================
   NAV
============================================================ */
.nav {
  background: var(--navy);
  padding: 16px clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200, 149, 42, 0.2);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 11px;
  width: auto;
  display: block;
}
.nav-trust {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(250, 245, 236, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 540px) {
  .nav-trust { display: none; }
  .nav-logo-img { height: 8px; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 40px) clamp(80px, 12vw, 120px);
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  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");
  opacity: 0.4;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(200, 149, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.hero-pre {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-pale);
}
.hero-cta {
  margin-top: 40px;
}

.hero-bundle {
  margin: 48px auto 0;
  max-width: 780px;
}
.hero-bundle img {
  width: 100%;
  border-radius: 8px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4));
}

.hero-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 44px;
}
.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.7;
  color: rgba(250, 245, 236, 0.78);
  max-width: 600px;
  margin: 0 auto 44px;
}

/* ============================================================
   TWO-COLUMN BODY
============================================================ */
.page-body {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

@media (max-width: 900px) {
  .page-body {
    grid-template-columns: 1fr;
    padding-top: clamp(32px, 5vw, 56px);
  }
  .checkout-sidebar {
    display: none;
  }
  .author-quotes-strip {
    columns: 2;
  }
}

/* ============================================================
   LEFT COLUMN — CONTENT SECTIONS
============================================================ */
.content-col > section {
  margin-bottom: clamp(56px, 8vw, 88px);
}
.content-col > section:last-child {
  margin-bottom: 0;
}

/* Section headings */
.content-col h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.content-col p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-mid);
  margin-bottom: 18px;
}
.content-col p:last-child { margin-bottom: 0; }

/* Dark section variant */
.section--dark {
  background: var(--navy);
  border-radius: 12px;
  padding: clamp(36px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(200, 149, 42, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.section--dark .section-label { color: var(--gold-pale); }
.section--dark h2 { color: var(--white); }
.section--dark p { color: rgba(250, 245, 236, 0.72); }

/* Problem stats */
.stat-list {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat-list li {
  display: block;
  padding-left: 20px;
  position: relative;
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-mid);
  line-height: 1.55;
}
.stat-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.stat-list em {
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
}
.problem-close {
  margin-top: 28px;
  font-size: clamp(16px, 2vw, 18px);
  color: var(--navy);
  font-weight: 500;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

/* Mechanism pills */
.mechanism-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.feature-pill {
  background: rgba(200, 149, 42, 0.12);
  border: 1px solid rgba(200, 149, 42, 0.25);
  color: var(--gold-pale);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 7px 16px;
  border-radius: 100px;
}
.modules-headline {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 40px 0 20px;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.module-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200, 149, 42, 0.18);
  border-radius: 6px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background 0.2s, border-color 0.2s;
}
.module-card:hover {
  background: rgba(200, 149, 42, 0.07);
  border-color: rgba(200, 149, 42, 0.35);
}
.module-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
  margin-top: 1px;
}
.module-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}
.age-bands {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.age-band {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(250, 245, 236, 0.7);
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 4px;
}
.age-band strong { color: var(--white); font-weight: 500; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%) !important;
  color: var(--navy) !important;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 18px 40px;
  border-radius: 4px;
  text-decoration: none !important;
  border: none !important;
  outline: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 24px rgba(200, 149, 42, 0.35);
  -webkit-appearance: none;
  appearance: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 149, 42, 0.5);
}
.btn:active { transform: translateY(0); }
.btn--large {
  font-size: 19px;
  padding: 22px 52px;
}
/* Overrides any SamCart-injected styles on the hero anchor */
a.btn--hero,
a.btn--hero:link,
a.btn--hero:visited,
a.btn--hero:hover {
  background: linear-gradient(135deg, #C8952A 0%, #E0A830 100%) !important;
  color: #0D1B2E !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 4px 24px rgba(200, 149, 42, 0.35) !important;
  display: inline-block !important;
  padding: 22px 52px !important;
  border-radius: 4px !important;
  font-family: 'DM Sans', system-ui, sans-serif !important;
  font-size: 19px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
}
.btn-subtext {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-light);
  margin-top: 14px;
  letter-spacing: 0.01em;
}
.btn-subtext--light {
  color: rgba(250, 245, 236, 0.6) !important;
}

/* Section CTA button */
.btn-section {
  display: inline-block;
  margin-top: 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(200, 149, 42, 0.3);
}
.btn-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 149, 42, 0.45);
}

/* Inline checkout in offer section */
.inline-checkout {
  margin-top: 40px;
  background: var(--cream-deep);
  border: 1px solid var(--cream-border);
  border-radius: 10px;
  padding: 28px;
}
.inline-checkout-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
  text-align: center;
}
.inline-checkout-trust {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px !important;
}

/* Author quote */
.author-quote {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--cream-deep);
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
}
.author-quote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 23px);
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 14px !important;
}
.author-quote cite {
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: normal;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.author-quote--dark {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--gold);
}
.author-quote--dark p { color: rgba(250, 245, 236, 0.9) !important; }
.author-quote--dark cite { color: rgba(250, 245, 236, 0.45) !important; }
.author-sig {
  display: block;
  margin-top: 16px;
  max-width: 180px;
  opacity: 0.75;
  filter: brightness(0) invert(1);
}

/* Offer stack */
.core-product {
  background: var(--navy);
  border-radius: 8px;
  padding: 28px 32px;
  margin: 32px 0;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.core-icon { font-size: 32px; flex-shrink: 0; margin-top: 4px; }
.core-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.core-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.core-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--cream) !important;
  line-height: 1.6;
  margin: 0 !important;
}
.bonuses-headline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--navy);
  margin: 36px 0 20px;
  letter-spacing: -0.01em;
}
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bonus-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bonus-card:hover {
  border-color: rgba(200, 149, 42, 0.4);
  box-shadow: 0 4px 20px rgba(200, 149, 42, 0.1);
}
.bonus-check {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.bonus-check svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bonus-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.bonus-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0 !important;
}

/* Bonus value badge */
.bonus-value {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  background: rgba(200, 149, 42, 0.1);
  border: 1px solid rgba(200, 149, 42, 0.25);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 8px;
  white-space: nowrap;
  vertical-align: middle;
}

/* Price stack */
.price-stack {
  margin-top: 32px;
  border: 1px solid var(--cream-border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}
.price-stack-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--cream-border);
}
.price-stack-row span:last-child {
  color: var(--text-light);
  font-size: 13px;
}
.price-stack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--cream-border);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
}
.price-stack-total s { color: var(--text-light); font-size: 15px; }
.price-stack-you-pay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--navy);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.price-stack-you-pay span:last-child {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

/* Guarantee */
.guarantee-box {
  background: var(--cream-deep);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.guarantee-seal {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border: 2.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}
.guarantee-seal-top {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
.guarantee-seal-days {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  text-align: center;
}
.guarantee-seal-bottom {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
}
.guarantee-seal-guarantee {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
}
.guarantee-body h2 {
  font-size: clamp(22px, 3vw, 32px) !important;
  margin-bottom: 16px !important;
}
.guarantee-body p { font-size: 16px !important; }

@media (max-width: 560px) {
  .guarantee-box { flex-direction: column; align-items: center; text-align: center; }
}

/* Final CTA */
.final-cta-section {
  background: var(--navy);
  width: 100%;
  text-align: center;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 40px);
}
.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.final-cta-section h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(28px, 4.5vw, 52px) !important;
  color: var(--cream) !important;
  line-height: 1.2 !important;
}
.final-cta-section h2 em {
  color: var(--gold-bright);
  font-style: italic;
}
.final-cta-section p {
  color: rgba(250, 245, 236, 0.75) !important;
  font-size: clamp(16px, 1.8vw, 19px);
  margin-bottom: 16px;
}
.final-cta-section .btn {
  margin: 24px auto 0;
  display: inline-block;
}
.final-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px 0;
}

/* ============================================================
   RIGHT COLUMN — CHECKOUT SIDEBAR
============================================================ */
.checkout-sidebar {
  position: static;
}

.checkout-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(13, 27, 46, 0.1);
}

.checkout-card--repeat {
  margin-top: 32px;
}

.checkout-card-header {
  background: var(--navy);
  padding: 24px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.checkout-card-header::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(200, 149, 42, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.checkout-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.checkout-card-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(250, 245, 236, 0.55);
  position: relative;
  z-index: 1;
}

.checkout-includes {
  padding: 20px 24px;
  border-bottom: 1px solid var(--cream-border);
  background: var(--cream);
}
.checkout-includes-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
  display: block;
}
.checkout-item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout-item-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
}
.checkout-item-price {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 12px;
}
.checkout-item-price s {
  color: var(--text-light);
  opacity: 0.6;
}
.checkout-item-today {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
}
.checkout-item-free {
  color: #3a9e6a;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.checkout-item-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='3,8 6.5,11.5 13,4.5' fill='none' stroke='%230D1B2E' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.checkout-widget-wrap {
  padding: 24px;
}

.checkout-trust {
  padding: 16px 24px 24px;
  text-align: center;
  border-top: 1px solid var(--cream-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout-trust-item {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.checkout-trust-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--gold);
}

/* ============================================================
   AUTHOR FULL WIDTH
============================================================ */
.author-full {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 108px) clamp(20px, 5vw, 40px);
}
.author-full::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 40%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(200, 149, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.author-full-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.author-content {
  max-width: var(--max-w);
}
.author-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 600;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.author-content p {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(250, 245, 236, 0.72);
  margin-bottom: 18px;
}
.author-quotes-strip {
  columns: 3;
  column-gap: 16px;
  margin-top: clamp(40px, 6vw, 64px);
}
.quote-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  display: block;
  margin-bottom: 16px;
  break-inside: avoid;
}

/* Instagram social proof badge */
.social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  width: fit-content;
}
.social-proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
.social-proof-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.social-proof-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}
.social-proof-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 245, 236, 0.45);
}
.ig-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  background: var(--cream);
  padding: clamp(72px, 9vw, 112px) clamp(20px, 5vw, 40px);
}
.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--cream-border);
}
.faq-item {
  border-bottom: 1px solid var(--cream-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-border);
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.faq-icon::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-question[aria-expanded="true"] .faq-icon { border-color: var(--gold); background: var(--gold); }
.faq-question[aria-expanded="true"] .faq-icon::before { background: var(--navy); }
.faq-section h2 {
  font-family: var(--font-display) !important;
  color: var(--navy) !important;
  font-size: clamp(26px, 3.5vw, 40px) !important;
  font-weight: 600;
  line-height: 1.2;
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-answer.open {
  max-height: 600px;
}
.faq-answer > p {
  padding-bottom: 22px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0 !important;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #080F19;
  padding: 32px clamp(20px, 5vw, 40px);
  text-align: center;
  border-top: 1px solid rgba(200, 149, 42, 0.15);
}
.footer p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(250, 245, 236, 0.35);
  line-height: 1.8;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }
