/* ═══════════════════════════════════════════════════════════════
   Betsy Schwartz — Chakra Self-Discovery Quiz
   Tokens pulled from betsy-schwartz-site/src/styles/homepage.css
   (same system as the event-form kiosk).
   ═══════════════════════════════════════════════════════════════ */

:root {
  --indigo: #3B3480;
  --lavender: #6B5CA5;
  --sage: #4A8B6F;
  --coral: #E06B4F;
  --coral-hover: #C85A40;
  --wash: #EEEAF5;
  --wash-light: #F5F2FA;
  --white: #fff;
  --error: #C0392B;

  --banner-teal: #2E7FA8;
  --banner-violet: #6A3DA8;

  --head: 'Bricolage Grotesque', sans-serif;
  --body: 'Quicksand', sans-serif;
  --script: 'Kaushan Script', cursive;

  --radius: 16px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

html { height: 100%; }

body {
  min-height: 100%;
  font-family: var(--body);
  color: var(--indigo);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;

  /* Watercolor sky — echoes Betsy's event banner */
  background:
    radial-gradient(ellipse 70% 50% at 18% 22%, rgba(176, 216, 232, 0.55), transparent 62%),
    radial-gradient(ellipse 60% 45% at 82% 28%, rgba(232, 180, 203, 0.45), transparent 62%),
    radial-gradient(ellipse 75% 55% at 50% 92%, rgba(200, 180, 230, 0.4), transparent 64%),
    radial-gradient(ellipse 40% 30% at 30% 70%, rgba(180, 220, 200, 0.28), transparent 60%),
    linear-gradient(180deg, #F8F4FB 0%, #EEEAF5 100%);
  background-attachment: fixed;
}

/* ─── Stage ────────────────────────────────────────────────────── */
.stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

/* ─── Card ─────────────────────────────────────────────────────── */
.card {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(107, 92, 165, 0.14);
  border-radius: var(--radius);
  padding: 44px 48px;
  width: 100%;
  max-width: 640px;
  box-shadow: 0 14px 44px rgba(59, 52, 128, 0.12);
}

/* ─── Intro ────────────────────────────────────────────────────── */
.intro { text-align: center; }

.logo-mark { display: block; width: 96px; height: 96px; object-fit: contain; margin: 0 auto 12px; }

.brand-name {
  font-family: var(--script);
  font-size: 34px;
  line-height: 1.3;
  color: var(--banner-teal);
  letter-spacing: 0.5px;
}

.tagline {
  font-family: var(--head);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--banner-violet);
  margin-bottom: 22px;
}

h1 {
  font-family: var(--head);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.12;
  color: var(--indigo);
}

.eyebrow {
  font-family: var(--head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin: 10px 0 18px;
}

.intro .lead {
  color: var(--lavender);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto 28px;
}

/* ─── Quiz / questions ─────────────────────────────────────────── */
.quiz-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  min-height: 24px;
}

.back-btn {
  background: none;
  border: none;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--lavender);
  cursor: pointer;
  padding: 4px 2px;
  transition: color .15s ease;
}
.back-btn:hover { color: var(--indigo); }
.back-btn[hidden] { display: none !important; }

.counter {
  font-family: var(--head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lavender);
}

.progress {
  height: 6px;
  background: rgba(107, 92, 165, 0.14);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 28px;
}
.progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--lavender), var(--coral));
  transition: width .35s cubic-bezier(.4, 0, .2, 1);
}

.question {
  font-family: var(--head);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  color: var(--indigo);
  margin-bottom: 22px;
}

.options { display: flex; flex-direction: column; gap: 10px; }

.option {
  text-align: left;
  width: 100%;
  padding: 15px 18px;
  font-family: var(--body);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--indigo);
  background: var(--white);
  border: 1.5px solid rgba(107, 92, 165, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .12s ease;
}
.option:hover { border-color: var(--lavender); transform: translateY(-1px); }
.option:focus-visible { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(224, 107, 79, 0.18); }
.option.selected {
  border-color: var(--coral);
  background: rgba(224, 107, 79, 0.08);
  color: var(--coral-hover);
}

/* ─── Gate (email) ─────────────────────────────────────────────── */
.gate h2, .result-stage, .gate-heading {
  font-family: var(--head);
  font-weight: 400;
}
.gate h2 {
  font-size: 27px;
  color: var(--indigo);
  margin-bottom: 8px;
}
.gate .lead {
  color: var(--lavender);
  font-size: 15px;
  margin-bottom: 24px;
}

.field { margin-bottom: 14px; }

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.optional { color: var(--lavender); font-weight: 400; font-style: italic; margin-left: 6px; }

input[type="text"], input[type="email"] {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  font: inherit;
  color: var(--indigo);
  background: var(--white);
  border: 1.5px solid rgba(107, 92, 165, 0.25);
  border-radius: 10px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(224, 107, 79, 0.15);
}
input::placeholder { color: rgba(107, 92, 165, 0.45); }

.error { color: var(--error); font-size: 13px; min-height: 18px; margin: 4px 0 8px; }
.error:empty { display: none; }

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: block;
  width: 100%;
  min-height: 54px;
  padding: 15px 28px;
  border: none;
  border-radius: 10px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: lowercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover:not(:disabled) {
  background: var(--coral-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(224, 107, 79, 0.3);
}
.btn-coral:disabled { opacity: 0.6; cursor: not-allowed; }

/* CTA button keeps normal case (it's a real link, not lowercase whimsy) */
#cta-btn { text-transform: none; }

.text-link {
  display: block;
  margin: 22px auto 0;
  background: none;
  border: none;
  font-family: var(--body);
  font-size: 13px;
  color: var(--lavender);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link:hover { color: var(--indigo); }

/* ─── Result ───────────────────────────────────────────────────── */
.result { text-align: left; }

.result-eyebrow {
  font-family: var(--head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  text-align: center;
  margin-bottom: 8px;
}
.result-stage {
  font-size: 34px;
  line-height: 1.1;
  color: var(--indigo);
  text-align: center;
}
.result-chakra {
  font-family: var(--script);
  font-size: 26px;
  color: var(--banner-teal);
  text-align: center;
  margin: 4px 0 24px;
}

.result-lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--indigo);
  margin-bottom: 12px;
}
.result-body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--lavender);
  margin-bottom: 24px;
}

.notice-block {
  background: var(--wash-light);
  border: 1px solid rgba(107, 92, 165, 0.12);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 22px;
}
.notice-title {
  font-family: var(--head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 10px;
}
.notice-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.notice-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--indigo);
}
.notice-list li::before {
  content: '';
  position: absolute;
  left: 2px; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.practice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 30px; }
.practice-card {
  background: var(--white);
  border: 1.5px solid rgba(107, 92, 165, 0.16);
  border-radius: 12px;
  padding: 16px 18px;
}
.practice-label {
  font-family: var(--head);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--banner-violet);
  margin-bottom: 8px;
}
.practice-text { font-size: 14.5px; line-height: 1.5; color: var(--indigo); }

.cta-block {
  text-align: center;
  border-top: 1px solid rgba(107, 92, 165, 0.16);
  padding-top: 26px;
}
.cta-heading {
  font-family: var(--head);
  font-weight: 400;
  font-size: 22px;
  color: var(--indigo);
  margin-bottom: 8px;
}
.cta-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--lavender);
  max-width: 420px;
  margin: 0 auto 18px;
}

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 560px) {
  .stage { padding: 16px 12px; }
  .card { padding: 30px 24px; }
  h1, .result-stage { font-size: 27px; }
  .question { font-size: 21px; }
  .notice-list { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: 1fr; }
  /* iOS auto-zoom guard — inputs must be 16px+ */
  input[type="text"], input[type="email"] { font-size: 16px; }
}

/* ─── Result hero: 2-column symbol + title ─────────────────────── */
.result-hero {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 26px;
}
.result-symbol { display: flex; justify-content: center; margin: 0; }
.result-symbol .chakra-symbol { width: 132px; height: 132px; display: block; }

.result-hero-text { text-align: left; }
.result-hero-text .result-eyebrow { text-align: left; margin-bottom: 6px; }
.result-hero-text .result-stage { text-align: left; font-size: 31px; margin: 0; }
.result-hero-text .result-chakra { text-align: left; margin: 2px 0 10px; }
.result-hero-text .result-lead { margin-bottom: 0; }

/* ─── Video block (under hero) ─────────────────────────────────── */
.vsl-video-block { margin: 4px 0 30px; }
.vsl-intro {
  text-align: center;
  color: var(--lavender);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 18px;
}

/* First-ask CTA right under the video */
.vsl-video-cta { text-align: center; margin-top: 20px; }
.vsl-video-cta .btn-coral { max-width: 320px; margin: 0 auto; }
.vsl-video-cta-note {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--lavender);
}

/* ─── Credential chips + call-fact pills ───────────────────────── */
.vsl-chips, .vsl-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.chip {
  font-family: var(--head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--indigo);
  background: var(--wash);
  border: 1px solid rgba(107, 92, 165, 0.18);
  padding: 6px 12px;
  border-radius: 99px;
}
.meta-pill {
  font-family: var(--head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--coral-hover);
  background: rgba(224, 107, 79, 0.10);
  border: 1px solid rgba(224, 107, 79, 0.25);
  padding: 6px 14px;
  border-radius: 99px;
}

/* ─── VSL close (video + 9 sections) ───────────────────────────── */
.vsl {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(107, 92, 165, 0.16);
}

.vsl-video { margin-bottom: 34px; }

.vsl-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;            /* 16:9 */
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 30px rgba(59, 52, 128, 0.18);
}
.vsl-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vsl-video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px dashed rgba(107, 92, 165, 0.3);
  border-radius: 14px;
  background: var(--wash-light);
  color: var(--lavender);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.vsl-play {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 6px 16px rgba(224, 107, 79, 0.35);
}
.vsl-play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
}

.vsl-section { margin-bottom: 28px; }
.vsl-section:last-child { margin-bottom: 0; }

.vsl-eyebrow {
  font-family: var(--head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.vsl-p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--indigo);
  margin-bottom: 12px;
}
.vsl-p:last-child { margin-bottom: 0; }

.vsl-lead {
  font-family: var(--head);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: var(--indigo);
  margin: 6px 0 14px;
}

.vsl-list {
  list-style: none;
  counter-reset: vsl;
  margin: 4px 0 0;
}
.vsl-list li {
  counter-increment: vsl;
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--indigo);
}
.vsl-list li:last-child { margin-bottom: 0; }
.vsl-list li::before {
  content: counter(vsl);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--head);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
}
.vsl-list li strong { color: var(--indigo); font-weight: 600; }

@media (max-width: 560px) {
  .vsl-lead { font-size: 18px; }
  .vsl-list li { padding-left: 36px; }

  /* Stack the hero: symbol on top, text centered below */
  .result-hero {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .result-symbol .chakra-symbol { width: 110px; height: 110px; }
  .result-hero-text,
  .result-hero-text .result-eyebrow,
  .result-hero-text .result-stage,
  .result-hero-text .result-chakra { text-align: center; }
  .vsl-chips, .vsl-meta { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   FUNNEL-DESIGN REDESIGN — vehicle per section + color rhythm
   Sequence breathes: open promise → lavender bio → heavier problems
   → open process (relief) → cream call → two-tone gap → indigo CTA band.
   ═══════════════════════════════════════════════════════════════ */

.vsl-section { margin-bottom: 34px; }

/* ── Promise: bait-quote hero (open, centered, one truth) ──────── */
.vsl-section--promise { text-align: center; padding: 6px 0; }
.vsl-section--promise .vsl-eyebrow { text-align: center; }
.vsl-section--promise .vsl-lead {
  font-size: 28px;
  line-height: 1.3;
  max-width: 600px;
  margin: 6px auto 14px;
}
.vsl-section--promise .vsl-p {
  text-align: center;
  color: var(--lavender);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Meet Betsy: asymmetric (photo + text), soft lavender panel ── */
.vsl-section--authority {
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: 26px;
  row-gap: 12px;
  align-items: center;
}
.vsl-section--authority .vsl-eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.vsl-portrait { display: flex; justify-content: center; }
.vsl-portrait-img,
.vsl-portrait-ph {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}
.vsl-portrait-img {
  border: 3px solid #fff;
  box-shadow: 0 8px 22px rgba(59, 52, 128, 0.18);
}
.vsl-portrait-ph {
  border: 2px dashed rgba(107, 92, 165, 0.32);
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--script);
  font-size: 24px;
  color: var(--lavender);
}
.vsl-authority-text .vsl-chips { margin-bottom: 12px; }
.vsl-authority-text .vsl-p { font-size: 15px; margin-bottom: 10px; }
.vsl-authority-text .vsl-p:last-child { margin-bottom: 0; }

/* ── Problems: domino — heavier framed panel, stacked weights ──── */
.vsl-section--problems {
  background: linear-gradient(180deg, #EFE9F4 0%, #F4E9EC 100%);
  border: 1px solid rgba(107, 92, 165, 0.16);
  border-radius: 18px;
  padding: 22px 28px;
}
.vsl-section--problems .vsl-list li {
  padding-left: 26px;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-bottom: 0;
  border-top: 1px solid rgba(107, 92, 165, 0.16);
}
.vsl-section--problems .vsl-list li:first-child { border-top: none; padding-top: 4px; }
.vsl-section--problems .vsl-list li:last-child { padding-bottom: 0; }
.vsl-section--problems .vsl-list li::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--coral);
  top: 21px;
  left: 2px;
}
.vsl-section--problems .vsl-list li:first-child::before { top: 9px; }

/* ── Process: stepped path — open, numbered circles on a spine ─── */
.vsl-section--process .vsl-list { position: relative; }
.vsl-section--process .vsl-list::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, rgba(224, 107, 79, 0.55), rgba(107, 92, 165, 0.25));
}
.vsl-section--process .vsl-list li::before {
  box-shadow: 0 0 0 5px #F7F3FA;   /* halo so the circle sits cleanly over the spine */
  z-index: 1;
}

/* ── The call: cream contract panel, centered, honest pills ────── */
.vsl-section--call {
  text-align: center;
  background:
    radial-gradient(ellipse 55% 75% at 15% 20%, rgba(133, 156, 136, 0.22), transparent 60%),
    radial-gradient(ellipse 55% 75% at 85% 25%, rgba(224, 107, 79, 0.16), transparent 60%),
    radial-gradient(ellipse 75% 65% at 50% 100%, rgba(107, 92, 165, 0.20), transparent 64%),
    linear-gradient(180deg, #F7F2FC 0%, #EFE8F6 100%);
  border: 1px solid rgba(107, 92, 165, 0.16);
  border-radius: 18px;
  padding: 30px 32px;
  box-shadow: 0 10px 30px rgba(59, 52, 128, 0.10);
}
@media (max-width: 560px) {
  .vsl-section--call { padding: 24px 22px; }
}
.vsl-section--call .vsl-eyebrow { text-align: center; }
.vsl-section--call .vsl-meta { justify-content: center; margin-bottom: 14px; }
.vsl-section--call .vsl-p { max-width: 500px; margin: 0 auto; }

/* ── Gap: conversation pair — two columns + arrow ─────────────── */
.vsl-section--gap .vsl-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}
.vsl-pair-col { border-radius: 14px; padding: 18px 20px; }
.vsl-pair-col--left {
  background: #F0EEF4;
  border: 1px solid rgba(107, 92, 165, 0.16);
}
.vsl-pair-col--right {
  background: rgba(224, 107, 79, 0.09);
  border: 1.5px solid rgba(224, 107, 79, 0.3);
}
.vsl-pair-label {
  font-family: var(--head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.vsl-pair-col--left .vsl-pair-label { color: var(--lavender); }
.vsl-pair-col--right .vsl-pair-label { color: var(--coral-hover); }
.vsl-pair-text { font-size: 14.5px; line-height: 1.55; color: var(--indigo); }
.vsl-pair-col--left .vsl-pair-text { color: var(--lavender); }
.vsl-pair-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--coral);
}

/* ── CTA: high-contrast symmetric band (the climax) ───────────── */
.cta-block {
  background: linear-gradient(135deg, #3B3480 0%, #4C3F92 100%);
  border-top: none;
  border-radius: 20px;
  padding: 42px 36px;
  text-align: center;
  margin-top: 36px;
  box-shadow: 0 16px 40px rgba(59, 52, 128, 0.22);
}
.cta-block .cta-heading { color: #fff; font-size: 27px; }
.cta-block .cta-body { color: rgba(255, 255, 255, 0.82); max-width: 440px; }
.cta-block .btn-coral {
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 8px 22px rgba(224, 107, 79, 0.45);
}

/* ── Redesign mobile ──────────────────────────────────────────── */
@media (max-width: 560px) {
  .vsl-section--authority {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 22px 22px;
  }
  .vsl-section--authority .vsl-authority-text { text-align: left; }
  .vsl-section--gap .vsl-pair { grid-template-columns: 1fr; }
  .vsl-pair-arrow { transform: rotate(90deg); padding: 2px 0; }
  .cta-block { padding: 32px 22px; }
  .vsl-section--promise .vsl-lead { font-size: 23px; }
}

/* ═══════════════════════════════════════════════════════════════
   Booking modal — custom GHL calendar (Phase 2)
   ═══════════════════════════════════════════════════════════════ */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(46, 40, 96, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.booking-overlay[hidden] { display: none !important; }

.booking-modal {
  position: relative;
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 32px 32px 28px;
  box-shadow: 0 24px 70px rgba(59, 52, 128, 0.3);
}

.booking-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: var(--lavender);
  cursor: pointer;
  border-radius: 50%;
}
.booking-close:hover { background: var(--wash); color: var(--indigo); }

.booking-eyebrow {
  font-family: var(--head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.booking-title {
  font-family: var(--head);
  font-weight: 400;
  font-size: 25px;
  color: var(--indigo);
  margin-bottom: 18px;
}

.booking-label {
  font-family: var(--head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--indigo);
  margin: 18px 0 10px;
}
.booking-tz {
  color: var(--lavender);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--body);
  font-size: 12px;
}

.booking-dates, .booking-times { display: flex; flex-wrap: wrap; gap: 8px; }

.booking-date, .booking-time {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--indigo);
  background: var(--white);
  border: 1.5px solid rgba(107, 92, 165, 0.25);
  border-radius: 10px;
  padding: 9px 14px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.booking-date:hover, .booking-time:hover { border-color: var(--lavender); }
.booking-date.selected, .booking-time.selected {
  border-color: var(--coral);
  background: rgba(224, 107, 79, 0.1);
  color: var(--coral-hover);
}

.booking-fields { margin-top: 22px; }
.booking-fields .field { margin-bottom: 12px; }
.booking-fields .btn { margin-top: 6px; }

.booking-note { color: var(--lavender); font-size: 14.5px; line-height: 1.55; text-align: center; }
.booking-note a { color: var(--coral-hover); }

#booking-loading, #booking-empty, .booking-success { text-align: center; padding: 18px 0; }
.booking-check {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-success h3 {
  font-family: var(--head);
  font-weight: 400;
  font-size: 24px;
  color: var(--indigo);
  margin-bottom: 8px;
}
.booking-success-detail { font-size: 17px; font-weight: 600; color: var(--coral-hover); margin-bottom: 12px; }

.booking-spinner {
  width: 36px;
  height: 36px;
  margin: 8px auto 14px;
  border: 3px solid rgba(107, 92, 165, 0.2);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: booking-spin .8s linear infinite;
}
@keyframes booking-spin { to { transform: rotate(360deg); } }

@media (max-width: 560px) {
  .booking-modal { padding: 26px 20px 22px; }
  .booking-title { font-size: 22px; }
}

/* ── Testimonials (on-page social proof) ──────────────────────── */
.vsl-section--proof .vsl-eyebrow { text-align: center; }
.vsl-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.vsl-quote {
  margin: 0;
  padding: 14px 4px 0;
  border-top: 2px solid rgba(224, 107, 79, 0.35);
  display: flex;
  flex-direction: column;
}
.vsl-quote-text {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.5;
  font-style: italic;
  color: var(--indigo);
}
.vsl-quote-name {
  font-family: var(--head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--lavender);
  margin-top: auto;
}
@media (max-width: 560px) {
  .vsl-quotes { grid-template-columns: 1fr; }
}
