/* ============================================================
   QUIZ — AGÊNCIA HIGHER DIAGNÓSTICO DIGITAL
   ============================================================ */

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

:root {
  --brand-orange: #bce769;
  --brand-orange-light: #d4f28d;
  --brand-orange-glow: rgba(188, 231, 105, 0.3);
  --brand-purple: #050401;
  --brand-purple-light: #FFFAFF;
  --brand-green: #22C55E;
  --brand-green-glow: rgba(34,197,94,0.25);

  --bg-darkest: #050401;
  --bg-dark: #0E0D0C;
  --bg-card: #151413;
  --bg-card-hover: #1E1D1B;
  --bg-glass: rgba(5, 4, 1, 0.8);
  --bg-glass-border: rgba(255, 250, 255, 0.08);

  --text-primary: #FFFAFF;
  --text-secondary: #D0CED3;
  --text-muted: #8E8D8C;

  --grad-brand: linear-gradient(135deg, #bce769 0%, #050401 100%);
  --grad-cta: linear-gradient(135deg, #bce769, #a3cb5b);
  --grad-card: linear-gradient(145deg, #151413, #0E0D0C);
  --grad-green: linear-gradient(135deg, #22C55E, #16A34A);
  --grad-gold: linear-gradient(135deg, #bce769, #F59E0B);
  --grad-pro: linear-gradient(135deg, #bce769, #050401);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --trans-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Outfit', system-ui, sans-serif;
  background: var(--bg-darkest);
  color: var(--text-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Animated BG */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(188, 231, 105, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(188, 231, 105, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.gradient-text {
  background: linear-gradient(135deg, #bce769 0%, #d4f28d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   QUIZ NAV
   ============================================================ */
.quiz-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
  background: rgba(5,4,1,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.quiz-nav-center {
  flex: 1;
}

.quiz-step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-icon {
  width: 32px; height: 32px;
  background: var(--grad-brand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff;
}

.quiz-nav-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; padding: 1.5rem 0; }

.logo-wrap { 
  display: flex; 
  flex-direction: column; 
  overflow: hidden;
  height: 48px;
  align-items: center;
  justify-content: center;
}
.logo-main { 
  height: auto; 
  width: 170px; 
  display: block; 
  margin-top: -22px; 
  object-fit: contain;
  flex-shrink: 0;
}

.nav-back {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--text-primary); }

/* ============================================================
   QUIZ WRAPPER
   ============================================================ */
.quiz-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-screen {
  display: none;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  animation: screen-enter 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.quiz-screen.active { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 70px); }

/* ============================================================
   QUESTION SCREEN — Q-SHELL
   ============================================================ */
#screen-questions.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.q-shell {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.q-header {
  text-align: center;
}

.q-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.q-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--grad-cta);
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #050401;
  box-shadow: 0 4px 14px rgba(188, 231, 105, 0.4);
  flex-shrink: 0;
}

.q-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

.q-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.q-hint {
  font-size: 1rem;
  color: var(--text-secondary);
  opacity: 0.8;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Navigation dots */
.q-footer {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.q-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.q-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: all 0.3s ease;
}

.q-dot.active {
  background: var(--brand-orange);
  width: 24px;
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(188, 231, 105, 0.5);
}

.q-dot.done {
  background: rgba(188, 231, 105, 0.4);
}

@keyframes screen-enter {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================================
   INTRO SCREEN
   ============================================================ */
.intro-content { flex: 1; min-width: 260px; }

.intro-badge {
  display: inline-block;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #4ade80;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.intro-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.intro-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 480px;
}
.intro-subtitle strong { color: var(--text-primary); }

.intro-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.intro-disclaimer {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Visual Ring Animation */
.intro-visual {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: spin-ring linear infinite;
}

.ring-1 {
  inset: 0;
  border-top-color: var(--brand-orange);
  border-right-color: rgba(188, 231, 105, 0.3);
  animation-duration: 4s;
}
.ring-2 {
  inset: 20px;
  border-top-color: var(--brand-orange);
  border-left-color: rgba(188, 231, 105, 0.3);
  animation-duration: 6s;
  animation-direction: reverse;
}
.ring-3 {
  inset: 42px;
  border-bottom-color: #050401;
  border-right-color: rgba(5, 4, 1, 0.3);
  animation-duration: 8s;
}

@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.visual-center {
  position: absolute;
  inset: 62px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.visual-percent {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.visual-label {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.quiz-progress-wrap {
  margin-bottom: 2.5rem;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.progress-step {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.progress-pct {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.progress-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--grad-brand);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(to right, transparent, rgba(188, 231, 105, 0.3));
  border-radius: 999px;
}

/* ============================================================
   QUESTION CARD
   ============================================================ */
.question-card {
  animation: q-enter 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes q-enter {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes q-exit-left {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-30px); }
}

.question-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.question-num {
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.question-category {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.question-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.question-hint {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Options */
.options-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.options-grid.cols-2 { 
  grid-template-columns: repeat(2, 1fr); 
}

@media (max-width: 650px) {
  .options-grid.cols-2 { grid-template-columns: 1fr; }
}

.option-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.option-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--brand-orange-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.option-card:hover {
  border-color: rgba(252, 81, 48, 0.5);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.option-card.selected {
  border-color: var(--brand-orange);
  background: rgba(252, 81, 48, 0.1);
  box-shadow: 0 0 30px var(--brand-orange-glow);
  transform: scale(0.98);
}

.option-emoji {
  font-size: 2.2rem;
  margin-bottom: 0.25rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.option-card:hover .option-emoji {
  transform: scale(1.2) rotate(5deg);
}

.option-content {
  width: 100%;
}

.option-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  display: block;
}

.option-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 28px;
  height: 28px;
  background: var(--brand-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 10px rgba(188, 231, 105, 0.4);
}

.option-card.selected .option-check {
  opacity: 1;
  transform: scale(1);
}

/* Slider option */
.slider-option {
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.slider-current {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slider-track-wrap {
  position: relative;
  margin-bottom: 1.25rem;
}

input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-cta);
  box-shadow: 0 0 12px rgba(188, 231, 105, 0.5);
  cursor: pointer;
  transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   QUIZ NAVIGATION BUTTONS
   ============================================================ */
.quiz-nav-btns {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: var(--trans-smooth);
  outline: none;
  text-decoration: none;
}

.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

.btn-primary {
  background: var(--grad-cta);
  color: #050401;
  box-shadow: 0 4px 18px rgba(188, 231, 105, 0.35);
}
.btn-primary:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(188, 231, 105, 0.5);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }

.btn-xl { font-size: 1.05rem; padding: 1.1rem 2.5rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; }

/* ============================================================
   LEAD FORM STEP
   ============================================================ */
#screen-lead { display: none; flex-direction: column; align-items: center; justify-content: center; }
#screen-lead.active { display: flex; }

.lead-step {
  background: var(--bg-card);
  background-image: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 650px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.lead-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-brand);
}

.lead-badge {
  display: inline-block;
  background: rgba(252, 81, 48, 0.1);
  border: 1px solid rgba(252, 81, 48, 0.2);
  color: var(--brand-orange);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lead-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.lead-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.lead-form { text-align: left; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1.1rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 2;
}

.icon-textarea {
  top: 1rem;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1rem 1rem 1rem 3rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.25s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.input-wrapper textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-color: var(--brand-orange);
  background: rgba(252, 81, 48, 0.03);
  box-shadow: 0 0 0 4px rgba(252, 81, 48, 0.15), inset 0 2px 4px rgba(0,0,0,0.1);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.btn-submit-lead {
  width: 100%;
  font-size: 1.1rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--grad-cta);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: var(--trans-smooth);
  box-shadow: 0 4px 18px rgba(255,107,26,0.35);
}

.btn-submit-lead:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,26,0.5);
}

.lead-privacy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
}

/* ============================================================
   RESULT SCREEN
   ============================================================ */
#screen-result { display: none; flex-direction: column; align-items: center; }
#screen-result.active { display: flex; }

.result-tagline-txt {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-orange);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.result-project-desc {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.result-includes-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.result-includes-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.result-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.result-includes-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.result-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(252, 81, 48, 0.06);
  border: 1px solid rgba(252, 81, 48, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
}

.result-deadline {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.result-deadline strong {
  color: var(--brand-orange);
  font-weight: 700;
}

.result-wrapper {
  width: 100%;
  max-width: 750px;
}

/* Score meter */
.score-meter-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.score-meter {
  position: relative;
  width: 180px; height: 90px;
  margin: 0 auto 1.25rem;
  overflow: hidden;
}

.score-arc-bg {
  width: 180px; height: 90px;
  border-radius: 90px 90px 0 0;
  border: 12px solid rgba(255,255,255,0.06);
  border-bottom: none;
  position: absolute;
  bottom: 0; left: 0;
}

.score-arc-fill {
  width: 180px; height: 90px;
  border-radius: 90px 90px 0 0;
  border: 12px solid transparent;
  border-bottom: none;
  position: absolute;
  bottom: 0; left: 0;
  transform-origin: bottom center;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(0deg);
}

.score-number {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.score-label-below {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Plan Result Card */
.plan-result-card {
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.plan-result-header {
  padding: 2.5rem 2.5rem 1.5rem;
  text-align: center;
  position: relative;
}

.plan-result-badge {
  display: inline-block;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-result-emoji { font-size: 3.5rem; display: block; margin-bottom: 0.75rem; }

.plan-result-name {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.plan-result-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

.plan-result-body {
  background: var(--bg-card);
  padding: 2rem 2.5rem;
}

.result-score-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.score-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.score-circle .score-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.score-circle .score-unit { font-size: 0.65rem; color: rgba(255,255,255,0.7); }

.score-insight { flex: 1; }
.score-insight-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.score-insight-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.55; }

.result-includes-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.result-includes-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.result-include-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.result-include-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.result-explanation {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--brand-orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.result-explanation strong { color: var(--text-primary); }

/* Summary Chips */
.answers-summary {
  margin-bottom: 2rem;
}

.answers-summary-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.answers-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.answer-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* CTA Result Buttons */
.result-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-result-primary {
  background: var(--grad-cta);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1.1rem 2rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 6px 25px rgba(255,107,26,0.4);
  transition: var(--trans-smooth);
  animation: pulse-cta 2.5s ease-in-out infinite;
}

.btn-result-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,107,26,0.6);
  animation: none;
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 6px 25px rgba(255,107,26,0.4); }
  50% { box-shadow: 0 6px 35px rgba(255,107,26,0.65), 0 0 0 8px rgba(255,107,26,0.08); }
}

.btn-result-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--trans-smooth);
}
.btn-result-secondary:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }

.result-restart {
  text-align: center;
  margin-top: 1.25rem;
}
.restart-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.restart-link:hover { color: var(--text-secondary); }

/* ============================================================
   PLAN THEMES
   ============================================================ */
.theme-starter .plan-result-header { background: linear-gradient(135deg, #1a3a1a 0%, #0f2010 100%); }
.theme-starter .score-arc-fill { border-color: var(--brand-green); }
.theme-starter .score-number { color: var(--brand-green); }
.theme-starter .score-circle { background: var(--grad-green); }
.theme-starter .result-explanation { border-left-color: var(--brand-green); }

.theme-growth .plan-result-header { background: var(--grad-gold); }
.theme-growth .score-arc-fill { border-color: #F59E0B; }
.theme-growth .score-number { color: #F59E0B; }
.theme-growth .score-circle { background: var(--grad-gold); }
.theme-growth .result-explanation { border-left-color: #F59E0B; }

.theme-pro .plan-result-header { background: var(--grad-pro); }
.theme-pro .score-arc-fill { border-color: var(--brand-purple-light); }
.theme-pro .score-number { color: var(--brand-purple-light); }
.theme-pro .score-circle { background: var(--grad-pro); }
.theme-pro .result-explanation { border-left-color: var(--brand-purple-light); }

/* ============================================================
   CONFETTI
   ============================================================ */
.confetti-piece {
  position: fixed;
  top: -10px;
  border-radius: 2px;
  animation: confetti-fall linear forwards;
  z-index: 9999;
  pointer-events: none;
}

@keyframes confetti-fall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .quiz-screen.active { flex-direction: column; padding: 1.5rem 1rem; }
  .intro-visual { display: none; }
  .options-grid.cols-2 { grid-template-columns: 1fr; }
  .plan-result-body { padding: 1.5rem; }
  .plan-result-header { padding: 2rem 1.5rem 1.25rem; }
  .btn-xl { font-size: 0.95rem; padding: 1rem 1.75rem; }
  .contact-step { padding: 2rem 1.5rem; }
  .quiz-nav { padding: 0.9rem 1rem; }
  .quiz-nav-label { display: none; }
  .score-meter { display: none; }
}
