:root {
  --bg: #fffef5;
  --bg-white: #ffffff;
  --red: #e53935;
  --red-dark: #c62828;
  --red-light: #ffebee;
  --navy: #1a237e;
  --blue: #1565c0;
  --gold: #ffd700;
  --gold-dark: #f9a825;
  --green: #2e7d32;
  --green-light: #e8f5e9;
  --text: #222;
  --text-muted: #555;
  --border: #333;
  --fb-blue: #1877f2;
  --fb-bg: #f0f2f5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}

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

a {
  color: #80cbc4;
}

/* ===== Marquee ===== */
.marquee-wrap {
  background: linear-gradient(90deg, #b8860b, var(--gold), #b8860b);
  overflow: hidden;
  white-space: nowrap;
}

.marquee {
  display: inline-block;
  animation: marquee 18s linear infinite;
  font-weight: 800;
  font-size: 13px;
  color: #1a1a1a;
  letter-spacing: 2px;
  padding: 8px 0;
}

.marquee span {
  padding: 0 24px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Page shell ===== */
.page {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
}

/* ===== Logo ===== */
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo-bar img {
  height: 28px;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  background: var(--fb-bg);
  border-radius: 8px;
  padding: 3px;
}

.lang-btn {
  padding: 5px 10px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  transition: all 0.2s;
  line-height: 1.2;
}

.lang-btn:hover {
  color: var(--navy);
}

.lang-btn.active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

/* ===== Hero gallery ===== */
.hero-gallery {
  background: var(--bg-white);
}

.hero-main {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  cursor: pointer;
}

.hero-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px 10px 12px;
  overflow-x: auto;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.hero-thumbs img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.hero-thumbs img.active {
  border-color: var(--red);
}

/* ===== Content blocks ===== */
.block {
  padding: 18px 14px;
  background: var(--bg);
}

.block-white {
  background: var(--bg-white);
}

.headline {
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  line-height: 1.35;
  margin-bottom: 8px;
}

.subheadline {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.45;
}

.section-title {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-desc {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 16px;
  font-weight: 600;
}

/* ===== Benefit grid (Hero) ===== */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.benefit-card {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}

.benefit-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
}

.benefit-card strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
}

/* ===== Price box ===== */
.price-box {
  text-align: center;
  background: linear-gradient(135deg, #fff9c4, #fff);
  border: 2px solid var(--gold-dark);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.price-old {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  font-weight: 700;
}

.price-new {
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
  line-height: 1.1;
}

.price-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 4px;
}

/* ===== CTA Button ===== */
.cta-btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 12px;
  padding: 16px 24px;
  background: linear-gradient(180deg, #ef5350, var(--red-dark));
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 0 #8b0000, 0 8px 20px rgba(229, 57, 53, 0.45);
  letter-spacing: 0.5px;
  transition: transform 0.15s;
  font-family: inherit;
}

.cta-btn:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #8b0000, 0 5px 12px rgba(229, 57, 53, 0.35);
}

.cta-note {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 4px;
}

/* ===== Goal selection ===== */
.goal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.goal-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all 0.2s;
}

.goal-btn:active,
.goal-btn.selected {
  border-color: var(--green);
  background: var(--green-light);
}

.goal-letter {
  width: 28px;
  height: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.goal-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.goal-hint {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px;
  background: #f5f5f5;
  border-radius: 8px;
}

.goal-hint.active {
  color: var(--green);
  background: var(--green-light);
  font-weight: 800;
}

/* ===== Quiz / Assessment ===== */
.assessment-ref {
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid #eee;
}

.quiz-progress {
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  margin-bottom: 16px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #66bb6a);
  border-radius: 3px;
  width: 25%;
  transition: width 0.3s ease;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.quiz-q {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

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

.quiz-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.quiz-option:has(input:checked) {
  border-color: var(--blue);
  background: #e3f2fd;
}

.quiz-option input {
  margin-top: 2px;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.quiz-nav {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
}

.quiz-nav-btn {
  width: 60%;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  border: 2px solid #ddd;
  background: #fff;
  transition: all 0.2s;
  text-align: center;
}

.quiz-nav-btn.primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.quiz-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Quiz result */
.quiz-result {
  margin-top: 20px;
  padding: 20px 16px;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 14px;
  text-align: center;
}

.result-score-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.result-score {
  font-size: 48px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.result-max {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
}

.result-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 12px;
}

.result-badge.excellent { background: #1b5e20; color: #fff; }
.result-badge.good { background: #43a047; color: #fff; }
.result-badge.mild { background: #fdd835; color: #333; }
.result-badge.moderate { background: #ff9800; color: #fff; }
.result-badge.attention { background: #e53935; color: #fff; }

.result-desc {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.result-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  text-align: left;
}

.result-bar-item {
  font-size: 12px;
}

.result-bar-label {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 3px;
}

.result-bar-track {
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.result-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease;
}

/* ===== Ingredients ===== */
.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.ingredient-card {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 14px;
}

.ingredient-head {
  font-size: 15px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.ingredient-card p {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.5;
}

.supercritical-box {
  background: linear-gradient(135deg, #e8eaf6, #fff);
  border: 2px solid var(--navy);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 14px;
}

.supercritical-box strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}

.supercritical-box p {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.5;
}

.usage-guide-box {
  background: var(--green-light);
  border: 2px solid var(--green);
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
}

.usage-guide-box p {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.6;
  margin: 0;
}

.usage-box {
  background: var(--green-light);
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 14px 16px;
}

.usage-box h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 6px;
}

.usage-box p {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.6;
}

/* ===== Expert ===== */
.expert-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
}

.expert-card img {
  width: 90px;
  height: 110px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  flex-shrink: 0;
}

.expert-info h3 {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}

.expert-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  background: var(--green-light);
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.expert-info p {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.45;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.stat-card {
  background: var(--green);
  color: #fff;
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
}

.stat-num {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
  line-height: 1.3;
  opacity: 0.95;
}

/* ===== 30-day plan ===== */
.plan-flow {
  display: flex;
  align-items: stretch;
  gap: 4px;
  margin-bottom: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.plan-step {
  flex: 1;
  min-width: 100px;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}

.plan-icon {
  font-size: 24px;
  margin-bottom: 4px;
}

.plan-num {
  font-size: 10px;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.plan-step strong {
  display: block;
  font-size: 11px;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.plan-step p {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.3;
}

.plan-arrow {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--green);
  flex-shrink: 0;
}

/* ===== Poster & Video ===== */
.testimonial-video {
  width: 100%;
  display: block;
  margin: 0 0 14px;
  border-radius: 10px;
  background: #000;
}

.poster-img {
  width: 100%;
  margin: 0;
}

/* ===== Facebook-style Comments ===== */
.comments-section {
  background: var(--fb-bg);
  padding: 16px 12px;
  margin-top: 14px;
}

.comments-header {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
  flex-shrink: 0;
}

.comments-list {
  height: 400px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.comments-list::-webkit-scrollbar {
  display: none;
}

.comment {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.comment:last-child {
  margin-bottom: 0;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e4e6eb;
}

.comment-body {
  flex: 1;
  min-width: 0;
}

.comment-bubble {
  background: #fff;
  border-radius: 18px;
  padding: 10px 14px;
  display: inline-block;
  max-width: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.comment-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--fb-blue);
  margin-bottom: 2px;
}

.comment-text {
  font-size: 14px;
  line-height: 1.45;
}

.comment-text p {
  margin: 0 0 6px;
}

.comment-text p:last-child {
  margin-bottom: 0;
}

.comment-text img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 6px;
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #65676b;
  margin-top: 4px;
  padding-left: 14px;
  font-weight: 600;
}

.comment-like {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.comment-like .heart-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.comment-like.has-likes .heart-icon {
  fill: var(--red);
  stroke: none;
}

.comment-like:not(.has-likes) .heart-icon {
  fill: none;
  stroke: #8a8b91;
  stroke-width: 2px;
}

.like-count {
  color: #65676b;
}

.meta-sep,
.comment-time {
  color: #65676b;
}

/* ===== Certificates ===== */
.cert-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.cert-item img {
  border-radius: 6px;
  border: 1px solid #eee;
  margin-bottom: 6px;
}

.cert-item p {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  line-height: 1.4;
}

.cert-item small {
  font-weight: 600;
  color: var(--text-muted);
}

.policy-list {
  list-style: none;
}

.policy-list li {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 1px dashed #eee;
}

.policy-list li:last-child {
  border-bottom: none;
}

/* ===== Order section ===== */
.order-section {
  background: var(--bg-white);
  padding: 20px 14px 28px;
  border-top: 3px solid var(--gold);
}

.order-promo {
  font-size: 16px;
  font-weight: 900;
  color: var(--red);
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.order-promise {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  background: #fff9c4;
  border: 2px dashed var(--gold-dark);
  padding: 12px;
  border-radius: 8px;
  margin: 16px 0;
  line-height: 1.5;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-textarea {
  min-height: 80px;
  resize: vertical;
}

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

.package-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s;
  position: relative;
}

.package-option:has(input:checked) {
  border-color: var(--red);
  background: var(--red-light);
}

.package-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--red);
  flex-shrink: 0;
}

.package-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.package-label .price {
  color: var(--red);
}

.package-sub {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

.package-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 50px;
}

.package-badge.best {
  background: var(--green);
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 10px;
  overflow: hidden;
}

.faq-item summary {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 900;
  color: var(--green);
  flex-shrink: 0;
  margin-left: 8px;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 16px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== Footer ===== */
.footer {
  background: #263238;
  color: #b0bec5;
  padding: 24px 14px 32px;
  font-size: 13px;
  text-align: center;
}

.footer-logo {
  height: 24px;
  margin: 0 auto 12px;
  filter: brightness(1.2);
}

.footer-brand {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.footer p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
}

.footer-links a {
  text-decoration: none;
  font-weight: 600;
}

.footer-disclaimer {
  font-size: 11px;
  color: #78909c;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #37474f;
  line-height: 1.6;
}

/* ===== Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-icon {
  font-size: 56px;
  margin-bottom: 12px;
}

.modal-box h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}

.modal-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-close {
  padding: 12px 40px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
}

/* ===== Sticky CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid #eee;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 99;
  display: none;
}

.sticky-cta.show {
  display: block;
}

.sticky-cta .cta-btn {
  margin: 0;
  padding: 14px;
  font-size: 15px;
  max-width: 100%;
}

/* Highlight quiz step for selected goal */
.quiz-step.highlight .quiz-q {
  color: var(--red);
}

.quiz-step.highlight .quiz-q::before {
  content: '🎯 ';
}
