/* ============================================
   Masterclass Vault — 7-Section LP
   ============================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FFFFFF;
  --bg-warm: #FAF9F5;
  --bg-warm-2: #F5F3ED;
  --text: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-muted: #7A7A7A;
  --gold: #C9A651;
  --gold-dark: #A88838;
  --gold-light: #E8D189;
  --gold-tint: rgba(201, 166, 81, 0.08);
  --gold-tint-2: rgba(201, 166, 81, 0.14);
  --border: #E8E4D8;
  --border-dark: #D4CFC0;
  --black: #0F0F0F;
  --black-hover: #2A2A2A;
  --red: #E11D48;
  --green: #16A34A;
  --f-cond: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;
  --f-body: 'Barlow', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--gold-dark); }

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--f-cond);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--text);
}
h1 { font-size: clamp(38px, 6.5vw, 68px); margin-bottom: 24px; }
h2 { font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 20px; }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
p { margin-bottom: 16px; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-mid);
  max-width: 780px;
  margin: 0 auto 32px;
}
.microcopy {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
  letter-spacing: 0.03em;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  background: var(--black);
  color: #fff;
  font-family: var(--f-cond);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 4px;
  border: 2px solid var(--black);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.2s ease;
}
.btn:hover {
  background: var(--black-hover);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(201, 166, 81, 0.28);
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-md { padding: 14px 28px; font-size: 16px; }
.btn-lg { padding: 18px 40px; font-size: 20px; }

.center-cta {
  text-align: center;
  margin-top: 40px;
}

/* --- 1. Nav --- */
.nav {
  padding: 18px 0;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  height: 40px;
  width: auto;
}

/* --- 2. Hero --- */
.hero {
  text-align: center;
  padding: 80px 0 90px;
  background:
    radial-gradient(ellipse at top, var(--gold-tint), transparent 65%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--gold);
  background: var(--gold-tint);
  color: var(--gold-dark);
  border-radius: 999px;
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 28px;
}

.stars-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-family: var(--f-body);
}
.stars-line .stars {
  color: var(--gold);
  font-size: 26px;
  letter-spacing: 3px;
  line-height: 1;
}
.stars-line .stars-text {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.vsl-player {
  max-width: 860px;
  margin: 32px auto 36px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14), 0 0 0 1px var(--border);
}

/* --- 3. Trust Bar (stats + testimonials) --- */
.trust {
  padding: 80px 0;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 780px;
  margin: 0 auto 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
}
.stat-num {
  font-family: var(--f-cond);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 52px);
  color: var(--gold-dark);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}
/* Video testimonials — portrait 9:16 */
.video-testimonials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.video-testimonials.video-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  gap: 20px;
}
.video-testimonials.video-3 .v-name { font-size: 17px; }
.video-testimonials.video-3 .v-role { font-size: 13px; margin-top: 4px; }
.video-testimonials.video-3 .v-caption { padding: 16px 16px; }
.video-testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.video-testimonial:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.v-embed {
  position: relative;
  padding-top: 177.78%; /* 9:16 portrait */
  background: #000;
}
.v-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.v-caption {
  padding: 14px 14px;
  border-top: 1px solid var(--border);
  background: var(--bg-warm);
  text-align: center;
}
.v-name {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.v-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
  letter-spacing: 0.02em;
}

/* --- 3b. Recent Reviews (bento grid) --- */
.reviews {
  padding: 90px 0;
  background: var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.reviews > .container > h2 {
  margin-bottom: 50px;
}
/* Collage / column-count masonry — each tile at natural aspect ratio */
.reviews-bento {
  column-count: 4;
  column-gap: 8px;
  max-width: 1080px;
  margin: 0 auto;
}
.review-tile {
  break-inside: avoid;
  margin: 0 0 8px 0;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: transparent;
  cursor: pointer;
  display: block;
  width: 100%;
}
.review-tile:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  z-index: 2;
  position: relative;
}
.review-tile img {
  width: 100%;
  height: auto;
  display: block;
}
/* Legacy size classes neutralised for column-count mode */
.review-tile.hero,
.review-tile.wide,
.review-tile.tall,
.review-tile.square {
  grid-column: unset;
  grid-row: unset;
}

@media (max-width: 900px) {
  .reviews-bento { column-count: 2; }
}
@media (max-width: 600px) {
  .reviews-bento { column-count: 1; }
}

/* --- 3c. Founder --- */
.founder {
  padding: 90px 0;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}
.founder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: center;
}
.founder-photo-panel {
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--border-dark);
  background:
    radial-gradient(ellipse at 50% 15%, var(--gold-tint-2), transparent 62%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg-warm-2) 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
}
.founder-photo-panel img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -1px;
}
.founder-followers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.founder-followers svg {
  width: 19px;
  height: 19px;
  fill: var(--gold-dark);
  flex-shrink: 0;
}

.founder-copy .eyebrow { margin-bottom: 14px; }
.founder-copy h2 { margin-bottom: 18px; }
.founder-lede {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 26px;
}
.founder-creds {
  list-style: none;
  border-top: 1px solid var(--border-dark);
}
.founder-creds li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}
.cred-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-tint-2);
  flex-shrink: 0;
  transform: translateY(-1px);
}

.founder-clients {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border-dark);
}
.clients-label {
  text-align: center;
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 30px;
}
/* flex, not grid — a wrapped last row centres itself instead of orphaning left */
.client-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 38px;
}
.client-wall img {
  flex: 0 0 auto;
  max-width: 118px;
  max-height: 46px;
  width: auto;
  height: auto;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.client-wall img:hover { opacity: 0.9; }

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }
  .founder-photo { max-width: 320px; margin: 0 auto; }
  .founder-lede { max-width: 560px; margin-left: auto; margin-right: auto; }
  .founder-creds { max-width: 520px; margin: 0 auto; text-align: left; }
  .client-wall { gap: 24px 30px; }
}
@media (max-width: 480px) {
  .client-wall { gap: 22px 24px; }
  .client-wall img { max-width: 92px; max-height: 36px; }
}

/* --- 4. Value Stack — narrower, centered, scannable --- */
.stack {
  padding: 90px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.stack .container {
  max-width: 680px;
}
.stack-header {
  text-align: center;
  margin-bottom: 32px;
}
.stack-header span {
  display: inline-block;
  padding: 10px 22px;
  background: var(--gold-tint-2);
  color: var(--text);
  font-family: var(--f-cond);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
}
.stack-group {
  text-align: left;
  margin: 28px 0 6px;
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--text);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.stack-group:first-of-type { margin-top: 0; }
.stack-list { list-style: none; text-align: left; }
.stack-list li {
  padding: 12px 0;
}
.stack-list li:last-child { border-bottom: 0; }
.stack-title {
  font-size: 17px;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.stack-title strong {
  font-weight: 900;
  color: var(--text);
  font-size: 18px;
  letter-spacing: -0.01em;
  -webkit-text-stroke: 0.4px currentColor;
}
.stack-title u {
  text-decoration: underline;
  text-decoration-color: var(--text);
  text-decoration-thickness: 1.5px;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}
.stack-val {
  color: var(--red);
  font-weight: 900;
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.01em;
  -webkit-text-stroke: 0.5px var(--red);
}
.stack-desc {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.45;
  padding-left: 26px;
}
.bonus-header {
  text-align: center;
  margin: 40px 0 8px;
}
.bonus-header span {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gold);
  color: white;
  font-family: var(--f-cond);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
}
.stack-list.bonus li .stack-desc em {
  color: var(--text);
  font-style: italic;
  font-weight: 700;
}
.totals {
  margin-top: 50px;
  padding: 32px;
  background: var(--bg-warm);
  border: 2px solid var(--gold);
  border-radius: 12px;
  text-align: center;
}
.totals-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--text);
  padding: 6px 0;
  text-transform: uppercase;
}
.strike-red {
  color: var(--red);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  font-weight: 900;
}
.totals-row.big {
  font-size: clamp(32px, 5vw, 48px);
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border-dark);
}
.price-green {
  color: var(--green);
  font-family: var(--f-cond);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 68px);
  line-height: 1;
}

/* --- 5. Guarantee + Checkout (combined) --- */
.checkout {
  padding: 90px 0;
  background:
    radial-gradient(ellipse at top, var(--gold-tint), transparent 60%),
    var(--bg-warm-2);
  border-bottom: 1px solid var(--border);
}
.guarantee-inline {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}
.guarantee-badge {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gold);
  color: #fff;
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  border-radius: 999px;
  margin-bottom: 22px;
}
.guarantee-inline h2 { margin-bottom: 18px; }
.guarantee-inline p { font-size: 17px; }
.checkout-widget {
  background: var(--bg);
  border-radius: 12px;
  padding: 24px;
  max-width: 720px;
  margin: 0 auto;
  min-height: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 0 0 1px var(--border);
}

/* --- 6. FAQ --- */
.faq {
  padding: 80px 0;
  background: var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.faq h2 { margin-bottom: 36px; }
.faq .eyebrow { text-align: center; }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}
.faq-list details {
  border-bottom: 1px solid var(--border-dark);
  padding: 22px 0;
}
.faq-list summary {
  cursor: pointer;
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  list-style: none;
  padding-right: 28px;
  position: relative;
  transition: color 0.15s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold-dark);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list summary:hover { color: var(--gold-dark); }
.faq-list details p {
  margin-top: 14px;
  font-size: 15px;
}

/* --- 7. Footer --- */
footer {
  padding: 40px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo {
  height: 36px;
  width: auto; /* REQUIRED: the img carries intrinsic width/height attributes (added 2026-08-17
                  for CLS). Without width:auto the 1080px attribute wins and the logo stretches. */
  opacity: 0.85;
}
footer p {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}

/* --- Checkout Modal (popup buy) --- */
.checkout-modal {
  position: fixed;
  inset: 0;
  background: rgba(15,15,15,0.65);
  z-index: 300;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  backdrop-filter: blur(6px);
}
.checkout-modal.open { display: flex; }
.checkout-modal-inner {
  background: var(--bg);
  border-radius: 14px;
  max-width: 560px;
  width: 100%;
  padding: 36px 32px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative;
  margin: auto 0;
  animation: modalIn 0.2s ease-out;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.checkout-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: 0;
  font-size: 22px;
  color: var(--text-muted);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.15s ease, color 0.15s ease;
  line-height: 1;
}
.checkout-modal-close:hover {
  background: var(--bg-warm);
  color: var(--text);
}
.checkout-modal-header {
  text-align: center;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.checkout-modal-logo {
  height: 42px;
  width: auto; /* same reason as .footer-logo — see note there */
  margin-bottom: 16px;
}
.checkout-modal-header h3 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 8px;
  line-height: 1.1;
}
.checkout-modal-header p {
  color: var(--text-mid);
  font-size: 14px;
  margin: 0;
}
.checkout-modal-widget {
  min-height: 260px;
  margin-bottom: 20px;
}
.checkout-modal-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .checkout-modal { padding: 12px; }
  .checkout-modal-inner { padding: 30px 20px 20px; border-radius: 10px; }
  .checkout-modal-header h3 { font-size: 20px; }
  .checkout-modal-trust { font-size: 11px; gap: 6px; }
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  animation: lbFadeIn 0.15s ease-out;
}
@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--f-body);
  transition: background 0.15s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 20px;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 32px;
  padding-bottom: 4px;
}
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.08);
}
.lightbox-nav.prev:hover, .lightbox-nav.next:hover {
  transform: translateY(-50%) scale(1.08);
}
@media (max-width: 640px) {
  .lightbox { padding: 20px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 26px; }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
}

/* --- Sticky CTA (mobile) --- */
.sticky-cta { display: none; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .video-testimonials, .video-testimonials.video-3 { grid-template-columns: repeat(2, 1fr); max-width: 480px; gap: 14px; }
  .stats-strip { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; padding-bottom: 40px; }
}
@media (max-width: 480px) {
  .video-testimonials { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .v-name { font-size: 13px; }
  .v-role { font-size: 11px; }
}
@media (max-width: 640px) {
  .hero, .trust, .stack, .checkout, .faq, .founder { padding: 60px 0; }
  .founder-clients { margin-top: 40px; padding-top: 30px; }
  .btn-lg { padding: 16px 28px; font-size: 17px; }
  .totals { padding: 22px; }
  .checkout-widget { padding: 12px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 14px; }
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: var(--black);
    color: #fff;
    text-align: center;
    padding: 16px;
    border-radius: 6px;
    font-family: var(--f-cond);
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 90;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    font-size: 16px;
    letter-spacing: 0.03em;
  }
  .nav .btn-sm { display: none; }
}

/* ── Hero bullets (added 2026-08-17) ─────────────────────────────────────────
   Average scroll depth was 16.77%, so the offer had to move into the first
   screen. Scannable in ~3s, which beats a video nobody stays long enough for. */
.hero-bullets {
  list-style: none;
  max-width: 640px;
  margin: 28px auto 30px;
  padding: 0;
  text-align: left;
}
.hero-bullets li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16.5px;
  line-height: 1.45;
  color: var(--text-mid);
}
.hero-bullets li:last-child { margin-bottom: 0; }
.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}

/* ── Learn More expander ─────────────────────────────────────────────────── */
.learn-more-wrap {
  text-align: center;
  padding: 8px 24px 56px;
}
.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 14px 30px;
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.learn-more-btn:hover { background: var(--bg-warm-2); border-color: var(--border-dark); }
.learn-more-btn .lm-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border: 1.5px solid var(--gold);
  border-radius: 5px;
  color: var(--gold-dark);
  font-size: 15px;
  line-height: 1;
}
@media (max-width: 640px) {
  .hero-bullets { margin: 22px auto 26px; }
  .hero-bullets li { font-size: 15.5px; padding-left: 26px; }
  .learn-more-wrap { padding: 4px 20px 44px; }
}

/* ── Hero proof quotes (added 2026-08-17, restyled) ──────────────────────────
   Text, not screenshots. The review masonry lives behind the expander; these two
   carry proof above the fold at effectively zero page weight.
   Cards are WHITE on the warm/gold hero gradient — the earlier cream-on-cream
   version had almost no contrast. Icon is a quote glyph, deliberately not stars:
   the star rating already sits in the eyebrow above the headline. */
.hero-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 44px auto 0;
  text-align: left;
}
.hero-quote {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 24px 22px;
  margin: 0;
  box-shadow: 0 6px 24px rgba(15,15,15,0.07);
}
/* gold quote glyph, sitting on the card's top edge */
.hero-quote::before {
  content: "\201C";
  position: absolute;
  top: -16px;
  left: 22px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 34px;
  line-height: 1;
  padding-top: 14px;
  box-shadow: 0 4px 12px rgba(201,166,81,0.4);
}
.hero-quote p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-mid);
  margin: 0 0 14px;
}
.hero-quote p strong { color: var(--text); font-weight: 700; }
.hero-quote cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
@media (max-width: 760px) {
  .hero-quotes { grid-template-columns: 1fr; gap: 26px; margin-top: 34px; }
  .hero-quote { padding: 28px 20px 20px; }
  .hero-quote p { font-size: 14.5px; }
}
