:root {
  color-scheme: light;
  --bg: #fdf6ea;
  --bg-alt: #eef8f1;
  --ink: #161616;
  --muted: #3f3f3f;
  --accent: #d44335;
  --accent-2: #1d9b5a;
  --cta: #1f9c58;
  --cta-dark: #166f3f;
  --shadow: 0 18px 30px rgba(25, 60, 35, 0.18);
  --quiz-accent: #d75de9;
  --quiz-accent-dark: #bf46e1;
  --quiz-accent-soft: #f1e0f7;
  --quiz-track: #e9d7f1;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Karla", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(
        circle at top,
        rgba(255, 255, 255, 0.7),
        transparent 58%
      ),
    linear-gradient(140deg, var(--bg) 0%, var(--bg-alt) 60%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 60px;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.55;
}

body::before {
  width: 240px;
  height: 240px;
  left: -120px;
  top: 20vh;
  background: radial-gradient(circle, rgba(255, 189, 144, 0.6), transparent 70%);
}

body::after {
  width: 280px;
  height: 280px;
  right: -160px;
  top: 55vh;
  background: radial-gradient(circle, rgba(106, 205, 146, 0.5), transparent 70%);
}

.top {
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeIn 0.7s ease-out both;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.brand__mark {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  color: #25b06c;
  letter-spacing: 2px;
  position: relative;
}

.brand__mark::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: -6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e8a24a, #25b06c);
}

.brand__tag {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.progress__bar {
  display: block;
  height: 100%;
  width: 22%;
  background: linear-gradient(90deg, #f28b5b, #f0b35d, #4cc07c);
  animation: progressPulse 2.2s ease-in-out infinite;
}

.hero {
  width: min(560px, 100%);
  display: flex;
  justify-content: center;
}

.hero__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: rise 0.8s ease-out both;
}

.hero__badge {
  align-self: center;
  background: rgba(31, 156, 88, 0.1);
  color: var(--cta-dark);
  border: 1px solid rgba(31, 156, 88, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

h1,
h2 {
  margin: 0;
  font-family: "Fraunces", "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  font-size: clamp(28px, 4.6vw, 40px);
}

h2 {
  font-size: clamp(26px, 4.2vw, 38px);
}

p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
}

.accent {
  color: var(--accent);
}

.cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--cta), #17884b);
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 32px rgba(25, 60, 35, 0.22);
}

.cta:active {
  transform: translateY(1px);
}

.cta--ghost {
  background: transparent;
  border: 2px solid rgba(31, 156, 88, 0.35);
  color: var(--cta-dark);
  box-shadow: none;
}

.trust {
  font-size: 14px;
  letter-spacing: 0.4px;
  color: #2e2e2e;
}

.quiz {
  width: min(520px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: rise 0.8s ease-out both;
}

@keyframes progressPulse {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.4);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  body {
    padding: 32px 18px 48px;
  }

  .brand__tag {
    font-size: 12px;
  }

  p {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.page--quiz {
  background: #ffffff;
  padding: 28px 18px 60px;
}

.page--quiz::before,
.page--quiz::after {
  opacity: 0.12;
}

.brand--quiz {
  justify-content: center;
}

.brand__mark--quiz {
  font-size: 22px;
  letter-spacing: 1px;
}

.quiz-top {
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeIn 0.6s ease-out both;
}

.quiz-top__row {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
}

.quiz-top__spacer {
  height: 40px;
}

.icon-btn {
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.08);
  font-size: 20px;
  color: #2e2e2e;
  cursor: pointer;
}

.icon-btn.is-disabled {
  opacity: 0.4;
  cursor: default;
}

.progress--quiz {
  height: 10px;
  background: var(--quiz-accent-soft);
}

.page--quiz .progress__bar {
  width: 10%;
  background: linear-gradient(90deg, var(--quiz-accent), #f07ad0);
  animation: progressPulse 2s ease-in-out infinite;
}

.quiz-shell {
  width: min(520px, 100%);
}

.quiz-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.step.is-active {
  display: flex;
  animation: rise 0.6s ease-out both;
}

.step__intro {
  margin: 0;
  font-size: 16px;
  color: #6a6a6a;
}

.choice-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.choice-card {
  border: 1px solid #eadff0;
  border-radius: 18px;
  background: #ffffff;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(69, 30, 88, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 26px rgba(69, 30, 88, 0.12);
}

.choice-card.is-selected {
  outline: 3px solid rgba(215, 93, 233, 0.45);
}

.choice-card__media {
  height: 210px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, #ffffff, transparent 45%),
    linear-gradient(180deg, #fdf1f8, #f7d6e9);
}

.choice-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.choice-card__media--female {
  background: radial-gradient(circle at 50% 20%, #ffffff, transparent 45%),
    linear-gradient(180deg, #ffe6f3, #f6bfdc);
}

.choice-card__media--male {
  background: radial-gradient(circle at 50% 20%, #ffffff, transparent 45%),
    linear-gradient(180deg, #e7f3ff, #cfe0fb);
}

.choice-card__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--quiz-accent), var(--quiz-accent-dark));
}

.choice-card__arrow {
  font-size: 18px;
}

.input-card {
  width: min(320px, 100%);
  border-radius: 16px;
  border: 1px solid #dcd6df;
  background: #ffffff;
  padding: 10px 16px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.input-stack {
  width: min(320px, 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 20px;
  text-align: center;
  font-family: "Karla", "Trebuchet MS", sans-serif;
}

.field-input::placeholder {
  color: #b9b3bf;
  font-style: italic;
}

.field-input.is-invalid {
  color: #b63737;
}

.field-error {
  display: none;
  font-size: 13px;
  color: #b63737;
}

.field-error.is-visible {
  display: block;
}

.cta--quiz {
  background: linear-gradient(180deg, var(--quiz-accent), var(--quiz-accent-dark));
  box-shadow: 0 18px 30px rgba(125, 52, 161, 0.24);
}

.cta--quiz:hover {
  box-shadow: 0 20px 32px rgba(125, 52, 161, 0.3);
}

.option-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e4e1e7;
  background: #ffffff;
  font-size: 17px;
  color: #2b2b2b;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
}

.option-card input {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #cbb3d9;
  display: grid;
  place-content: center;
}

.option-card input::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: scale(0);
  background: var(--quiz-accent);
  transition: transform 0.2s ease;
}

.option-card input:checked {
  border-color: var(--quiz-accent);
}

.option-card input:checked::before {
  transform: scale(1);
}

.helper,
.hint {
  font-size: 13px;
  color: #8a8a8a;
}

.calc-progress {
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.calc-progress__row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #6f6f6f;
}

.calc-progress__track {
  height: 10px;
  border-radius: 999px;
  background: var(--quiz-track);
  overflow: hidden;
}

.calc-progress__bar {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--quiz-accent), #f07ad0);
}

.calc-note {
  font-size: 16px;
  color: #666666;
  line-height: 1.5;
}

.result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.result__value {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(40px, 9vw, 54px);
  color: #20a45c;
  font-weight: 700;
}

.result__label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2a6b4a;
  font-weight: 700;
}

.result__unit {
  font-size: 24px;
  font-weight: 700;
  color: #20a45c;
}

.result__basal {
  margin: 0;
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}

.result__basal strong {
  color: #1d9b5a;
  font-style: normal;
}

.result__note {
  font-size: 14px;
  letter-spacing: 1px;
  color: #6a6a6a;
  text-transform: uppercase;
}

.result__detail {
  font-size: 16px;
  color: #666666;
  line-height: 1.5;
}

.alert-title {
  color: #d44335;
}

.story-text {
  font-size: 16px;
  color: #666666;
  line-height: 1.55;
}

.story-strong {
  font-size: 18px;
  font-weight: 700;
  color: #1f1f1f;
  line-height: 1.5;
}

.story-photos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.story-photos__item {
  border-radius: 16px;
  overflow: hidden;
  min-height: 200px;
  background: linear-gradient(180deg, #f6f0fa, #efe2f7);
  border: 4px solid #6f1d83;
  display: grid;
  place-items: center;
  color: #6f1d83;
  font-weight: 700;
}

.story-photos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.decision-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.decision-card {
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid #e4e1e7;
  background: #ffffff;
  padding: 12px 16px;
  font-size: 17px;
  color: #2b2b2b;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.decision-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.1);
}

.decision-card.is-selected {
  border-color: rgba(215, 93, 233, 0.7);
  box-shadow: 0 16px 22px rgba(125, 52, 161, 0.2);
}

.decision-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.decision-card__icon--yes {
  background: #62b44a;
}

.decision-card__icon--no {
  background: #e05252;
}

.decision-card__text {
  font-weight: 600;
}

.decision-card__arrow {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #f2f2f2;
  display: grid;
  place-items: center;
  color: #7a7a7a;
  font-size: 18px;
}

.page--sales {
  background: #ffffff;
  padding: 28px 18px 60px;
  font-family: "Roboto", "Karla", "Trebuchet MS", sans-serif;
  --sales-accent: #1d9b5a;
  --sales-accent-dark: #157543;
  --sales-soft: #e9f7ee;
  --sales-soft-2: #d9f0e2;
  --sales-border: #2b8a4a;
}

.page--sales,
.page--sales * {
  font-family: "Roboto", "Karla", "Trebuchet MS", sans-serif !important;
}

.page--sales h1,
.page--sales h2,
.page--sales h3,
.page--sales .brand__mark {
  font-family: "Roboto", "Karla", "Trebuchet MS", sans-serif;
}

.sales {
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sales-top .progress__bar {
  width: 100%;
  animation: none;
}

.sales-hero h1 {
  margin: 0;
  font-size: clamp(30px, 6vw, 44px);
  text-align: center;
}

.sales-highlight {
  color: var(--sales-accent);
}

.sales-lead {
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  color: #2a2a2a;
}

.sales-highlight--green {
  color: #1d9b5a;
  font-weight: 700;
}

.sales-proof {
  display: grid;
  grid-template-columns: minmax(130px, 160px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.sales-proof__media {
  display: flex;
  justify-content: center;
}

.sales-proof__card {
  width: 160px;
  height: 210px;
  border-radius: 14px;
  background: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 26px rgba(31, 108, 59, 0.28);
  border: 6px solid #e7f5ec;
  overflow: hidden;
}

.sales-proof__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sales-proof__meta {
  text-align: center;
}

.sales-stars {
  color: #f2b01e;
  font-size: 24px;
  letter-spacing: 4px;
}

.sales-rating {
  margin: 8px 0 4px;
  font-size: 22px;
  font-weight: 700;
}

.sales-count {
  margin: 0;
  font-size: 18px;
  color: #2a2a2a;
}

.sales-copy h2 {
  font-size: 26px;
  text-align: center;
  margin: 0;
}

.sales-copy p {
  text-align: center;
  font-size: 18px;
  color: #3a3a3a;
}

.sales-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sales-benefits__item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--sales-soft);
  font-size: 16px;
  color: #2b2b2b;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.06);
}

.sales-benefits__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #62b44a;
  color: #ffffff;
  font-size: 16px;
  flex: 0 0 auto;
}

.sales-cta {
  margin-top: 8px;
}

.sales-checklist {
  margin-top: 4px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #1f1f1f;
  background: var(--sales-soft);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.06);
}

.checklist__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #62b44a;
  color: #ffffff;
  font-size: 16px;
  flex: 0 0 auto;
}

.sales-results h2 {
  text-align: center;
  margin: 0;
}

.results-grid {
  display: grid;
  gap: 16px;
}

.results-card {
  border-radius: 16px;
  background: #ffffff;
  border: 2px solid var(--sales-border);
  padding: 8px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.results-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.results-pair img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.sales-bonus {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.bonus-kicker {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  color: #1f1f1f;
}

.bonus-title {
  margin: 0;
  font-size: 44px;
  font-weight: 800;
  line-height: 50px;
  color: #1f1f1f;
}

.bonus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-list li {
  background: #1d9b5a;
  border-radius: 16px;
  padding: 18px 20px;
  font-size: 38px;
  font-weight: 700;
  line-height: 43px;
  color: #ffffff;
  border: 2px solid #1d9b5a;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.bonus-note {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #ffffff;
  margin-top: 6px;
}

.media-placeholder {
  border-radius: 12px;
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  color: var(--sales-border);
  background: linear-gradient(180deg, var(--sales-soft), var(--sales-soft-2));
  overflow: hidden;
}

.media-placeholder--tall {
  min-height: 320px;
}

.media-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sales-about h2 {
  text-align: center;
  margin-bottom: 8px;
}

.about-grid {
  display: grid;
  gap: 16px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  color: #3a3a3a;
  line-height: 1.55;
}

.sales-transform h2 {
  text-align: center;
  font-size: clamp(26px, 5vw, 34px);
  margin: 0;
}

.sales-who h2 {
  text-align: center;
  margin-bottom: 18px;
}

.who-grid {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.who-card {
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--sales-soft-2);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.who-card h3 {
  margin: 0;
  font-size: 18px;
}

.who-card p {
  margin: 0;
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.5;
}

.who-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #ffffff;
}

.who-icon--money {
  background: #4caf50;
}

.who-icon--warn {
  background: #f2a33b;
}

.who-icon--sad {
  background: #5c7dbb;
}

.who-icon--no {
  background: #e05252;
}

.sales-pricing {
  text-align: center;
  background: var(--sales-soft);
  border-radius: 18px;
  padding: 20px 16px;
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.08);
}

.pricing-title {
  color: #20a45c;
  margin: 0 0 8px;
}

.pricing-sub {
  font-weight: 700;
  color: #1f1f1f;
  margin: 0 0 10px;
}

.pricing-old {
  margin: 0;
  font-size: 22px;
  color: #d44335;
  text-decoration: line-through;
  font-weight: 700;
}

.pricing-main {
  margin: 8px 0 0;
  font-size: 22px;
  color: #1f1f1f;
  font-weight: 700;
}

.pricing-main span {
  color: #20a45c;
}

.pricing-cash {
  margin: 6px 0 12px;
  font-size: 22px;
  font-weight: 700;
}

.pricing-cash span {
  color: #20a45c;
}

.pricing-timer {
  background: #fde4e4;
  color: #d44335;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pricing-scarcity {
  margin: 14px 0 0;
  font-size: 16px;
  color: #3a3a3a;
}

.badge-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.badge-image {
  width: 100%;
  max-width: 320px;
  justify-self: center;
  border-radius: 12px;
  display: block;
}

.sales-guarantee {
  margin-top: 6px;
}

.guarantee-card {
  background: #fff3bf;
  border-radius: 16px;
  padding: 18px;
  color: #5b4b1a;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.guarantee-card h3 {
  margin-top: 0;
  text-align: center;
  font-size: 22px;
}

.guarantee-card p {
  margin: 10px 0 0;
  line-height: 1.5;
}

.purchase-toast {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: rgba(31, 163, 93, 0.86);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.14);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  z-index: 10;
}

.purchase-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.purchase-toast__content {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #ffffff;
}

.purchase-toast__content small {
  opacity: 0.85;
  font-size: 12px;
}

@media (max-width: 380px) {
  .sales-proof {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 640px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .who-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bonus-card {
    grid-template-columns: minmax(180px, 220px) 1fr;
    align-items: center;
  }

  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.unit-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 14px;
  background: var(--quiz-accent-soft);
}

.unit-toggle__btn {
  border: none;
  background: transparent;
  padding: 6px 16px;
  border-radius: 10px;
  font-weight: 600;
  color: #6b5b73;
  cursor: pointer;
}

.unit-toggle__btn.is-active {
  background: var(--quiz-accent);
  color: #ffffff;
}

.metric {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 44px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #1f1f1f;
}

.metric span + span {
  font-size: 20px;
  font-weight: 600;
}

.range {
  width: 100%;
  margin-top: 8px;
  background: transparent;
  accent-color: var(--quiz-accent);
}

.range::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: var(--quiz-track);
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--quiz-accent);
  border: 4px solid #ffffff;
  box-shadow: 0 8px 14px rgba(125, 52, 161, 0.3);
  margin-top: -10px;
}

.range::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: var(--quiz-track);
}

.range::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--quiz-accent);
  border: 4px solid #ffffff;
  box-shadow: 0 8px 14px rgba(125, 52, 161, 0.3);
}

.quiz-footer {
  width: 100%;
  margin-top: 40px;
  text-align: center;
  color: #9a9a9a;
  font-size: 12px;
}

.quiz-footer small {
  font-size: 12px;
}
