:root {
  --green: #5ea35d;
  --green-dark: #4f8f4e;
  --green-logo: #55824e;
  --green-soft: #eef6ee;
  --green-border: #9bc49a;
  --orange: #f07a1a;
  --red: #c62828;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --border: #e5e5e5;
  --progress-bg: #e8eee8;
  --max: 640px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  background: #fff;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.funnel {
  width: 100%;
  min-height: 100dvh;
}

.step {
  display: none;
  width: 100%;
  min-height: 100dvh;
  padding: 28px 18px 40px;
}

.step.is-active {
  display: block;
  animation: fadeIn 0.28s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.quiz-inner-wide {
  max-width: 640px;
}

.brand {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.brand-logo {
  width: min(220px, 55vw);
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .brand-logo {
    width: min(150px, 38vw);
  }
}

.progress {
  width: 100%;
  max-width: 560px;
  height: 8px;
  margin: 0 auto 28px;
  background: var(--progress-bg);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 999px;
  transition: width 0.35s ease;
}

.q-title {
  font-size: clamp(1.2rem, 4.2vw, 1.55rem);
  font-weight: 800;
  color: #152033;
  line-height: 1.35;
  margin-bottom: 10px;
}

.q-sub {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 10px;
}

.q-sub + .stack-btns,
.q-sub + .option-list,
.q-sub + .check-list {
  margin-top: 18px;
}

.hl-green {
  color: var(--green);
}

.hl-red {
  color: var(--red);
}

.stack-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: clamp(0.95rem, 3.2vw, 1.08rem);
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(94, 163, 93, 0.35);
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-cta:hover {
  background: var(--green-dark);
}

.btn-cta:active {
  transform: scale(0.985);
}

.btn-pill {
  border-radius: 999px;
}

.btn-multiline {
  line-height: 1.35;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
}

.option-list,
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 18px;
  text-align: left;
}

.option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px 14px;
  border-radius: 14px;
  border: 1.5px solid var(--green-border);
  background: var(--green-soft);
  color: #152033;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: left;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.option-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(94, 163, 93, 0.15);
}

.option-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #cfcfcf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #666;
  background: #fff;
  font-size: 1.15rem;
}

.check-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--green-border);
  background: var(--green-soft);
  color: #152033;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  transition: border-color 0.15s ease, border-width 0.15s ease;
}

.check-item.is-selected {
  border-color: var(--green);
  border-width: 2.5px;
  padding: 13px 13px;
}

.check-item-left {
  justify-content: flex-start;
}

.check-box {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1.5px solid #bbb;
  background: #fff;
  flex-shrink: 0;
  position: relative;
}

.check-item.is-selected .check-box {
  border-color: var(--green);
  background: var(--green);
}

.check-item.is-selected .check-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.symptoms-visual {
  width: 100%;
  margin: 0 auto 22px;
  line-height: 0;
}

.symptoms-img,
.news-img {
  width: 100%;
  height: auto;
  display: block;
}

.news-warning {
  font-size: clamp(0.95rem, 3.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  margin-bottom: 14px;
}

.news-link {
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 16px;
  color: #222;
}

.news-card {
  margin-bottom: 22px;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}

/* ========== ETAPA 1 ========== */
.landing-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.landing-title {
  font-size: clamp(1.15rem, 4.2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 18px;
}

.landing-title .urgent {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 2px 8px 3px;
  border-radius: 3px;
  margin-right: 4px;
  font-size: 0.95em;
}

.landing-title .accent {
  color: var(--green);
}

.landing-title .underline {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.landing-copy {
  font-size: clamp(0.92rem, 2.8vw, 1.02rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 22px;
}

.collage-wrap {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 26px;
  line-height: 0;
}

.collage-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ========== ETAPA 2 ========== */
.gender-title {
  font-size: clamp(1.35rem, 4.5vw, 1.85rem);
  font-weight: 800;
  color: #152033;
  line-height: 1.25;
  margin-bottom: 6px;
}

.gender-subtitle {
  font-size: clamp(1.05rem, 3.4vw, 1.25rem);
  font-weight: 700;
  color: #152033;
  margin-bottom: 28px;
}

.gender-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
}

.gender-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.gender-card:hover {
  border-color: var(--green);
  box-shadow: 0 6px 18px rgba(94, 163, 93, 0.18);
  transform: translateY(-2px);
}

.gender-photo {
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: #fff;
}

.gender-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.gender-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 16px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #152033;
}

.gender-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #cfcfcf;
  color: #555;
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 420px) {
  .gender-grid {
    gap: 10px;
  }

  .gender-label {
    padding: 12px 10px 14px;
    font-size: 0.95rem;
    gap: 8px;
  }

  .gender-arrow {
    width: 24px;
    height: 24px;
    font-size: 1.1rem;
  }

  .option-card,
  .check-item {
    font-size: 0.88rem;
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}

.check-list.shake {
  animation: shake 0.35s ease;
}

.q-title-upper {
  text-transform: uppercase;
  font-size: clamp(1.05rem, 3.8vw, 1.35rem);
}

.btn-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px 14px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: left;
  box-shadow: 0 4px 12px rgba(94, 163, 93, 0.28);
}

.btn-choice-text {
  flex: 1;
}

.btn-choice-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.alert-banner {
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: clamp(0.92rem, 3.2vw, 1.05rem);
  line-height: 1.4;
  padding: 16px 14px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.alert-underline {
  text-decoration: underline;
}

.audio-hint {
  margin-bottom: 4px;
}

.audio-bubble {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0f2f5;
  border-radius: 16px;
  padding: 12px 14px;
  margin: 14px 0 22px;
  position: relative;
}

.audio-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audio-wave {
  flex: 1;
  min-width: 0;
}

.audio-track {
  height: 4px;
  background: #cfd4da;
  border-radius: 999px;
  position: relative;
  margin-bottom: 6px;
  cursor: pointer;
}

.audio-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: #34b7f1;
  border-radius: 999px;
}

.audio-dot {
  position: absolute;
  left: 0%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-left: -6px;
  border-radius: 50%;
  background: #34b7f1;
}

.audio-time {
  font-size: 0.8rem;
  color: #667781;
}

.audio-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  background: #fff;
  display: block;
}

.section-label {
  margin-top: 8px;
  margin-bottom: 4px;
}

.video-wrap {
  margin: 12px 0 18px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}

.yt-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.testimonial-card {
  text-align: left;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.testimonial-head p {
  font-size: 0.85rem;
  color: var(--muted);
}

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.45;
  color: #333;
}

.chat-carousel {
  margin-top: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 10px;
  background: #f7f7f7;
}

.chat-carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  height: min(400px, 56vh);
}

.chat-carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.chat-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.chat-carousel-slide img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .chat-carousel-viewport {
    height: min(340px, 50vh);
  }

  .chat-carousel-slide {
    padding: 8px 6px;
  }
}

.chat-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.chat-carousel-dots button {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  padding: 0;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.chat-carousel-dots button.is-active {
  background: var(--green);
  transform: scale(1.15);
}

.loading-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.loading-highlight {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 28px;
}

.loading-block {
  margin-bottom: 24px;
}

.loading-bar-wrap {
  position: relative;
  margin-bottom: 8px;
}

.loading-pct {
  position: absolute;
  right: 0;
  top: -18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #333;
}

.loading-bar {
  height: 10px;
  background: #e8eee8;
  border-radius: 999px;
  overflow: hidden;
}

.loading-fill {
  height: 100%;
  width: 0%;
  background: var(--green);
  border-radius: 999px;
  transition: width 0.08s linear;
}

.loading-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.result-comparison {
  margin-bottom: 18px;
}

.result-img {
  width: 100%;
  height: auto;
  display: block;
}

.result-img-round {
  border-radius: 12px;
  margin: 14px 0 18px;
}

.result-intro {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #222;
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  text-align: left;
}

.stat-row span:first-child {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6px;
  color: #222;
}

.stat-bar {
  position: relative;
  height: 10px;
  background: #eee;
  border-radius: 999px;
  overflow: visible;
}

.stat-fill {
  height: 100%;
  border-radius: 999px;
  position: relative;
}

.stat-bad .stat-fill {
  background: #e53935;
}

.stat-good .stat-fill {
  background: var(--green);
}

.stat-pct {
  position: absolute;
  right: 0;
  top: -20px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #222;
}

.parasite-label {
  font-weight: 700;
  font-size: 0.92rem;
  margin: 8px 0 10px;
  text-align: left;
}

.parasite-label em {
  font-style: italic;
}

.attention-box {
  text-align: left;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  margin: 18px 0;
  background: #fafafa;
}

.attention-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.attention-box p {
  font-size: 0.92rem;
  line-height: 1.45;
  color: #333;
}

.recipe-text {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 12px;
  text-align: left;
}

/* ========== OFERTA / CHECKOUT ========== */
.step-offer {
  padding: 20px 14px 48px;
}

.offer-page {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.offer-brand {
  margin-bottom: 10px;
}

.offer-success {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #333;
}

.offer-hero {
  background: var(--green);
  color: #fff;
  border-radius: 14px;
  padding: 20px 16px 28px;
  margin-bottom: 22px;
  position: relative;
  box-shadow: 0 6px 20px rgba(94, 163, 93, 0.35);
}

.offer-hero-line {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.offer-hero-highlight {
  font-size: 1.35rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.15);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
}

.offer-arrow {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
}

.offer-headline {
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  font-weight: 800;
  line-height: 1.35;
  margin: 28px 0 14px;
  color: #111;
}

.offer-lead {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 22px;
  text-align: left;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.ba-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 10px;
  background: #fff;
  text-align: center;
}

.ba-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.ba-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 8px;
}

.ba-card p {
  font-size: 0.72rem;
  line-height: 1.3;
  color: #555;
  margin-bottom: 8px;
}

.ba-bar {
  height: 6px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
}

.ba-bar span {
  display: block;
  height: 100%;
  background: var(--green);
  border-radius: 999px;
}

.offer-audio-title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 12px;
  text-align: left;
}

.offer-attention {
  text-align: left;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  margin: 22px 0;
  background: #fafafa;
}

.offer-attention p {
  font-size: 0.9rem;
  line-height: 1.45;
  margin-top: 8px;
  color: var(--green);
  font-weight: 600;
}

.offer-checklist {
  list-style: none;
  text-align: left;
  margin: 0 0 18px;
  padding: 0;
}

.offer-checklist li {
  font-size: 0.9rem;
  line-height: 1.45;
  margin-bottom: 10px;
  color: #222;
}

.offer-closing {
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 28px;
  color: #333;
}

.offer-pricing {
  margin-bottom: 24px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.price-list li {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  background: #fff;
}

.price-list s {
  color: #888;
}

.price-old {
  color: #c62828;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.price-old s {
  text-decoration: line-through;
}

.price-label {
  font-weight: 700;
  color: var(--green);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.price-now {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 18px;
  line-height: 1;
}

.btn-checkout {
  display: flex;
  text-decoration: none;
  margin: 18px 0;
}

.offer-perks {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  text-align: left;
  font-size: 0.88rem;
}

.offer-perks li {
  margin-bottom: 8px;
  color: #333;
}

.offer-banner-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

.offer-benefits {
  text-align: left;
  margin: 22px 0;
}

.offer-benefits strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.offer-benefits ul {
  padding-left: 18px;
  margin: 0;
}

.offer-benefits li {
  font-size: 0.9rem;
  line-height: 1.45;
  margin-bottom: 8px;
  color: #333;
}

.installment-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1.5px solid var(--green-border);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 20px 0;
  background: var(--green-soft);
}

.installment-left {
  text-align: left;
}

.installment-left strong {
  display: block;
  font-size: 0.95rem;
}

.installment-left span {
  font-size: 0.82rem;
  color: #666;
}

.installment-right {
  text-align: right;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.installment-right span {
  display: block;
  font-size: 0.75rem;
  color: #666;
}

.installment-right strong {
  font-size: 1.25rem;
  color: #111;
}

.testimonials-offer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.testimonial-offer {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 14px;
  text-align: left;
  background: #fff;
}

.testimonial-offer p {
  font-size: 0.88rem;
  line-height: 1.45;
  color: #333;
  margin-top: 8px;
}

.bonus-box {
  text-align: left;
  margin: 24px 0;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fafafa;
}

.bonus-box > p:first-child {
  font-size: 0.92rem;
  line-height: 1.45;
  margin-bottom: 12px;
}

.bonus-tag {
  display: inline-block;
  background: #c62828;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.bonus-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bonus-box li {
  font-size: 0.88rem;
  line-height: 1.45;
  margin-bottom: 12px;
  color: #222;
}

.gift-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.45;
  margin: 24px 0 14px;
}

.offer-gift-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  margin: 0 auto 8px;
  display: block;
}

.risk-zero {
  margin: 24px 0;
  text-align: center;
}

.risk-zero-img-full {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.offer-final-copy {
  text-align: left;
  margin: 24px 0;
}

.offer-final-copy p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #333;
}

.btn-checkout-final {
  margin-bottom: 0;
}

@media (max-width: 420px) {
  .before-after {
    gap: 8px;
  }

  .ba-card p {
    font-size: 0.65rem;
  }

  .price-now {
    font-size: 2rem;
  }
}
