/* ---------- tokens ---------- */
:root{
  --bg: #FAF9F6;
  --bg-alt: #F1EEE7;
  --ink: #121212;
  --ink-soft: #5A5852;
  --red: #B3131C;
  --red-dark: #8A0F17;
  --red-tint: #FAEBEA;
  --card: #FFFFFF;
  --line: rgba(18,18,18,0.12);
  --line-strong: rgba(18,18,18,0.22);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1120px;
  --wrap-narrow: 760px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; }
h1,h2,h3{ margin: 0; }
p{ margin: 0 0 1em; }
p:last-child{ margin-bottom: 0; }
button{ font-family: inherit; }

:focus-visible{ outline: 3px solid var(--red); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.wrap{ max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow{ max-width: var(--wrap-narrow); }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15.5px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn--red{ background: var(--red); color: #fff; }
.btn--red:hover{ background: var(--red-dark); }
.btn--ink{ background: var(--ink); color: #fff; }
.btn--ghost{ border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost-light{ border-color: rgba(255,255,255,0.55); color: #fff; background: transparent; }
.btn--sm{ padding: 11px 20px; font-size: 14px; }
.cta-text-short{ display: none; }
@media (max-width: 480px){
  .site-header .btn--sm{
    padding: 9px 14px; font-size: 13px; white-space: nowrap; gap: 4px;
  }
  .cta-text-full{ display: none; }
  .cta-text-short{ display: inline; }
  .brand-mark{ font-size: 16px; }
}
.btn--block{ width: 100%; justify-content: center; }
@media (max-width: 400px){
  .btn{ white-space: normal; text-align: center; padding: 14px 22px; max-width: 100%; }
}
.btn[disabled]{ opacity: 0.45; cursor: not-allowed; transform: none; }
.btn--link{
  background: none; border: none; color: var(--ink-soft);
  text-decoration: underline; font-weight: 600; font-size: 14px; padding: 8px;
}

/* ---------- header ---------- */
.site-header{
  position: sticky; top: 0; z-index: 40;
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__row{
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 16px;
}
.brand-mark{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo{ height: 26px; width: auto; display: block; }
@media (min-width: 680px){
  .site-header__row{ padding: 16px 24px; }
  .brand-logo{ height: 30px; }
}
.header__label{
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: none;
}
@media (min-width: 680px){ .header__label{ display: block; } }

/* ---------- eyebrow ---------- */
.eyebrow{
  font-weight: 700; font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red); margin: 0 0 14px;
}
.eyebrow--light{ color: #f2b9bc; }
.eyebrow--muted{ color: var(--ink-soft); }

/* ---------- hero ---------- */
.hero{ padding: 72px 0 88px; }
.hero__inner{ max-width: 840px; margin: 0 auto; text-align: center; }
.hero__title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.hero__title em{ font-style: italic; color: var(--red); }
.hero__lede{
  margin: 24px auto 0;
  max-width: 60ch;
  font-size: 18px;
  color: var(--ink-soft);
}
.hero__question{
  margin: 28px auto 0;
  max-width: 52ch;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 25px);
  color: var(--ink);
}
.hero__actions{ margin-top: 36px; }
.hero__micro{ margin-top: 14px; font-size: 13.5px; color: var(--ink-soft); font-weight: 600; }

/* flow diagram */
.flow{
  margin: 56px auto 0;
  max-width: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.flow__step{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: center;
  min-width: 130px;
}
.flow__step--accent{ border-color: var(--red); color: var(--red); }
.flow__arrow{ color: var(--line-strong); font-size: 20px; padding: 0 10px; }
@media (max-width: 640px){
  .flow{ flex-direction: column; }
  .flow__arrow{ transform: rotate(90deg); padding: 6px 0; }
}

/* ---------- sections ---------- */
.section{ padding: 88px 0; }
.section--alt{ background: var(--bg-alt); }
.section--dark{ background: var(--ink); color: #fff; }
.section__head{ max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section__title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.section__title--light{ color: #fff; }
.section__sub{
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
}
.section__sub--light{ color: rgba(255,255,255,0.75); }

/* ---------- the norm ---------- */
.norm-photos{
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 18px;
  max-width: 900px; margin: 40px auto 0;
}
.norm-photos img{
  width: 100%; height: 220px; object-fit: cover; border-radius: 8px;
  box-shadow: 0 16px 32px -20px rgba(0,0,0,0.35);
}
.norm-quote{
  max-width: 720px; margin: 52px auto 0; text-align: center;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(24px, 3.6vw, 34px); line-height: 1.35; color: var(--red);
}
.norm-follow{
  max-width: 620px; margin: 22px auto 0; text-align: center;
  font-weight: 700; font-size: 19px; color: var(--ink);
}
.norm-close{
  max-width: 640px; margin: 22px auto 0; text-align: center;
  color: var(--ink-soft); font-size: 15.5px; line-height: 1.7;
}
@media (max-width: 720px){
  .norm-photos{ grid-template-columns: 1fr; }
  .norm-photos img{ height: 200px; }
}

/* ---------- reality check ---------- */
.reality__grid{
  max-width: 640px; margin: 0 auto;
  display: grid; gap: 20px;
}
.field{
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
}
.field label{ font-weight: 700; font-size: 15px; }
.field__hint{ font-size: 13.5px; color: var(--ink-soft); margin-top: -4px; }
.field input, .field select{
  font: inherit; font-size: 17px; padding: 14px 16px;
  border: 1.5px solid var(--line-strong); border-radius: 5px;
  background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus{ border-color: var(--red); }
.reality__note{
  margin-top: 28px; text-align: center;
  font-family: var(--font-display); font-style: italic; font-size: 20px;
}
.reality__actions{ text-align: center; margin-top: 28px; }

/* ---------- problem list (n x 2 table) ---------- */
.problem-list{
  max-width: 880px; margin: 0 auto;
  list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr;
  background: var(--card); border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden;
}
.problem-list li{
  padding: 20px 26px; font-weight: 600; font-size: 16px;
  border-bottom: 1px solid var(--line);
}
.problem-list li:nth-child(odd){ border-right: 1px solid var(--line); }
.problem-list li:nth-last-child(-n+2){ border-bottom: none; }
@media (max-width: 640px){
  .problem-list{ grid-template-columns: 1fr; }
  .problem-list li:nth-child(odd){ border-right: none; }
  .problem-list li:last-child{ border-bottom: none; }
}
.problem-close{
  max-width: 620px; margin: 48px auto 0; text-align: center;
}
.problem-close p{ font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.problem-close p.answer{ color: var(--red); }

/* ---------- before/during/after ---------- */
.bda-grid{
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  max-width: 980px; margin: 0 auto;
}
.bda-card{
  background: var(--card); border: 1px solid var(--line); border-radius: 8px;
  padding: 32px 26px;
}
.bda-card__label{
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--red);
}
.bda-card__flow{ margin-top: 14px; font-weight: 700; font-size: 15.5px; line-height: 1.5; }
.bda-card p{ margin-top: 14px; color: var(--ink-soft); font-size: 15px; }
@media (max-width: 820px){ .bda-grid{ grid-template-columns: 1fr; } }

/* ---------- assessment ---------- */
.assess{ background: var(--ink); color: #fff; padding: 72px 0 88px; }
.assess__shell{ max-width: 640px; margin: 0 auto; }
.assess__intro{ text-align: center; }
.assess__intro h2{ font-family: var(--font-display); font-size: clamp(26px,3.6vw,36px); font-weight: 600; }
.assess__intro p{ color: rgba(255,255,255,0.75); margin-top: 16px; font-size: 16.5px; }
.assess__intro .btn{ margin-top: 30px; }

.progress{
  height: 6px; background: rgba(255,255,255,0.14); border-radius: 999px; overflow: hidden;
  margin-bottom: 12px;
}
.progress__bar{ height: 100%; background: var(--red); transition: width 0.3s ease; }
.progress__label{
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 32px;
}

.q-card{ text-align: left; }
.q-card__prompt{
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(21px, 3vw, 27px); line-height: 1.3;
}
.q-card__options{ margin-top: 28px; display: grid; gap: 12px; }
.opt{
  display: block; width: 100%; text-align: left;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.16);
  color: #fff; border-radius: 6px; padding: 16px 18px; font-size: 15.5px; font-weight: 600;
  cursor: pointer; transition: border-color .15s, background .15s;
}
.opt:hover{ border-color: var(--red); background: rgba(179,19,28,0.14); }
.opt--selected{ border-color: var(--red); background: rgba(179,19,28,0.22); }

.q-note{
  margin-top: 18px; background: rgba(255,255,255,0.06); border-left: 3px solid var(--red);
  padding: 14px 18px; font-size: 14.5px; color: rgba(255,255,255,0.85); border-radius: 0 4px 4px 0;
}

.capture-card{ text-align: center; }
.capture-card h3{ font-family: var(--font-display); font-size: 24px; font-weight: 600; }
.capture-card p{ color: rgba(255,255,255,0.75); margin-top: 12px; }
.capture-form{ margin-top: 26px; display: grid; gap: 16px; text-align: left; }
.capture-form .field label{ color: #fff; }
.capture-form .field input{ background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); color: #fff; }
.capture-form .field input::placeholder{ color: rgba(255,255,255,0.4); }
.capture-form .field input:focus{ border-color: var(--red); }
.consent{ font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.capture-error{ color: #ff9d9d; font-size: 13.5px; font-weight: 600; min-height: 18px; margin-top: -4px; }

.saved-flash{ text-align: center; padding: 60px 0; }
.saved-flash__check{
  width: 56px; height: 56px; border-radius: 999px; background: var(--red);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 18px;
}
.saved-flash h3{ font-family: var(--font-display); font-size: 21px; font-weight: 600; }

/* ---------- results ---------- */
.results{ padding: 88px 0; }
.score-hero{ text-align: center; max-width: 640px; margin: 0 auto; }
.score-gauge{
  width: 200px; height: 200px; border-radius: 999px; margin: 24px auto 0;
  display: flex; align-items: center; justify-content: center; position: relative;
  background: conic-gradient(var(--red) calc(var(--pct,0) * 1%), var(--line) 0);
}
.score-gauge::before{
  content: ""; position: absolute; inset: 12px; background: var(--bg); border-radius: 999px;
}
.score-gauge__num{ position: relative; font-family: var(--font-display); font-weight: 700; font-size: 44px; }
.score-gauge__num span{ display: block; font-size: 14px; font-family: var(--font-body); font-weight: 700; color: var(--ink-soft); }
.score-hero__cat{
  margin-top: 22px; display: inline-block; background: var(--red-tint); color: var(--red);
  font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
}
.score-hero__line{ margin-top: 20px; font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.score-hero__desc{ margin-top: 12px; color: var(--ink-soft); }
.score-hero__priority{ margin-top: 16px; font-weight: 700; }

.scorecard{
  max-width: 640px; margin: 56px auto 0; display: grid; gap: 10px;
}
.scorecard__row{
  display: flex; align-items: center; justify-content: space-between;
  background: var(--card); border: 1px solid var(--line); border-radius: 6px; padding: 14px 20px;
}
.scorecard__row dt{ font-weight: 700; font-size: 15px; }
.scorecard__row dd{ margin: 0; font-size: 14px; font-weight: 700; }
.tag-strong{ color: #157a45; }
.tag-mid{ color: #b8730a; }
.tag-gap{ color: var(--red); }

.leak-card{
  max-width: 640px; margin: 40px auto 0; background: var(--ink); color: #fff;
  border-radius: 10px; padding: 34px 32px;
}
.leak-card__label{ font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #f2b9bc; }
.leak-card p{ font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-top: 10px; }
.leak-fix{ margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.15); }
.leak-fix__label{ font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.leak-fix ul{ margin: 10px 0 0; padding-left: 20px; }
.leak-fix li{ font-weight: 600; margin-bottom: 4px; }

.results__actions{ max-width: 640px; margin: 40px auto 0; text-align: center; }

/* ---------- qualification ---------- */
.qualify{ max-width: 560px; margin: 0 auto; }
.qualify .field{ margin-bottom: 4px; }
.radio-row{ display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row label{
  border: 1.5px solid var(--line-strong); border-radius: 999px; padding: 9px 16px;
  font-size: 14px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 6px;
}
.radio-row input{ accent-color: var(--red); }
.qualify__actions{ margin-top: 30px; display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; }

/* ---------- book / authority ---------- */
.split{
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center;
  max-width: 1040px; margin: 0 auto;
}
.split--reverse{ grid-template-columns: 1.15fr 0.85fr; }
.split--reverse .split__art{ order: 2; }
.split--reverse .split__text{ order: 1; }
.split__text .section__title{ text-align: left; }
.book-badge{
  position: absolute; top: -14px; right: -18px; background: var(--red); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px; box-shadow: 0 8px 18px -6px rgba(179,19,28,0.6);
  z-index: 5;
}

/* ---------- playbook hero ---------- */
.playbook-hero{ background: var(--ink); color: #fff; padding: 100px 0; }
.playbook-grid{
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.playbook-hero__title{
  font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.28; margin-top: 6px;
}
.playbook-hero__title em{ font-style: italic; color: #f2b9bc; }
.playbook-hero__sub{
  margin-top: 18px; font-family: var(--font-display); font-style: italic;
  font-size: 17px; color: rgba(255,255,255,0.72);
}
.playbook-list{ list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 10px; }
.playbook-list li{
  position: relative; padding-left: 22px; font-weight: 600; font-size: 15.5px; color: rgba(255,255,255,0.92);
}
.playbook-list li::before{ content: "—"; position: absolute; left: 0; color: var(--red); }
.playbook-author{ margin-top: 22px; color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; }

/* 3D book */
.book3d-wrap{ perspective: 1600px; display: flex; justify-content: center; }
.book3d{
  position: relative; width: 240px; aspect-ratio: 619 / 900;
  transform-style: preserve-3d; transform: rotateY(-30deg);
  transition: transform 0.5s ease;
}
.book3d-wrap:hover .book3d{ transform: rotateY(-16deg); }
.book3d__cover{
  position: absolute; inset: 0; border-radius: 2px 6px 6px 2px; overflow: hidden;
  box-shadow: 18px 26px 46px -16px rgba(0,0,0,0.65);
}
.book3d__cover img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.book3d__spine{
  position: absolute; left: 0; top: 0; width: 26px; height: 100%;
  background: linear-gradient(90deg, #6d0d12, #97131b);
  transform: rotateY(90deg); transform-origin: left center;
  border-radius: 2px 0 0 2px;
}
.book3d__pages{
  position: absolute; right: -9px; top: 5px; width: 9px; height: calc(100% - 10px);
  background: repeating-linear-gradient(0deg, #f4f1ea, #f4f1ea 2px, #ddd7c8 2px, #ddd7c8 3px);
  transform: rotateY(-90deg); transform-origin: right center;
}
.playbook-proof{
  margin-top: 40px; max-width: 240px; margin-left: auto; margin-right: auto; text-align: center;
}
.playbook-proof img{ border-radius: 6px; box-shadow: 0 16px 32px -18px rgba(0,0,0,0.5); }
.playbook-proof p{ margin-top: 10px; font-size: 12.5px; color: rgba(255,255,255,0.5); }

.playbook-form{ margin-top: 32px; }
.playbook-form__label{ font-weight: 700; font-size: 14.5px; margin-bottom: 12px; }
.playbook-form__row{ display: flex; flex-wrap: wrap; gap: 12px; }
.playbook-form__row input{
  flex: 1 1 180px; font: inherit; font-size: 15px; padding: 13px 16px;
  border-radius: 5px; border: 1.5px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06); color: #fff;
}
.playbook-form__row input::placeholder{ color: rgba(255,255,255,0.4); }
.playbook-form__row input:focus{ border-color: var(--red); }
.playbook-form__row .btn{ flex: 1 1 100%; }
.playbook-form__error{ color: #ff9d9d; font-size: 13px; font-weight: 600; min-height: 18px; margin: 8px 0 0; }
.playbook-form__micro{ margin-top: 10px; font-size: 12.5px; color: rgba(255,255,255,0.5); }
.playbook-form__success{
  margin-top: 10px; background: rgba(179,19,28,0.16); border-left: 3px solid var(--red);
  padding: 14px 18px; border-radius: 0 4px 4px 0; font-weight: 600; font-size: 14.5px;
}
@media (min-width: 520px){
  .playbook-form__row .btn{ flex: 0 0 auto; }
}
@media (max-width: 900px){
  .playbook-grid{ grid-template-columns: 1fr; gap: 48px; }
  .playbook-proof{ display: none; }
}

.authority-photo{ border-radius: 6px; overflow: hidden; box-shadow: 0 24px 50px -26px rgba(0,0,0,0.4); }
.authority-list{ list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.authority-list li{ font-family: var(--font-display); font-weight: 600; font-size: 16.5px; }

@media (max-width: 900px){
  .split, .split--reverse{ grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__art, .split--reverse .split__text{ order: initial; }
}

/* ---------- BVM proof ---------- */
.proof-number{ text-align: center; }
.proof-number__num{ font-family: var(--font-display); font-weight: 700; font-size: clamp(48px,7vw,72px); color: var(--red); }
.proof-scrapbook{
  margin-top: 48px; columns: 4 220px; column-gap: 18px;
}
.proof-scrapbook button{
  display: block; width: 100%; margin: 0 0 18px; border: none; padding: 0; background: none; cursor: zoom-in;
  break-inside: avoid; position: relative;
}
.proof-scrapbook img{ width: 100%; border-radius: 6px; box-shadow: 0 14px 28px -18px rgba(0,0,0,0.35); display: block; }

/* ---------- logo marquee ---------- */
.marquee{
  margin-top: 8px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track{
  display: flex; align-items: center; gap: 36px; width: max-content;
  animation: marquee-scroll 24s linear infinite;
}
.marquee__track img{
  height: 130px; width: auto; border-radius: 10px; box-shadow: 0 12px 26px -14px rgba(0,0,0,0.3); flex-shrink: 0;
}
@media (max-width: 640px){
  .marquee__track img{ height: 92px; }
}
@keyframes marquee-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation: none; overflow-x: auto; }
}
.proof-close{ max-width: 640px; margin: 48px auto 0; text-align: center; }
.proof-close p{ font-family: var(--font-display); font-size: 21px; font-weight: 600; }

/* ---------- ROI review section ---------- */
.review-grid{
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 980px; margin: 40px auto 0;
}
.review-card{ text-align: left; }
.review-card__num{ font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--red); }
.review-card h3{ font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-top: 10px; }
.review-card p{ color: var(--ink-soft); font-size: 15px; margin-top: 8px; }
.review-actions{ text-align: center; margin-top: 44px; }
.review-micro{ margin-top: 14px; font-size: 13.5px; color: var(--ink-soft); }
@media (max-width: 820px){ .review-grid{ grid-template-columns: 1fr; } }

/* ---------- final CTA ---------- */
.final-cta{ background: var(--ink); color: #fff; padding: 96px 0; text-align: center; }
.final-cta h2{ font-family: var(--font-display); font-weight: 600; font-size: clamp(28px,4vw,42px); line-height: 1.2; }
.final-cta h2 em{ color: #f2b9bc; font-style: italic; }
.final-cta p{ margin-top: 18px; color: rgba(255,255,255,0.7); }
.final-cta .btn{ margin-top: 30px; }
.final-cta .hero__micro{ color: rgba(255,255,255,0.55); }

/* ---------- footer ---------- */
.site-footer{ background: var(--bg-alt); padding: 40px 0; font-size: 13.5px; color: var(--ink-soft); }
.site-footer__row{
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.site-footer__links{ display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer__links a{ text-decoration: none; }
.site-footer__links a:hover{ text-decoration: underline; }
.site-footer__bottom{ margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- modal ---------- */
.modal-overlay{
  position: fixed; inset: 0; background: rgba(18,18,18,0.72); z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay[hidden]{ display: none; }
.modal{
  background: #fff; border-radius: 10px; max-width: 460px; width: 100%;
  padding: 34px 30px; position: relative; max-height: 90vh; overflow-y: auto;
}
.modal__close{
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 999px;
  border: none; background: var(--bg-alt); font-size: 20px; cursor: pointer; line-height: 1;
}
.modal h3{ font-family: var(--font-display); font-size: 22px; font-weight: 600; padding-right: 30px; }
.modal p{ color: var(--ink-soft); margin-top: 10px; font-size: 15px; }
.modal .field{ margin-top: 16px; }
.modal .radio-row label{ font-size: 13.5px; padding: 8px 14px; }
.modal .btn{ margin-top: 22px; }

/* ---------- lightbox (reused for proof gallery) ---------- */
.lightbox{
  position: fixed; inset: 0; background: rgba(18,18,18,0.94); display: flex;
  align-items: center; justify-content: center; z-index: 100; padding: 40px;
}
.lightbox[hidden]{ display: none; }
.lightbox img{ max-width: 100%; max-height: 85vh; border-radius: 6px; }
.lightbox__close{
  position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 999px;
  border: none; background: #fff; font-size: 24px; cursor: pointer; line-height: 1;
}

/* ---------- sticky mobile CTA ---------- */
.sticky-cta{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: #fff; border-top: 1px solid var(--line);
  padding: 12px 16px; display: none;
  box-shadow: 0 -8px 24px -12px rgba(0,0,0,0.15);
}
.sticky-cta.is-visible{ display: block; }
@media (min-width: 760px){ .sticky-cta{ display: none !important; } }
