/* ─── RESET & VARS ─────────────────────────────────────────────────────────── */
:root {
  --gold:    #C9A84C;
  --gold-l:  #F0D080;
  --gold-d:  #7A5C10;
  --gold-grad: linear-gradient(135deg, #F0D080 0%, #C9A84C 45%, #7A5C10 80%, #C9A84C 100%);
  --red:     #C0392B;
  --green:   #25D366;
  --black:   #060608;
  --b2:      #0E0E12;
  --b3:      #16161C;
  --b4:      #1E1E26;
  --b5:      #252530;
  --white:   #F2EDE4;
  --muted:   rgba(242,237,228,.52);
  --border:  rgba(201,168,76,.18);
  --radius:  5px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

/* BG radial atmosphere */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201,168,76,.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(192,57,43,.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 0% 60%, rgba(201,168,76,.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Grid lines */
.grid-bg {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ─── LOGO BAR ──────────────────────────────────────────────────────────────── */
.logo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #7f1d1d;
  border-bottom: 2px solid #ef4444;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-align: center;
}

/* ─── WRAPPER ───────────────────────────────────────────────────────────────── */
.funnel-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Na intro: body escuro, sem atmosphere/grid Kevin */
body.intro-mode {
  background: #0b0d12;
}
body.intro-mode::before { display: none; }
body.intro-mode .grid-bg { display: none; }

/* intro-root ocupa 100% da largura — sem restrição nenhuma */
#intro-root {
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Quiz e result têm o padding normal */
#s-quiz  { padding: 76px 1.4rem 2.5rem; width: 100%; }
#s-result { padding: 0.2rem 1.4rem 2rem; width: 100%; }

/* ─── SCREENS ───────────────────────────────────────────────────────────────── */
.screen { width: 100%; display: none; flex-direction: column; align-items: center; }
.screen.active {
  display: flex;
  animation: slideIn .22s cubic-bezier(.4,0,.2,1) both;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ─── INTRO ──────────────────────────────────────────────────────────────────── */

/* ① Barra topo verde */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  width: 100%;
  background: #7f1d1d;
  border-bottom: 2px solid #ef4444;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-align: center;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.top-bar-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #000;
  border-radius: 999px;
  padding: .15rem .65rem;
  color: #FBBF24;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .03em;
}

/* ② #s-intro = tela inteira com bg.jpg como fundo */
#s-intro {
  width: 100%;
  min-height: 100dvh;
  position: relative;
  flex-direction: column;
  align-items: center;
  /* bg.jpg cobre tudo */
  background: url('/static/bg.jpg') center top / cover no-repeat;
  overflow-x: hidden;
}

/* hero-section não existe mais como bloco separado */
.hero-section { display: none; }
.hero-glow    { display: none; }

/* sombra sutil só na metade inferior — texto legível, foto visível */
#s-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent          0%,
    transparent         35%,
    rgba(0,0,0,.45)     70%,
    rgba(0,0,0,.72)    100%
  );
  pointer-events: none;
}

/* Conteúdo flutua por cima do bg.jpg */
.intro-content-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 7rem 1.4rem 2.5rem;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  /* sem fundo — bg.jpg aparece aqui */
  background: transparent;
}

/* ③ Headline — sombra pra legibilidade sobre a foto */
.intro-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: .7rem;
  text-shadow: none;
}
.headline-green { color: #22c55e; }
.headline-gold {
  display: inline-block;
  background: linear-gradient(to right, #C4A865 0%, #7A6035 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ④ Subtítulo */
.intro-desc {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  max-width: 360px;
  margin: 0 auto 1.5rem;
}
.intro-desc strong {
  color: #fff;
  font-weight: 600;
}
.intro-desc strong.headline-gold {
  text-shadow: none;
}

/* negritos quiz/result — dourado Kevin */
.step-desc strong, .result-body strong {
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ⑤ Card benefícios */
/* ── Card container com relevo (benefícios + slider juntos) */
.benefits-card {
  width: 100%;
  max-width: 420px;
  background: #141720;            /* sólido opaco — cobre a foto */
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 1.1rem 1rem 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow:
    0 12px 40px rgba(0,0,0,.7),
    0 1px 0 rgba(255,255,255,.07) inset;
}
/* Cada tópico vira uma pill individual */
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: .7rem .9rem;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: #e8e8e8;
  text-align: left;
  background: #22262f;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  margin-bottom: .55rem;
}
.benefit-item:last-of-type {
  margin-bottom: 0;
}
.benefit-item .b-icon {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: rgba(16,185,129,.12);
  border: 1.5px solid rgba(16,185,129,.35);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: .9rem;
}
.benefit-divider {
  display: none; /* pills individuais dispensam divisor */
}

/* ⑥ Slider — dentro do card, com margem top separando dos pills */
.slider-wrap {
  width: 100%;
  max-width: 100%;
  position: relative;
  height: 58px;
  background: linear-gradient(to bottom, #00B140 0%, #008F30 100%);
  border-radius: 999px;
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  margin-top: .85rem;
  margin-bottom: .55rem;
}
.slider-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: sliderShimmer 2.2s linear infinite;
  pointer-events: none;
}
@keyframes sliderShimmer {
  0%   { left: -60%; }
  100% { left: 160%; }
}
/* handle — círculo preto */
.slider-handle {
  position: absolute;
  left: 4px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #000;
  display: grid; place-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.5);
  font-size: 1.4rem;
  z-index: 2;
  flex-shrink: 0;
  cursor: grab;
}
.slider-handle:active { cursor: grabbing; }

/* label centralizado no botão */
.slider-label {
  position: absolute;
  left: 0; right: 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(0,0,0,.75);
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

/* keyframe confete */
@keyframes confettiFall {
  0%   { transform: translateY(0) rotate(0deg);   opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}
.cta-hint {
  font-size: .67rem;
  color: rgba(255,255,255,.38);
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin-bottom: .2rem;
}
.cta-subhint {
  font-size: .65rem;
  color: rgba(255,255,255,.25);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}
.social-proof {
  margin-top: 1.2rem;
  font-size: .68rem;
  color: rgba(255,255,255,.3);
  font-family: 'Poppins', sans-serif;
  letter-spacing: .02em;
}

/* ── DESKTOP ── */
@media (min-width: 700px) {
  .intro-content-wrap {
    max-width: 520px;
    padding: 3rem 2rem 3.5rem;
  }
  .intro-headline { font-size: 2.2rem; }
  .benefits-card  { max-width: 460px; }
}

.start-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold), var(--gold-l));
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 1.1rem 3rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: 0 0 40px rgba(201,168,76,.35), 0 8px 30px rgba(0,0,0,.5);
  animation: pulseGold 3s infinite;
}
.start-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transition: left .55s;
}
.start-btn:hover::before { left: 160%; }
.start-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 65px rgba(201,168,76,.55), 0 12px 40px rgba(0,0,0,.6);
}
@keyframes pulseGold {
  0%,100% { box-shadow: 0 0 40px rgba(201,168,76,.32), 0 8px 30px rgba(0,0,0,.5); }
  50%      { box-shadow: 0 0 70px rgba(201,168,76,.58), 0 8px 30px rgba(0,0,0,.5); }
}

.steps-count {
  margin-top: 1rem;
  font-size: .65rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: rgba(242,237,228,.28);
}

/* ─── URGENCY STRIP ─────────────────────────────────────────────────────────── */
.urgency-strip {
  width: 100%;
  background: linear-gradient(90deg, rgba(192,57,43,.1), rgba(192,57,43,.2), rgba(192,57,43,.1));
  border: 1px solid rgba(192,57,43,.25);
  border-radius: var(--radius);
  padding: .65rem 1.2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 9px;
  margin-top: 1.5rem;
  font-size: .75rem;
  letter-spacing: .08em;
  color: rgba(242,237,228,.7);
}
.urgency-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.urgency-strip strong { color: var(--white); margin: 0 3px; }

/* ─── PROGRESS ──────────────────────────────────────────────────────────────── */
.progress-area { width: 100%; margin-bottom: 1rem; }
.progress-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .45rem;
}
.progress-label {
  font-family: 'Poppins', sans-serif;
  font-size: .63rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.progress-label strong {
  color: #fff;
  font-weight: 700;
}
.progress-pct {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: #22C189;
}
.progress-track {
  height: 7px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1a9e6e 0%, #22C189 60%, #4eedb3 100%);
  border-radius: 99px;
  transition: width .55s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.progress-shimmer {
  position: absolute;
  top: 0; left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.45) 50%, transparent 100%);
  border-radius: 99px;
  animation: shimmerSlide 1.6s ease-in-out infinite;
}
@keyframes shimmerSlide {
  0%   { left: -60%; }
  100% { left: 120%; }
}

/* ─── BACK BUTTON ───────────────────────────────────────────────────────────── */
.back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none;
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  letter-spacing: .08em;
  cursor: pointer;
  padding: .35rem 0;
  margin-bottom: .9rem;
  transition: color .2s;
  align-self: flex-start;
}
.back-btn:hover { color: var(--gold); }

/* ─── STEP CARD ─────────────────────────────────────────────────────────────── */
.step-card {
  width: 100%;
  background: var(--b2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.7rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(201,168,76,.04);
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

.step-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: .75rem;
  line-height: 1;
}

.step-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: .58rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .45rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,.3), transparent);
}

.step-question {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.05rem, 3vw, 1.4rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: .55rem;
}

.step-desc {
  font-size: .83rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1.3rem;
}

/* ─── OPTIONS ───────────────────────────────────────────────────────────────── */
.options-grid { display: grid; gap: .6rem; }
.options-grid.two-col { grid-template-columns: 1fr 1fr; }
.options-grid.one-col { grid-template-columns: 1fr; }

.option-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--b3);
  border: 1px solid rgba(201,168,76,.13);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.4;
  transition: all .22s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.option-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.07), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.option-btn:hover::before { opacity: 1; }
.option-btn:hover {
  border-color: rgba(201,168,76,.5);
  background: var(--b4);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.35), 0 0 0 1px rgba(201,168,76,.1);
}
.option-btn.selected {
  border-color: #22C189;
  background: rgba(34,193,137,.1);
  box-shadow: 0 0 0 1.5px #22C189, 0 6px 24px rgba(34,193,137,.18);
  animation: selectPop .22s ease;
}
.option-btn.selected .opt-label { color: #22C189; }
.option-btn.selected .opt-icon {
  background: rgba(34,193,137,.15);
  border-color: rgba(34,193,137,.4);
}
@keyframes selectPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(.975); }
  100% { transform: scale(1); }
}

/* check animado */
.opt-arrow--checked {
  color: #22C189 !important;
  transform: none !important;
}
.opt-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: #22C189;
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
  animation: checkPop .25s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes checkPop {
  0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg);  opacity: 1; }
}

/* ─── LOADING SCREEN ─────────────────────────────────────────────────────────── */
#s-loading {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.4rem;
}
.ld-wrap {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.ld-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.ld-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}
.ld-title em {
  font-style: normal;
  background: linear-gradient(to right, #C4A865 0%, #F0D080 50%, #C4A865 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ld-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.8rem;
}
.ld-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  opacity: .38;
  transition: opacity .3s, border-color .3s, background .3s;
}
.ld-item--active {
  opacity: 1;
  border-color: rgba(196,168,101,.35);
  background: rgba(196,168,101,.07);
}
.ld-item--done {
  border-color: rgba(34,193,137,.35);
  background: rgba(34,193,137,.06);
}
.ld-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  display: grid; place-items: center;
}
.ld-spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(196,168,101,.2);
  border-top-color: #C4A865;
  border-radius: 50%;
  animation: ldSpin .7s linear infinite;
}
@keyframes ldSpin {
  to { transform: rotate(360deg); }
}
.ld-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: #22C189;
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
  animation: checkPop .25s cubic-bezier(.34,1.56,.64,1) both;
}
.ld-text {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
}
.ld-item--done .ld-text {
  color: rgba(255,255,255,.95);
}
.ld-bar-wrap {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: .9rem;
}
.ld-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #C4A865, #F0D080);
  border-radius: 99px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}
.ld-foot {
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}

.opt-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: rgba(201,168,76,.07);
  border-radius: 3px;
  border: 1px solid rgba(201,168,76,.12);
}
.opt-text { flex: 1; }
.opt-label { display: block; font-weight: 500; color: var(--white); }
.opt-sub   { display: block; font-size: .70rem; color: var(--muted); margin-top: 2px; }
.opt-arrow {
  color: rgba(201,168,76,.3);
  font-size: .85rem;
  transition: all .2s;
  flex-shrink: 0;
}
.option-btn:hover .opt-arrow { color: var(--gold); transform: translateX(4px); }

/* ─── RESULT ────────────────────────────────────────────────────────────────── */
.result-card { width: 100%; text-align: center; }

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.28);
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: .58rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: .9rem;
}
.result-badge::before, .result-badge::after { content: '◆'; font-size: .4rem; }

/* Score ring */
.result-score {
  position: relative;
  margin: 0 auto 1rem;
  width: 110px; height: 110px;
}
.score-ring { width: 110px; height: 110px; transform: rotate(-90deg); }
.score-ring-bg  { fill: none; stroke: rgba(201,168,76,.1); stroke-width: 6; }
.score-ring-fill {
  fill: none;
  stroke: url(#goldGrad);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 333;
  stroke-dashoffset: 333;
  transition: stroke-dashoffset 1.6s cubic-bezier(.4,0,.2,1) .3s;
}
.score-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.score-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.score-unit {
  font-size: .58rem;
  letter-spacing: .03em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.result-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: .5rem;
  color: var(--white);
}
.result-title em {
  font-style: normal;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-body {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 1rem;
}

/* Checklist */
.checklist {
  display: flex; flex-direction: column; gap: .4rem;
  text-align: left;
  background: var(--b3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .9rem 1.2rem;
  margin-bottom: 1.2rem;
}
.check-item {
  display: flex; align-items: center;
  gap: 12px;
  font-size: .87rem;
  color: var(--white);
}
.check-icon {
  width: 22px; height: 22px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.28);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #25D366;
  font-size: .62rem;
  flex-shrink: 0;
}

/* CTA WhatsApp */
.cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(135deg, #1a8a1a, #25d366 50%, #1aaa3a);
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: 1.2rem 2.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
  box-shadow: 0 0 40px rgba(37,211,102,.3), 0 8px 30px rgba(0,0,0,.5);
  animation: pulseGreen 2.5s infinite;
}
.cta-main::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transition: left .55s;
}
.cta-main:hover::before { left: 160%; }
.cta-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(37,211,102,.5), 0 12px 40px rgba(0,0,0,.6);
}
.cta-main svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
@keyframes pulseGreen {
  0%,100% { box-shadow: 0 0 40px rgba(37,211,102,.28), 0 8px 30px rgba(0,0,0,.5); }
  50%      { box-shadow: 0 0 65px rgba(37,211,102,.52), 0 8px 30px rgba(0,0,0,.5); }
}

.cta-under {
  margin-top: .85rem;
  font-size: .65rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: rgba(242,237,228,.28);
  text-align: center;
}

/* Countdown timer no result */
.result-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.4rem;
  font-size: .75rem;
  letter-spacing: .08em;
  color: rgba(242,237,228,.5);
}
.timer-val {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--white);
}

/* ─── MOBILE ────────────────────────────────────────────────────────────────── */
@media (max-width: 560px) {
  .step-card { padding: 1.1rem 1.1rem 1.5rem; }
  .options-grid.two-col { grid-template-columns: 1fr; }
  #s-quiz, #s-result { padding: 80px 1rem 2.5rem; }
  .hero-section { height: 260px; }
  .intro-content-wrap { padding: 5rem 1.1rem 2rem; }
  .intro-headline { font-size: 1.55rem; }
}
