/* ===================== DESIGN TOKENS ===================== */
:root {
  --primary: #2d1b4e;
  --primary-light: #3f2a63;
  --accent: #c9a6f7;
  --accent-dark: #a875e8;
  --coral: #ff6f91;
  --cream: #faf8fc;
  --cream-2: #f1eaf7;
  --text-dark: #1f2421;
  --text-muted: #6b7a70;
  --white: #ffffff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 8px 30px rgba(45, 27, 78, 0.10);
  --shadow-card: 0 4px 16px rgba(45, 27, 78, 0.07);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html, body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

img { max-width: 100%; display: block; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

a { color: inherit; }

.screen { min-height: 100vh; }

/* ===================== QUIZ HEADER ===================== */
.quiz-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-2);
}

.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
  transition: opacity .2s, transform .15s;
}
.back-btn:active { transform: scale(0.92); }
.back-btn.hidden { opacity: 0; pointer-events: none; }

.progress-track {
  flex: 1;
  height: 8px;
  background: var(--cream-2);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  border-radius: 99px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* ===================== QUIZ CONTENT ===================== */
.quiz-content {
  max-width: 560px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

.step {
  animation: stepIn .4s cubic-bezier(.16,1,.3,1);
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.step h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--primary);
}

.step-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Hero (step 1) */
.hero-cover {
  text-align: center;
  padding-top: 20px;
}
.hero-cover .hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 20px;
}
.hero-cover h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.hero-cover .hero-sub-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ===================== OPTIONS ===================== */
.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  box-shadow: var(--shadow-card);
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all .15s ease;
}

.option:hover { border-color: var(--accent-dark); transform: translateY(-1px); }
.option:active { transform: scale(0.98); }

.option.selected {
  border-color: var(--accent-dark);
  background: linear-gradient(0deg, rgba(201,166,247,.18), rgba(201,166,247,.18)), var(--white);
}

.option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream-2);
  font-size: 22px;
  flex-shrink: 0;
}

.option-icon-img {
  width: 56px;
  height: 56px;
  overflow: hidden;
}
.option-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.option.has-image { padding: 10px 18px; }

.option-label { flex: 1; line-height: 1.35; }

/* Hero banner (large image above options on some single-choice steps) */
.hero-banner {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}
.hero-banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.option-check {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 2px solid var(--cream-2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s ease;
}
.option.multi .option-check { border-radius: 7px; }
.option:not(.multi) .option-check { border-radius: 50%; }
.option.selected .option-check {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--primary);
}
.option-check svg { opacity: 0; transition: opacity .1s; }
.option.selected .option-check svg { opacity: 1; }

.option-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 24px;
  background: var(--primary);
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform .15s, opacity .2s;
}
.btn-primary:active { transform: scale(0.98); }
.btn-primary[disabled] {
  opacity: .4;
  pointer-events: none;
}

.btn-fixed-bottom {
  position: sticky;
  bottom: 20px;
  margin-top: 28px;
}

/* ===================== INFO / INTERSTITIAL STEPS ===================== */
.info-step { text-align: center; padding-top: 10px; }

.info-visual {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 3;
  margin: 0 auto 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.info-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.info-step h2 { font-size: 24px; margin-bottom: 16px; }

.info-step p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.info-step p.info-strong {
  color: var(--primary);
  font-weight: 600;
}

.info-step .btn-primary { margin-top: 28px; }

/* ===================== SLIDER STEPS ===================== */
.slider-step { padding-top: 10px; }

.unit-toggle {
  display: inline-flex;
  background: var(--cream-2);
  border-radius: 99px;
  padding: 4px;
  margin-bottom: 32px;
}
.unit-toggle button {
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all .2s;
}
.unit-toggle button.active {
  background: var(--primary);
  color: var(--accent);
}

.slider-display {
  text-align: center;
  margin-bottom: 36px;
}
.slider-display .value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
}
.slider-display .unit {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 6px;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 99px;
  background: var(--cream-2);
  outline: none;
  margin-bottom: 12px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 6px solid var(--accent-dark);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 6px solid var(--accent-dark);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.slider-minmax {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ===================== LOADING STEPS ===================== */
.loading-step { text-align: center; padding-top: 30px; }

.loading-ring {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  position: relative;
}
.loading-ring svg { transform: rotate(-90deg); }
.loading-ring circle {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}
.loading-ring .ring-bg { stroke: var(--cream-2); }
.loading-ring .ring-fg {
  stroke: var(--accent-dark);
  transition: stroke-dashoffset .3s linear;
}
.loading-ring .ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.loading-step h2 { margin-bottom: 28px; }

.loading-tasks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.loading-task {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .3s;
}
.loading-task.done {
  color: var(--primary);
}
.loading-task .task-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--cream-2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.loading-task.done .task-icon {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--primary);
}
.loading-task .task-icon svg { opacity: 0; transition: opacity .15s; }
.loading-task.done .task-icon svg { opacity: 1; }

.loading-step .social-proof {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===================== GRAPH STEP ===================== */
.graph-step { padding-top: 10px; }
.graph-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}
.graph-card-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.graph-svg { width: 100%; height: 140px; display: block; }
.graph-card-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.graph-point { display: flex; flex-direction: column; }
.graph-point-end { text-align: right; }
.graph-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}
.graph-label {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===================== RESULT SCREEN ===================== */
.result-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 10;
}
.result-topbar .logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--white);
}

.result-hero {
  background: var(--primary);
  color: var(--white);
  padding: 36px 20px 44px;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(201,166,247,.18);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
}
.result-hero h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  max-width: 480px;
  margin-inline: auto;
}
.hero-sub {
  font-size: 15.5px;
  color: rgba(255,255,255,.78);
  max-width: 460px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.hero-sub strong { color: var(--accent); }

.chart-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.chart-card-head {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.chart-svg { width: 100%; height: 130px; display: block; }
.chart-card-foot { display: flex; justify-content: space-between; margin-top: 8px; }
.chart-point { display: flex; flex-direction: column; }
.chart-point-end { text-align: right; }
.chart-value { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--primary); }
.chart-label { font-size: 12.5px; color: var(--text-muted); font-weight: 600; }

/* ===================== RESULT SECTIONS ===================== */
.result-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 20px;
}
.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 28px;
}

.plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.plan-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168,117,232,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan-list li::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,166,247,.16), transparent 55%);
  pointer-events: none;
}
.plan-list li::after {
  content: '✨';
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 14px;
  opacity: .55;
  filter: drop-shadow(0 0 4px rgba(201,166,247,.8));
}
.plan-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(168,117,232,.22);
}
.plan-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(168,117,232,.35), inset 0 1px 0 rgba(255,255,255,.5);
  position: relative;
  z-index: 1;
}
.plan-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15.5px;
  color: var(--primary);
  position: relative;
  z-index: 1;
}
.plan-list p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.plan-list li > div { position: relative; z-index: 1; }

/* Pricing */
.pricing-section { padding-top: 8px; }
.urgency-badge {
  text-align: center;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}
.pricing-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.pricing-old { font-size: 15px; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.pricing-old span { text-decoration: line-through; }
.pricing-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}
.pricing-new {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 18px;
}
.pricing-new span { font-size: 18px; font-weight: 600; }
.visible-results {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}
.cta-button {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: var(--primary);
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(168,117,232,.3);
}
.cta-button:hover { transform: translateY(-2px); }
.cta-button:active { transform: scale(0.98); }

.payment-strip {
  display: block;
  max-width: 280px;
  margin: 20px auto 0;
  border-radius: var(--radius-sm);
  opacity: .92;
}

/* Testimonials */
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid rgba(168,117,232,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(168,117,232,.22);
}
.testimonial-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--primary);
}
.testimonial-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.testimonial-body { padding: 16px 18px; }

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--primary);
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  box-shadow: 0 4px 12px rgba(168,117,232,.35), inset 0 1px 0 rgba(255,255,255,.5);
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.testimonial-loc {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-dark);
  background: rgba(201,166,247,.18);
  padding: 2px 8px;
  border-radius: 99px;
}
.testimonial-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.4;
}
.testimonial-result {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--accent-dark);
  background: linear-gradient(135deg, rgba(201,166,247,.22), rgba(168,117,232,.14));
  border: 1px solid rgba(168,117,232,.25);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 8px;
}
.testimonial-stars {
  font-size: 14px;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 6px rgba(201,166,247,.7));
}

/* Transformations gallery */
.transformations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.transformations img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

@media (max-width: 480px) {
  .transformations { grid-template-columns: 1fr; }
  .transformations img { aspect-ratio: 4 / 3; }
}

/* Guarantee */
.guarantee-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  flex-wrap: wrap;
}
.guarantee-badge {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  margin: 0 auto;
}
.guarantee-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(var(--shadow-card));
}
.guarantee-content { flex: 1; min-width: 220px; }
.guarantee-content h2 { font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.guarantee-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 8px; }
.guarantee-content a { color: var(--primary); font-weight: 700; text-decoration: underline; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
}
.faq-item summary {
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--accent-dark);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
}

/* Footer */
.result-footer {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 20px 64px;
  text-align: center;
}
.result-footer p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.legal-text { font-size: 11.5px; line-height: 1.6; color: #9aa6a0; }

/* ===================== MODAL ===================== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(45,27,78,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.modal[hidden] {
  display: none;
}
.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.modal-icon { font-size: 44px; margin-bottom: 12px; }
.modal-card h3 { font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.modal-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 26px;
  color: var(--text-muted);
  line-height: 1;
}

/* ===================== RESPONSIVE ===================== */
@media (min-width: 720px) {
  .quiz-content { padding-top: 48px; }
  .step h2 { font-size: 30px; }
  .hero-cover h1 { font-size: 40px; }
  .result-hero h1 { font-size: 36px; }
}
