/* ==========================================================================
   FunDa with Jyoti — Funnel Design System
   White · Gold · Black · Soft Pink. Mobile-first.
   ========================================================================== */

:root {
  /* FunDa brand — pulled from session.fitnessfundawithjyoti.com */
  --brand: #E71880;          /* signature magenta */
  --brand-deep: #B8125F;
  --brand-glow: #FF4FA3;
  --accent: #E71880;         /* page accent = brand */
  --accent-deep: #B8125F;
  --accent-soft: #F7A8CE;
  --accent-tint: #FDE8F2;
  --teal: #078D7F;           /* trust ticks */
  --teal-tint: #E2F2F0;
  --amber: #F5A623;
  --cream: #FEF3C7;
  --lux: #B8914A;            /* premium gold — score ring, ₹197 offer, award */
  --lux-soft: #E8D3A6;

  --ivory: #FFF8FA;
  --paper: #FFFFFF;
  --ink: #22222A;
  --ink-2: #4B4B57;
  --ink-3: #6F6F7B;
  --blush: #FDE8F2;
  --blush-2: #F9CFE2;
  --rose: #B8125F;
  --line: #F0E2E8;
  --wa: #1DA851;
  --lvl-high: #D02B4E;   --lvl-high-bg: #FDE3E8;
  --lvl-mod: #B97609;    --lvl-mod-bg: #FDF0D8;
  --lvl-low: #07766B;    --lvl-low-bg: #E2F2F0;

  --display: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --serif: var(--display);

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --shadow: 0 1px 2px rgba(34, 34, 42, .04), 0 10px 30px rgba(34, 34, 42, .07);
  --shadow-lg: 0 2px 6px rgba(34, 34, 42, .05), 0 24px 60px rgba(34, 34, 42, .14);
  --shadow-brand: 0 12px 30px rgba(231, 24, 128, .32);
  --gutter: 20px;
  --wrap: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.quiz-open { overflow: hidden; }
body {
  margin: 0; font-family: var(--sans); font-size: 16px; line-height: 1.6; color: var(--ink);
  background: var(--ivory); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; margin: 0; text-wrap: balance; }
h1 em, h2 em, .bridge-quote em { font-style: normal; color: var(--brand); position: relative; }
p { margin: 0; }
figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
a { color: inherit; }
code { font-size: .9em; background: var(--accent-tint); padding: 1px 6px; border-radius: 6px; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap.narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--ink-3); }
.section { padding-block: 64px; }
.section-sm { padding-block: 40px; }
@media (min-width: 900px) { .section { padding-block: 96px; } .section-sm { padding-block: 56px; } }

.eyebrow { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-deep); font-weight: 600; }
.eyebrow.light { color: var(--accent-soft); }
.h-xl { font-size: clamp(36px, 9vw, 62px); }
.h-lg { font-size: clamp(30px, 7vw, 48px); }
.h-md { font-size: clamp(24px, 5.2vw, 32px); }
.lead { font-size: clamp(16.5px, 2.2vw, 19px); color: var(--ink-2); }
.fineprint { font-size: 12.5px; color: var(--ink-3); margin-top: 14px; }
.sec-head { max-width: 720px; margin-bottom: 36px; display: grid; gap: 12px; }
.sec-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 26px; border: 0; border-radius: 999px;
  font: 600 16px/1.2 var(--sans); text-decoration: none; cursor: pointer; text-align: center;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, opacity .2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.98); }
.btn-lg { min-height: 60px; font-size: 17px; padding: 0 30px; }
.btn-block { width: 100%; }
.btn-primary { background: linear-gradient(135deg, var(--brand-glow) 0%, var(--brand) 55%, var(--brand-deep) 100%); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary .ico { color: #fff; transition: transform .2s; }
.btn-primary:hover .ico { transform: translateX(3px); }
.btn-gold { background: linear-gradient(135deg, #E2C685 0%, #C09A52 45%, #9E7736 100%); color: #fff; box-shadow: 0 12px 28px rgba(158, 119, 54, .34); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 12px 28px rgba(29, 168, 81, .28); }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }
.icon-btn { display: grid; place-items: center; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 50%; cursor: pointer; color: var(--ink); }
.icon-btn:hover { background: var(--accent-tint); }
.ico { flex: none; }

/* ---------- Placeholders ---------- */
.ph {
  display: grid; place-items: center; text-align: center; color: var(--accent-deep);
  background: linear-gradient(160deg, var(--blush) 0%, var(--accent-tint) 100%);
  border: 1px dashed var(--accent-soft); overflow: hidden;
}
.ph span { display: grid; justify-items: center; gap: 6px; padding: 12px; opacity: .85; }
.ph small { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; line-height: 1.3; }
.sample {
  position: absolute; top: 12px; right: 12px; z-index: 2; font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; background: var(--ink); color: var(--accent-soft); padding: 3px 8px; border-radius: 6px;
}

/* ---------- Header / footer / banners ---------- */
.demo-banner { background: var(--ink); color: var(--accent-soft); font-size: 12px; text-align: center; padding: 6px 12px; letter-spacing: .04em; }
.resume-bar { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; background: var(--blush); color: var(--rose); font-size: 14px; font-weight: 600; text-decoration: none; text-align: center; }
.site-header { background: rgba(255, 251, 246, .9); border-bottom: 1px solid var(--line); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.logo { text-decoration: none; display: flex; align-items: center; }
.wordmark { font: 800 22px/1 var(--display); letter-spacing: -.03em; }
.wordmark em { color: var(--brand); font-style: normal; font-weight: 600; }
.hdr-proof { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-2); }
.hdr-proof .ico { color: var(--accent); }

.site-footer { background: var(--ink); color: #CFC6BB; padding-block: 44px 110px; font-size: 13px; }
@media (min-width: 900px) { .site-footer { padding-bottom: 44px; } }
.site-footer .wordmark { color: #fff; font-size: 22px; }
.foot-top { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.disclaimer { max-width: 760px; color: #A69C90; line-height: 1.6; }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 18px 0 8px; }
.foot-links a { color: #E8DFD3; text-decoration: none; }
.copy { color: #7E756B; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: 28px 56px;
  background: radial-gradient(900px 480px at 100% 0%, var(--blush) 0%, transparent 60%), radial-gradient(600px 400px at 0% 100%, var(--accent-tint) 0%, transparent 70%), var(--ivory); }
.hero-grid { display: grid; gap: 36px; }
@media (min-width: 900px) { .hero { padding-block: 64px 96px; } .hero-grid { grid-template-columns: 1.08fr .92fr; align-items: center; gap: 64px; } }
.hero-copy h1 { margin: 14px 0 16px; }
.cta-row { margin-top: 26px; display: grid; gap: 14px; justify-items: start; }
@media (max-width: 599px) { .cta-row .btn { width: 100%; } }
.micro { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 13.5px; color: var(--ink-2); }
.micro li { display: inline-flex; align-items: center; gap: 6px; }
.micro .ico { color: var(--accent); }
.social-proof { display: flex; align-items: center; gap: 14px; margin-top: 22px; font-size: 14px; color: var(--ink-2); }
.avatars { display: flex; padding-left: 10px; }
.avatars span { width: 34px; height: 34px; border-radius: 50%; margin-left: -10px; border: 2px solid var(--ivory); background: linear-gradient(135deg, var(--blush-2), var(--accent-soft)); }
.avatars span:nth-child(2) { background: linear-gradient(135deg, var(--accent-soft), #C9A56A); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #E9C3BC, var(--blush-2)); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, #D8B77A, #B48D4A); }
.hero-media { position: relative; max-width: 460px; width: 100%; justify-self: center; }
.hero-media::before { content: ''; position: absolute; inset: 18px -12px -12px 18px; border: 1px solid var(--accent-soft); border-radius: 220px 220px var(--r-lg) var(--r-lg); }
.hero-img { position: relative; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 220px 220px var(--r-lg) var(--r-lg); box-shadow: var(--shadow-lg); }
.nameplate { position: absolute; left: 16px; right: 16px; bottom: 16px; display: grid; gap: 2px; padding: 12px 16px; border-radius: 14px; background: rgba(255, 255, 255, .92); backdrop-filter: blur(10px); box-shadow: var(--shadow); }
.nameplate b { font: 600 20px/1.1 var(--serif); }
.nameplate span { font-size: 12.5px; color: var(--ink-3); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--ink); color: #fff; padding-block: 34px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: center; }
.stats b { display: block; font: 600 clamp(28px, 7vw, 44px)/1 var(--serif); color: var(--accent-soft); }
.stats span { display: block; margin-top: 6px; font-size: 12.5px; color: #CFC6BB; line-height: 1.35; }
.press { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); text-align: center; }
.press p { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #9D9388; margin-bottom: 12px; }
.press-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; }
.press-logo { height: 34px; width: 110px; object-fit: contain; border-radius: 6px; filter: grayscale(1) brightness(1.6); }
.press-row .ph { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .15); color: #9D9388; filter: none; }
.press-row .ph .ico { display: none; }

/* ---------- Pain ---------- */
.pain { background: var(--paper); }
.pain-list { display: grid; gap: 10px; }
.pain-list li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r); font-size: 16.5px; color: var(--ink-2); }
.tick { flex: none; display: grid; place-items: center; width: 24px; height: 24px; margin-top: 1px; border-radius: 50%; background: var(--teal-tint); color: var(--teal); }
.tick.gold { background: var(--teal-tint); color: var(--teal); }
.bridge-card { margin-top: 28px; padding: 30px 24px; border-radius: var(--r-lg); background: linear-gradient(160deg, var(--blush) 0%, var(--accent-tint) 100%); text-align: center; display: grid; gap: 14px; justify-items: center; }
.bridge-card h3 { font-size: clamp(26px, 6vw, 34px); }
.bridge-card p { color: var(--ink-2); max-width: 560px; }

/* ---------- Blocks ---------- */
.block-grid { display: grid; gap: 14px; }
@media (min-width: 640px) { .block-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .block-grid { grid-template-columns: repeat(4, 1fr); } }
.block-card { padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); display: grid; gap: 10px; align-content: start; transition: transform .2s, box-shadow .2s; }
.block-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.block-top { display: flex; justify-content: space-between; align-items: center; }
.block-ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-deep); }
.block-num { font: italic 600 26px var(--serif); color: var(--accent-soft); }
.block-card h3 { font-size: 24px; }
.block-card p { color: var(--ink-2); font-size: 15px; }

/* ---------- Rails (swipeable on mobile) ---------- */
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: 84%; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 2px 14px; scrollbar-width: none; overscroll-behavior-x: contain; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
@media (min-width: 700px) { .rail { grid-auto-columns: calc(50% - 7px); } }
@media (min-width: 1000px) { .rail { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible; } }

.transformations { background: var(--paper); }
.ba-card { position: relative; margin: 0; padding: 12px; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-lg); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ba { position: relative; }
.ba-img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 14px; }
.ba > span { position: absolute; left: 8px; bottom: 8px; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(255, 255, 255, .92); padding: 3px 8px; border-radius: 6px; }
.ba > span.after { background: var(--ink); color: var(--accent-soft); }
.ba-card figcaption { display: grid; gap: 2px; padding: 12px 4px 2px; }
.ba-card figcaption b { font: 600 20px var(--serif); }
.ba-card figcaption span { font-size: 14px; color: var(--ink-2); }

/* ---------- Founder ---------- */
.founder-grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 900px) { .founder-grid { grid-template-columns: .9fr 1.1fr; gap: 64px; } }
.founder-img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.founder-copy { display: grid; gap: 14px; }
.founder-copy > p { color: var(--ink-2); }
.role { font-size: 14px; color: var(--accent-deep) !important; font-weight: 600; margin-top: -6px; }
.creds { display: grid; gap: 10px; margin-top: 6px; padding: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); }
.creds li { display: flex; gap: 10px; font-size: 15px; }
.creds .ico { color: var(--accent); margin-top: 3px; }
.signature { font: italic 600 26px var(--serif); color: var(--accent-deep) !important; }

/* ---------- Audit intro ---------- */
.audit-intro { background: linear-gradient(180deg, var(--ivory), var(--blush)); }
.audit-card { padding: 34px 22px; background: var(--paper); border: 1px solid var(--accent-soft); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
@media (min-width: 700px) { .audit-card { padding: 48px; } }
.audit-card .sec-head { margin-bottom: 24px; }
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: center; }
.checklist.big { max-width: 440px; margin: 0 auto 24px; }
.checklist.big li { font-size: 17px; font-weight: 500; padding-bottom: 12px; border-bottom: 1px dashed var(--line); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chips.center { justify-content: center; }
.chips li { font-size: 13px; padding: 6px 12px; border-radius: 999px; background: var(--accent-tint); color: var(--accent-deep); font-weight: 600; }

/* ---------- Testimonials ---------- */
.t-card { position: relative; margin: 0; padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); display: grid; gap: 14px; align-content: start; }
.stars { display: flex; gap: 2px; color: var(--accent); }
.t-card blockquote { margin: 0; font: 500 21px/1.35 var(--serif); color: var(--ink); }
.t-card figcaption { display: flex; align-items: center; gap: 12px; }
.t-photo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; }
.t-photo.ph span { padding: 0; } .t-photo.ph small { display: none; } .t-photo.ph .ico { width: 16px; height: 16px; }
.t-card figcaption b { display: block; font-size: 15px; }
.t-card figcaption small { display: block; font-size: 13px; color: var(--ink-3); }
.tag { margin-left: auto; font-style: normal; font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: var(--blush); color: var(--rose); white-space: nowrap; }

/* ---------- How it works ---------- */
.how { background: var(--paper); }
.steps { display: grid; gap: 14px; counter-reset: s; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.steps li { position: relative; padding: 26px 22px; border-radius: var(--r); background: var(--ivory); border: 1px solid var(--line); display: grid; gap: 8px; }
.step-n { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--accent-soft); font: 600 20px var(--serif); }
.steps h3 { font-size: 24px; }
.steps p { color: var(--ink-2); font-size: 15px; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 10px; }
.faq-list details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; cursor: pointer; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.plus { position: relative; flex: none; width: 14px; height: 14px; }
.plus::before, .plus::after { content: ''; position: absolute; left: 0; top: 6px; width: 14px; height: 2px; background: var(--accent); transition: transform .2s; }
.plus::after { transform: rotate(90deg); }
details[open] .plus::after { transform: rotate(0); }
.faq-list details p { padding: 0 20px 18px; color: var(--ink-2); }

/* ---------- Final CTA ---------- */
.final-cta { padding-block: 72px; background: radial-gradient(700px 300px at 50% 0%, var(--blush-2), transparent 70%), var(--blush); }
.final-cta .wrap { display: grid; gap: 16px; justify-items: center; }

/* ---------- Sticky CTA (mobile) ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 251, 246, .94); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .3s ease; }
.sticky-cta.show { transform: translateY(0); }
@media (min-width: 900px) { .sticky-cta { display: none; } }
.pay-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pay-bar span { display: grid; line-height: 1.2; }
.pay-bar b { font: 600 26px var(--serif); }
.pay-bar small { font-size: 12px; color: var(--ink-3); }
.pay-bar .btn { min-height: 48px; }

/* ==========================================================================
   QUIZ
   ========================================================================== */
.quiz { position: fixed; inset: 0; z-index: 100; background: var(--ivory); overflow-y: auto; animation: fadeUp .25s ease; }
.quiz-top { position: sticky; top: 0; z-index: 3; background: rgba(255, 251, 246, .96); backdrop-filter: blur(8px); }
.quiz-bar { display: grid; grid-template-columns: 44px 1fr auto 44px; align-items: center; gap: 6px; height: 58px; max-width: 680px; margin: 0 auto; padding-inline: 10px; }
.quiz-bar.locked .icon-btn { visibility: hidden; }
.quiz-logo { justify-self: center; } .quiz-logo .wordmark { font-size: 21px; }
.quiz-count { font-size: 13px; font-weight: 600; color: var(--ink-3); min-width: 42px; text-align: right; }
.progress { height: 3px; background: var(--line); }
.progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent-soft), var(--accent)); transition: width .4s ease; }
.quiz-body { max-width: 640px; margin: 0 auto; padding: 30px var(--gutter) 130px; }
.q-step { animation: fadeUp .3s ease; }
.q-title { font-size: clamp(28px, 7vw, 38px); margin: 8px 0 10px; outline: none; }
.q-help { color: var(--ink-2); margin-bottom: 22px; }
.opts { display: grid; gap: 10px; margin-top: 18px; }
.opts.cols-2 { grid-template-columns: 1fr 1fr; }
.opt { display: flex; align-items: center; gap: 14px; width: 100%; min-height: 60px; padding: 14px 16px; background: var(--paper);
  border: 1.5px solid var(--line); border-radius: 14px; font: 500 16.5px/1.3 var(--sans); color: var(--ink); text-align: left; cursor: pointer;
  transition: border-color .15s, background .15s, transform .1s, box-shadow .15s; -webkit-tap-highlight-color: transparent; }
.opt:hover { border-color: var(--accent-soft); }
.opt:active { transform: scale(.985); }
.opt .mark { flex: none; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--accent-soft); color: transparent; transition: all .15s; }
.opt.multi .mark { border-radius: 7px; }
.opt[aria-pressed="true"] { border-color: var(--accent); background: var(--accent-tint); box-shadow: 0 6px 18px rgba(184, 145, 74, .15); }
.opt[aria-pressed="true"] .mark { background: var(--accent); border-color: var(--accent); color: #fff; }
.insight { display: flex; gap: 12px; margin-top: 18px; padding: 14px 16px; background: var(--paper); border-left: 3px solid var(--accent); border-radius: 0 12px 12px 0; color: var(--ink-2); font-size: 15px; animation: fadeUp .3s ease; box-shadow: var(--shadow); }
.insight .ico { color: var(--accent); margin-top: 2px; }
.quiz-foot { position: fixed; left: 0; right: 0; bottom: 0; z-index: 3; padding: 26px 16px calc(14px + env(safe-area-inset-bottom)); background: linear-gradient(to bottom, rgba(255, 251, 246, 0), var(--ivory) 40%); }
.quiz-foot-in { max-width: 608px; margin: 0 auto; }

.input { width: 100%; height: 58px; padding: 0 16px; border: 1.5px solid var(--line); border-radius: 14px; background: var(--paper); font: 500 17px var(--sans); color: var(--ink); appearance: none; -webkit-appearance: none; }
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }
.select-wrap { position: relative; margin-top: 18px; }
.select-wrap::after { content: ''; position: absolute; right: 20px; top: 50%; width: 9px; height: 9px; border-right: 2px solid var(--accent-deep); border-bottom: 2px solid var(--accent-deep); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.unit-input { position: relative; margin-top: 18px; }
.unit-input .input { font-size: 22px; padding-right: 60px; }
.unit-input span { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-weight: 600; color: var(--ink-3); }
.hint { margin-top: 8px; font-size: 13px; color: var(--ink-3); }

.lead-form { display: grid; gap: 4px; }
.ready-badge { display: inline-flex; align-items: center; gap: 6px; justify-self: start; padding: 5px 12px; border-radius: 999px; background: var(--lvl-low-bg); color: var(--lvl-low); font-size: 13px; font-weight: 600; }
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 14px; font-weight: 600; }
.input-prefix { display: flex; align-items: stretch; }
.input-prefix span { display: grid; place-items: center; padding: 0 14px; border: 1.5px solid var(--line); border-right: 0; border-radius: 14px 0 0 14px; background: var(--accent-tint); font-weight: 600; color: var(--accent-deep); }
.input-prefix .input { border-radius: 0 14px 14px 0; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 4px 0 14px; font-size: 13.5px; color: var(--ink-2); cursor: pointer; }
.consent input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--accent); flex: none; }
.privacy { margin-top: 12px; text-align: center; font-size: 13px; color: var(--ink-3); }
.err { color: var(--lvl-high); font-size: 14px; font-weight: 500; margin: 6px 0 12px; }

.analysing { display: grid; justify-items: center; text-align: center; padding-top: 30px; }
.an-ring { width: 130px; height: 130px; transform: rotate(-90deg); margin-bottom: 20px; }
.an-ring circle { fill: none; stroke-width: 6; }
.an-ring .track { stroke: var(--line); }
.an-ring .fill { stroke: var(--accent); stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 100; animation: ringFill 3.8s ease forwards; }
.an-steps { display: grid; gap: 12px; margin-top: 18px; text-align: left; }
.an-steps li { display: flex; align-items: center; gap: 10px; color: var(--ink-3); transition: color .3s; }
.an-steps .mark { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--line); color: transparent; transition: all .3s; }
.an-steps li.done { color: var(--ink); }
.an-steps li.done .mark { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ==========================================================================
   RESULT
   ========================================================================== */
.result-hero { padding-block: 36px 40px; background: radial-gradient(700px 360px at 50% 0%, var(--blush), transparent 70%), var(--ivory); }
.score-label { margin-top: 6px; font-weight: 600; color: var(--ink-2); }
.ring { position: relative; width: 196px; height: 196px; margin: 18px auto 14px; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 8; }
.ring .track { stroke: var(--accent-tint); }
.ring .fill { stroke: url(#ringGold); stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset 1.4s cubic-bezier(.2, .7, .2, 1); }
.go .ring .fill { stroke-dashoffset: calc(100 - var(--score)); }
.ring-val { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.ring-val b { font: 600 68px/1 var(--serif); }
.ring-val small { font-size: 13px; color: var(--ink-3); font-weight: 600; }
.band-pill { display: inline-block; padding: 7px 16px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.result-h { margin: 22px 0 12px; }

.primary-card { padding: 26px 22px; border-radius: var(--r-lg); background: var(--ink); color: #EDE5DA; display: grid; gap: 12px; box-shadow: var(--shadow-lg); }
.primary-card .eyebrow { color: var(--accent-soft); }
.primary-title { display: flex; align-items: center; gap: 12px; color: var(--accent-soft); }
.primary-title h2 { font-size: clamp(28px, 7vw, 36px); color: #fff; }
.primary-card p { color: #CFC6BB; }

.cats { display: grid; gap: 10px; margin-top: 24px; }
.cat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); }
.cat[open] { border-color: var(--accent-soft); box-shadow: var(--shadow); }
.cat summary { display: grid; grid-template-columns: 34px 1fr auto; grid-template-areas: "ico name lvl" "bar bar pct"; align-items: center; gap: 10px 10px; padding: 16px 18px; cursor: pointer; list-style: none; }
.cat summary::-webkit-details-marker { display: none; }
.cat-ico { grid-area: ico; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-deep); }
.cat-name { grid-area: name; font-weight: 600; line-height: 1.25; }
.lvl { grid-area: lvl; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.lvl-high { background: var(--lvl-high-bg); color: var(--lvl-high); }
.lvl-moderate { background: var(--lvl-mod-bg); color: var(--lvl-mod); }
.lvl-low { background: var(--lvl-low-bg); color: var(--lvl-low); }
.bar { grid-area: bar; height: 8px; border-radius: 99px; background: var(--accent-tint); overflow: hidden; }
.bar i { display: block; height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--accent-soft), var(--accent)); transition: width 1.2s cubic-bezier(.2, .7, .2, 1) .3s; }
.go .bar i { width: var(--w); }
.pct { grid-area: pct; font-weight: 700; font-size: 14px; color: var(--ink-2); min-width: 40px; text-align: right; }
.cat p { padding: 0 18px 18px; color: var(--ink-2); font-size: 15px; }

.bridge { padding-block: 48px; }
.bridge .wrap { display: grid; gap: 24px; justify-items: center; }
.bridge-quote { font: 600 clamp(28px, 7vw, 42px)/1.15 var(--serif); text-wrap: balance; }
@media (max-width: 599px) { .bridge .btn { width: 100%; } }

.offer { padding-top: 16px; background: linear-gradient(180deg, var(--ivory), var(--blush) 60%, var(--ivory)); }
.offer-card { max-width: 560px; margin: 0 auto; background: var(--paper); border: 1px solid var(--accent-soft); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); }
.offer-head { padding: 30px 24px 26px; background: var(--ink); color: #D8CFC4; text-align: center; display: grid; gap: 10px; }
.offer-head h2 { color: #fff; }
.offer-body { padding: 24px 22px 26px; }
.offer-body .btn-lg { font-size: 16px; padding-inline: 18px; white-space: nowrap; }
.receive { font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); }
.offer-items { display: grid; margin: 8px 0 20px; }
.offer-items li { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.offer-items b { display: block; }
.offer-items small { display: block; font-size: 14px; color: var(--ink-3); }
.price { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 16px; }
.price s { font-size: 20px; color: var(--ink-3); }
.price b { font: 600 60px/1 var(--serif); }
.price span { font-size: 14px; color: var(--ink-3); }
.secure { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px; margin-top: 14px; font-size: 12.5px; color: var(--ink-3); }
.secure li { display: inline-flex; align-items: center; gap: 5px; }
.scarcity { display: flex; gap: 10px; align-items: center; margin-top: 16px; padding: 12px 14px; border-radius: 12px; background: var(--blush); color: var(--rose); font-size: 14px; font-weight: 500; }

/* ==========================================================================
   BOOK · THANK YOU · WHATSAPP
   ========================================================================== */
.page-head { padding-block: 36px 28px; background: radial-gradient(700px 300px at 50% 0%, var(--blush), transparent 70%); }
.page-head .wrap { display: grid; gap: 14px; justify-items: center; }
.paid-pill, .score-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; background: var(--lvl-low-bg); color: var(--lvl-low); font-size: 13.5px; font-weight: 600; }
.score-chip { background: var(--accent-tint); color: var(--accent-deep); }
.progress-steps { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.progress-steps li { font-size: 12.5px; font-weight: 600; padding: 5px 12px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); color: var(--ink-3); }
.progress-steps li.on { background: var(--ink); border-color: var(--ink); color: var(--accent-soft); }

.panel { margin-bottom: 16px; padding: 24px 20px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); display: grid; gap: 16px; }
@media (min-width: 700px) { .panel { padding: 30px; } }
.panel.accent { border-color: var(--accent-soft); background: linear-gradient(160deg, var(--paper), var(--accent-tint)); }
.panel-head { display: flex; gap: 14px; align-items: flex-start; }
.panel-head .muted { font-size: 14.5px; margin-top: 4px; }
.panel-n { flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--accent-soft); font: 600 19px var(--serif); }

.chips-select, .times { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-btn { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 0 14px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--paper); font-weight: 500; font-size: 14.5px; cursor: pointer; }
.chip-btn .ico { display: none; }
.chip-btn[aria-pressed="true"] { border-color: var(--accent); background: var(--accent-tint); color: var(--accent-deep); font-weight: 600; }
.chip-btn[aria-pressed="true"] .ico { display: block; }
.note { display: flex; gap: 10px; padding: 14px; border-radius: 12px; background: var(--blush); color: var(--ink-2); font-size: 14.5px; }
.note .ico { color: var(--rose); margin-top: 2px; }

.dropzone { position: relative; display: grid; justify-items: center; gap: 4px; padding: 26px 16px; border: 1.5px dashed var(--accent-soft); border-radius: var(--r); background: var(--ivory); text-align: center; cursor: pointer; color: var(--accent-deep); }
.dropzone:hover { background: var(--accent-tint); }
.dropzone b { color: var(--ink); }
.dropzone span { font-size: 13px; color: var(--ink-3); }
.dropzone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-list { display: grid; gap: 8px; margin-top: 10px; }
.file-list li { display: flex; align-items: center; gap: 10px; padding: 8px 8px 8px 14px; border-radius: 12px; background: var(--ivory); border: 1px solid var(--line); font-size: 14px; }
.file-list li > span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-list small { margin-left: 8px; color: var(--ink-3); }
.file-list .ico { color: var(--accent-deep); }

.days { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(64px, 1fr); gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.day-btn { display: grid; justify-items: center; gap: 0; padding: 10px 6px; border-radius: 14px; border: 1.5px solid var(--line); background: var(--paper); cursor: pointer; line-height: 1.2; }
.day-btn b { font: 600 24px var(--serif); }
.day-btn small { font-size: 11.5px; color: var(--ink-3); }
.day-btn[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.day-btn[aria-pressed="true"] small { color: var(--accent-soft); }
.cal-embed { width: 100%; height: 680px; border: 0; border-radius: var(--r); }

.big-check { display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; background: var(--ink); color: var(--accent-soft); box-shadow: 0 0 0 10px var(--accent-tint); animation: pop .5s cubic-bezier(.2, 1.4, .4, 1); }
.summary { display: grid; margin: 0; }
.summary div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.summary div:last-child { border-bottom: 0; }
.summary dt { color: var(--ink-3); }
.summary dd { margin: 0; font-weight: 600; text-align: right; overflow-wrap: anywhere; }
.timeline { display: grid; gap: 0; counter-reset: t; }
.timeline li { position: relative; padding: 0 0 20px 44px; counter-increment: t; }
.timeline li::before { content: counter(t); position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-deep); font-weight: 700; font-size: 14px; }
.timeline li::after { content: ''; position: absolute; left: 14.5px; top: 34px; bottom: 4px; width: 1px; background: var(--accent-soft); }
.timeline li:last-child { padding-bottom: 0; } .timeline li:last-child::after { display: none; }
.timeline p { color: var(--ink-2); font-size: 15px; }

.wa-avatar { position: relative; width: 104px; height: 104px; }
.wa-photo { width: 104px; height: 104px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--accent-soft); }
.wa-photo.ph small { display: none; }
.online { position: absolute; right: 6px; bottom: 6px; width: 18px; height: 18px; border-radius: 50%; background: var(--wa); border: 3px solid var(--paper); }

/* ---------- Modal ---------- */
.modal-backdrop { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; background: rgba(22, 19, 15, .55); animation: fade .2s; }
.modal { width: 100%; max-width: 440px; padding: 26px 22px; background: var(--paper); border-radius: 22px; box-shadow: var(--shadow-lg); animation: fadeUp .25s ease; }
.modal h3 { font-size: 28px; margin-bottom: 10px; }
.modal-body { display: grid; gap: 8px; color: var(--ink-2); }
.modal-actions { display: grid; gap: 10px; margin-top: 20px; }
@media (min-width: 480px) { .modal-actions { grid-template-columns: auto 1fr; } }

/* ---------- Boot ---------- */
.boot { min-height: 70vh; display: grid; place-items: center; }
.boot-dot { width: 36px; height: 36px; border-radius: 50%; border: 3px solid var(--accent-tint); border-top-color: var(--accent); animation: spin .8s linear infinite; }
.boot-error { padding-block: 80px; text-align: center; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes ringFill { to { stroke-dashoffset: 0; } }
@keyframes pop { from { transform: scale(.4); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   BRAND LAYER — FunDa visual identity & conversion components
   ========================================================================== */

/* Scroll reveal: content rises into view once, never on repeat scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Hero: her photo as the anchor, proof floating around it ---------- */
.hero { background:
  radial-gradient(760px 420px at 100% -5%, var(--blush) 0%, transparent 62%),
  radial-gradient(520px 380px at -10% 100%, #FFF1E4 0%, transparent 70%), var(--ivory); }
.hero-copy h1 { font-size: clamp(32px, 7.6vw, 56px); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.hero-badge b { color: var(--brand); }
.hero-media { max-width: 440px; }
.hero-media::before { display: none; }
.hero-photo-ring { position: relative; padding: 10px; border-radius: 50%;
  background: conic-gradient(from 210deg, var(--brand), var(--amber), var(--brand-glow), var(--brand)); box-shadow: var(--shadow-lg); }
.hero-photo-ring .hero-img, .hero-photo-ring .ph { width: 100%; aspect-ratio: 1; border-radius: 50%; object-fit: cover; object-position: top center; background: var(--paper); }
.float-chip { position: absolute; display: flex; align-items: center; gap: 8px; padding: 9px 13px; border-radius: 14px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px); box-shadow: var(--shadow-lg); font-size: 12.5px; font-weight: 600; line-height: 1.25; }
.float-chip .ico { color: var(--brand); }
.float-chip b { display: block; font-family: var(--display); font-size: 16px; }
.float-chip.one { left: -6px; top: 16%; animation: floaty 5s ease-in-out infinite; }
.float-chip.two { right: -6px; top: 46%; animation: floaty 5.6s ease-in-out .6s infinite; }
.float-chip.three { left: 4%; bottom: 6%; animation: floaty 6.2s ease-in-out .3s infinite; }
.float-chip.two .ico { color: var(--teal); }
.float-chip.three .ico { color: var(--amber); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce) { .float-chip { animation: none; } }
@media (max-width: 599px) { .float-chip { font-size: 11.5px; padding: 7px 10px; } .float-chip b { font-size: 14px; } }

.rating-row { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 13.5px; color: var(--ink-2); }
.rating-row .stars { color: var(--amber); }

/* ---------- Social proof bar ---------- */
.proof-bar { background: var(--ink); color: #fff; padding-block: 18px; overflow: hidden; }
.proof-track { display: flex; align-items: center; gap: 36px; white-space: nowrap; font-size: 13.5px; color: #E8E2E6; }
.proof-track b { color: #fff; font-family: var(--display); }
.proof-track span { display: inline-flex; align-items: center; gap: 8px; }
.proof-track .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }

/* ---------- Press strip ---------- */
.press-logo { height: 30px; width: auto; max-width: 118px; object-fit: contain; filter: grayscale(1) brightness(2.4); opacity: .92; }

/* ---------- Stat counters ---------- */
.stats b { font-family: var(--display); font-weight: 700; color: #fff; }
.stats li { position: relative; }
.stats li + li::before { content: ''; position: absolute; left: -6px; top: 14%; bottom: 14%; width: 1px; background: rgba(255,255,255,.14); }

/* ---------- Future-pacing (subconscious "future self") ---------- */
.future { background: linear-gradient(180deg, var(--paper) 0%, var(--blush) 100%); }
.future-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 760px) { .future-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.future-card { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); background: var(--ink); }
.future-card img, .future-card .ph { width: 100%; height: 100%; object-fit: cover; }
.future-card figcaption { position: absolute; inset: auto 0 0 0; padding: 30px 12px 12px; color: #fff; font-size: 13.5px; font-weight: 600; line-height: 1.3;
  background: linear-gradient(to top, rgba(18,12,16,.9) 10%, rgba(18,12,16,0)); }
@media (min-width: 760px) { .future-card figcaption { font-size: 14.5px; } }
.future-note { margin-top: 26px; padding: 20px 18px; border-radius: 18px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); text-align: center; }
.future-note p { font-family: var(--display); font-size: clamp(17px, 3.6vw, 21px); font-weight: 600; line-height: 1.4; }
.future-note small { display: block; margin-top: 8px; color: var(--ink-3); font-size: 13px; }

/* ---------- Cost of waiting (loss aversion) ---------- */
.cost { background: var(--ink); color: #EFE9EC; }
.cost h2 { color: #fff; }
.cost .lead { color: #C9C2C7; }
.cost-grid { display: grid; gap: 12px; margin-top: 30px; }
@media (min-width: 760px) { .cost-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
.cost-col { padding: 22px 20px; border-radius: 20px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); }
.cost-col h3 { font-size: 20px; color: #fff; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.cost-col.good { border-color: rgba(7,141,127,.5); background: rgba(7,141,127,.1); }
.cost-col li { display: flex; gap: 10px; padding: 9px 0; font-size: 15px; color: #DCD5D9; }
.cost-col.bad .ico { color: #FF6B8A; } .cost-col.good .ico { color: #35D0B9; }

/* ---------- Testimonials in a familiar chat style ---------- */
.t-card blockquote { font-family: var(--sans); font-size: 15.5px; line-height: 1.55; font-weight: 500; }
.t-card { border-radius: 20px; }
.t-card::after { content: ''; position: absolute; left: 24px; bottom: -9px; width: 18px; height: 18px; background: var(--paper);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transform: rotate(45deg); }

/* ---------- Blocks as "locks" ---------- */
.block-card { border-radius: 20px; }
.block-ico { background: var(--accent-tint); color: var(--brand); }
.block-card:nth-child(2) .block-ico { background: var(--teal-tint); color: var(--teal); }
.block-card:nth-child(3) .block-ico { background: var(--cream); color: #B97609; }
.block-card:nth-child(4) .block-ico { background: #EDE7FB; color: #6D4AC4; }
.block-num { color: var(--accent-soft); font-family: var(--display); font-style: normal; }

/* ---------- Audit intro card ---------- */
.audit-card { border-color: var(--accent-soft); }
.audit-intro { background: linear-gradient(180deg, var(--blush) 0%, var(--ivory) 100%); }

/* ---------- Founder ---------- */
.founder-img { border-radius: 24px; }
.signature { font-family: var(--display); font-style: italic; color: var(--brand) !important; }
.creds .ico { color: var(--teal); }
.award-strip { display: flex; gap: 14px; align-items: center; margin-top: 16px; padding: 14px 16px; border-radius: 16px;
  background: linear-gradient(135deg, #FFFDF7, #F7EEDC); border: 1px solid var(--lux-soft); }
.award-strip .ico { color: var(--lux); flex: none; }
.award-strip b { display: block; font-family: var(--display); font-size: 15px; }
.award-strip small { color: var(--ink-3); font-size: 12.5px; }

/* ---------- Sticky CTA gets brand urgency ---------- */
.sticky-cta { border-top-color: var(--accent-tint); }
.sticky-note { display: block; text-align: center; font-size: 11.5px; color: var(--ink-3); margin-top: 6px; }

.ba-single .ba-img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 14px; }

/* CTA that sits with the score — the moment of highest intent */
.score-cta {
  display: inline-grid; justify-items: center; gap: 2px; margin-top: 22px; padding: 14px 26px;
  border-radius: 999px; text-decoration: none; color: #fff;
  background: linear-gradient(135deg, var(--brand-glow) 0%, var(--brand) 55%, var(--brand-deep) 100%);
  box-shadow: var(--shadow-brand); transition: transform .15s ease, box-shadow .2s ease;
  animation: ctaPulse 2.6s ease-in-out 1.2s 3;
}
.score-cta span { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16.5px; }
.score-cta .ico { margin-left: -4px; }
.score-cta small { font-size: 12px; opacity: .92; font-weight: 500; }
.score-cta:hover { transform: translateY(-1px); }
@keyframes ctaPulse { 0%, 100% { box-shadow: var(--shadow-brand); } 50% { box-shadow: 0 12px 30px rgba(231,24,128,.32), 0 0 0 10px rgba(231,24,128,.12); } }
@media (prefers-reduced-motion: reduce) { .score-cta { animation: none; } }
@media (max-width: 480px) { .score-cta { width: 100%; } }

/* Keep the pay bar visible on desktop too — it is the only offer prompt above the fold */
@media (min-width: 900px) {
  .sticky-cta.pay-bar { display: flex; left: auto; right: 24px; bottom: 24px; width: min(420px, 90vw); border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
}

/* ---------- Video testimonials (click-to-play facade) ---------- */
.v-card { padding: 10px; }
.v-card::after { display: none; }
.v-play { position: relative; display: block; width: 100%; padding: 0; border: 0; border-radius: 14px; overflow: hidden; cursor: pointer; background: var(--ink); }
.v-poster { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .3s ease, opacity .2s; }
.v-play:hover .v-poster { transform: scale(1.03); opacity: .9; }
.v-btn { position: absolute; inset: 0; margin: auto; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); transition: transform .2s ease; }
.v-play:hover .v-btn { transform: scale(1.08); }
.v-tag { position: absolute; left: 10px; bottom: 10px; font-style: normal; font-size: 11.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; background: rgba(255, 255, 255, .94); color: var(--ink); padding: 4px 10px; border-radius: 999px; }
.v-frame { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 14px; display: block; }
.v-card figcaption { padding: 12px 6px 4px; }
