/* ============================================================
   SoonBody Quiz Clone — CSS (fiel ao site original)
   Design system extraído de https://soonbody.com
   ============================================================ */

/* Fonts loaded via <link> in HTML (Google Fonts — same as original site) */

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

html {
  height: 100%;
}

body {
  font-family: "Red Hat Display", sans-serif;
  background-color: #F7F8FA;
  color: #1a1a1a;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}

p,
span {
  font-family: "Red Hat Display", sans-serif;
}

/* Apenas os h2 usam Poppins */
h1,
h2 {
  font-family: "Poppins", sans-serif;
}

/* ============================================================
   TOKENS (extraídos do site original via __data.json + CSS)
   ============================================================ */
:root {
  /* Colors — originals */
  --sb-bg: #F7F8FA;
  --sb-header-bg: #FFFFFF;
  --sb-border: #c2d3d1;
  --sb-primary: #155450;
  /* dark teal — botões CTA, progress */
  --sb-primary-hover: #164D44;
  --sb-progress: #155450;
  --sb-text: #1a1a1a;
  --sb-text-muted: #6B7280;
  --sb-card-bg: #FFFFFF;
  --sb-card-hover: #F0FAF8;
  --sb-selected-bg: #D4EDE8;
  --sb-selected-border: #155450;
  --sb-info-bg: #EAF6F2;
  --sb-green-light: #EAF6F2;
  --sb-header-text: #1a1a1a;

  /* Spacing */
  --spacing: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.08);
  --shadow-cta: 0 4px 16px rgba(27, 94, 82, 0.3);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.app-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--sb-bg);
}

.hidden {
  display: none !important;
}

/* ============================================================
   HEADER
   ============================================================ */
.quiz-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sb-header-bg);
  border-bottom: 1px solid var(--sb-border);
  padding: 8px 16px 10px;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto 8px;
}

.btn-back {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sb-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  min-width: 52px;
  transition: color 0.15s;
}

.btn-back svg {
  width: 16px;
  height: 16px;
}

.btn-back:hover {
  color: var(--sb-primary);
}

/* Logo from original site */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 28px;
  width: auto;
}

.step-counter {
  font-size: 13px;
  color: var(--sb-text-muted);
  min-width: 52px;
  text-align: right;
}

.step-counter .bold {
  font-weight: 700;
}

/* Progress bar */
.progress-container {
  max-width: 500px;
  margin: 0 auto;
  height: 6px;
  background: rgba(226, 232, 230, 0.5);
  border-radius: 99px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--sb-progress);
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
  will-change: width;
}

/* ============================================================
   QUIZ CONTENT
   ============================================================ */
.quiz-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 100px;
  width: 100%;
}

/* ============================================================
   STEP
   ============================================================ */
.step {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  padding: 24px 20px;
  animation: none;
}

.step.active {
  display: flex;
  animation: stepIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.step.slide-out {
  animation: stepOut 0.2s ease forwards;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes stepOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-24px);
  }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.step-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--sb-primary);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 8px;
}

.step-subtitle {
  font-size: 16px;
  color: #155450;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.5;
}

.step-subtitle.bold {
  font-weight: 700;
  color: #155450;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-12 {
  margin-bottom: 12px;
}

/* ============================================================
   HERO IMAGES
   ============================================================ */
.hero-image {
  width: 100%;
  max-width: 340px;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}

.hero-image-large {
  width: 100%;
  max-width: 380px;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  margin-bottom: 20px;
}

/* ============================================================
   OPTION BUTTONS — base style (fiel ao original)
   ============================================================ */
.options-grid {
  display: grid;
  gap: 10px;
  width: 100%;
}

.options-grid.cols-1 {
  grid-template-columns: 1fr;
}

.options-grid.cols-2 {
  grid-template-columns: 1fr 1fr;
}

.option-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sb-card-bg);
  border: 1.5px solid #c2d3d1;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #155450;
  text-align: left;
  transition: all 0.15s ease;
  width: 100%;
  min-height: 90px;
  position: relative;
  overflow: hidden;
}

/* AGE BUTTONS — larger like the original */
.option-btn--age {
  min-height: 90px;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 20px;
  border-radius: var(--radius-xl);
  color: #155450;
}

.option-btn:hover {
  background: var(--sb-card-hover);
  border-color: var(--sb-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 94, 82, 0.15);
}

.option-btn:active {
  transform: translateY(0);
}

.option-btn.selected {
  background: var(--sb-selected-bg);
  border-color: var(--sb-selected-border);
  color: var(--sb-primary);
}

/* Arrow icon on option buttons */
.arrow-icon {
  font-size: 20px;
  color: #c2d3d1;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 8px;
}

.option-content {
  display: block;
  align-items: center;
  gap: 10px;
  flex: 1;
  font-family: Red Hat Display, sans-serif;
  font-weight: 600;
}

.option-icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* ---- IMAGE CARD BUTTONS (body types, dream body) ---- */
.image-card-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--sb-card-bg);
  border: 1.5px solid var(--sb-border);
  border-radius: var(--radius-lg);
  padding: 16px 12px 14px;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: var(--shadow-card);
}

.image-card-btn:hover {
  border-color: var(--sb-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(27, 94, 82, 0.15);
}

.image-card-btn.selected {
  border-color: var(--sb-primary);
  background: var(--sb-selected-bg);
}

.image-card-btn img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.image-card-btn .card-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--sb-text);
  text-align: center;
}

/* ---- IMAGE LIST BUTTONS (Steps 9 & 10 — label left, image right) ---- */
.image-list-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sb-card-bg);
  border: 1.5px solid #c2d3d1;
  border-radius: var(--radius-xl);
  padding: 0 0 0 20px;
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
  min-height: 90px;
  overflow: hidden;
  text-align: left;
  gap: 12px;
}

.image-list-btn:hover {
  border-color: var(--sb-primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(27, 94, 82, 0.15);
}

.image-list-btn.selected {
  border-color: var(--sb-primary);
  background: var(--sb-selected-bg);
}

.image-list-label {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #155450;
}

.image-list-thumb {
  width: 90px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

/* ---- JOINT LIST BUTTONS (Step 19 — large image left, label center, radio right) ---- */
.joint-list-btn {
  display: flex;
  align-items: center;
  background: var(--sb-card-bg);
  border: 1.5px solid var(--sb-border);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
  min-height: 80px;
  overflow: hidden;
  gap: 14px;
  padding-right: 16px;
  text-align: left;
}

.joint-list-btn:hover {
  border-color: var(--sb-primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(27, 94, 82, 0.15);
}

.joint-list-btn.selected {
  border-color: var(--sb-primary);
  background: var(--sb-selected-bg);
}

.joint-list-btn.selected .joint-radio {
  background: var(--sb-primary);
  border-color: var(--sb-primary);
}

.joint-list-btn.selected .joint-radio::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  margin: 4px auto 0;
}

.joint-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.joint-label {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #155450;
}

.joint-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--sb-border);
  background: white;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

/* ---- GENDER LIST (Step 2 — vertical list with portrait on right) ---- */
.gender-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 380px;
}

.gender-list-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sb-card-bg);
  border: 1.5px solid #c2d3d1;
  border-radius: var(--radius-xl);
  padding: 0 0 0 24px;
  cursor: pointer;
  transition: all 0.18s ease;
  width: 100%;
  min-height: 84px;
  overflow: hidden;
  text-align: left;
}

.gender-list-btn:hover {
  border-color: var(--sb-primary);
  background: var(--sb-card-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(27, 94, 82, 0.15);
}

.gender-list-btn.selected {
  border-color: var(--sb-primary);
  background: var(--sb-selected-bg);
}

.gender-label {
  font-size: 18px;
  font-weight: 600;
  color: #155450;
  flex: 1;
  pointer-events: none;
  font-family: "Red Hat Display", sans-serif;
}

.gender-img {
  height: 100px;
  width: 90px;
  object-fit: cover;
  object-position: top center;
  display: block;
  flex-shrink: 0;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  pointer-events: none;
}

/* ---- ICON CARD BUTTONS (icon steps) ---- */
.icon-card-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--sb-card-bg);
  border: 1.5px solid var(--sb-border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
  height: 80px;
}

.icon-card-btn:hover {
  border-color: var(--sb-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 94, 82, 0.12);
}

.icon-card-btn.selected {
  border-color: var(--sb-primary);
  background: var(--sb-selected-bg);
}

.icon-card-btn img.icon-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 100%;
}

.icon-card-btn .icon-label {
  font-size: 18px;
  font-weight: 600;
  color: #155450;
  flex: 1;
  text-align: left;
}

.icon-card-btn .icon-check {
  width: 20px;
  height: 20px;
  border: 2px solid var(--sb-border);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.icon-card-btn.selected .icon-check {
  background: var(--sb-primary);
  border-color: var(--sb-primary);
}

.icon-card-btn.selected .icon-check svg {
  display: block;
}

.icon-card-btn .icon-check svg {
  display: none;
  width: 11px;
  height: 11px;
  stroke: white;
  stroke-width: 3;
}

/* ---- MULTI-SELECT CHECK ICON ---- */
.multi-check {
  justify-content: space-between;
}

.check-icon {
  width: 22px;
  height: 22px;
  border: 2px solid var(--sb-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}

.check-icon svg {
  display: none;
  width: 13px;
  height: 13px;
  stroke: white;
}

.option-btn.selected .check-icon {
  background: var(--sb-primary);
  border-color: var(--sb-primary);
}

.option-btn.selected .check-icon svg {
  display: block;
}

/* ============================================================
   SPLASH / INFO SCREENS
   ============================================================ */
.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.splash-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--sb-primary);
  line-height: 1.3;
  margin-bottom: 12px;
}

.splash-body {
  font-size: 16px;
  color: #155450;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Background SVG decoration on text steps — RIGHT SIDE full-height */
/* Step layout with background image on the right */
.step--with-bg {
  position: relative;
  align-items: flex-start !important;
  overflow: hidden;
  min-height: calc(100vh - 90px);
  padding: 24px 20px;
}

.step-bg-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.step-bg-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-bg-content .step-title {
  text-align: center;
}

.step-bg-content .options-grid {
  width: 80%;
}

/* Old opacity deco kept for backward compatibility */
.step-bg-deco {
  position: absolute;
  right: -20%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  opacity: 0.12;
  pointer-events: none;
}

/* ============================================================
   CONTINUE BUTTON (sticky bottom)
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px 28px;
  background: linear-gradient(to top, rgba(247, 248, 250, 1) 60%, rgba(247, 248, 250, 0));
  z-index: 90;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.sticky-cta>* {
  pointer-events: all;
}

/* Ensure steps with sticky-cta have enough bottom padding */
.step:has(.sticky-cta) {
  padding-bottom: 110px;
}

.btn-continue {
  width: 100%;
  max-width: 460px;
  background: var(--sb-primary);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 17px 28px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  font-family: "Red Hat Display", sans-serif;
}

.btn-continue::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-continue:hover::after {
  transform: translateX(100%);
}

.btn-continue:hover {
  background: var(--sb-primary-hover);
  transform: translateY(-1px);
}

.btn-continue:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.skip-link {
  background: none;
  border: none;
  font-size: 16px;
  color: #155450;
  cursor: pointer;
  text-decoration: underline;
  padding: 8px;
  margin-top: 8px;
  font-family: 'Red Hat Display', sans-serif;
}

/* ============================================================
   NUMBER INPUTS (Height, Weight, Age)
   ============================================================ */
.input-group {
  width: 100%;
  max-width: 380px;
}

.unit-toggle {
  display: flex;
  gap: 0;
  background: var(--sb-border);
  border-radius: 10px;
  padding: 3px;
  margin-bottom: 20px;
  width: fit-content;
  margin: 0 auto 20px;
}

.unit-toggle button {
  padding: 8px 28px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sb-text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.unit-toggle button.active {
  background: white;
  color: var(--sb-primary);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

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

.number-input-wrapper input {
  width: 100%;
  border: 1px solid var(--sb-border);
  border-radius: 12px;
  padding: 18px 60px 18px 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--sb-primary);
  background: white;
  outline: none;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
  height: 60px;
  font-family: "Poppins", sans-serif;
}

.number-input-wrapper input::-webkit-outer-spin-button,
.number-input-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.number-input-wrapper input:focus {
  border-color: var(--sb-primary);
}

.input-unit-label {
  position: absolute;
  right: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--sb-text-muted);
}

.dual-input {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.input-field {
  position: relative;
}

.input-field input {
  width: 100%;
  border: 2px solid var(--sb-border);
  border-radius: var(--radius-lg);
  padding: 16px 50px 16px 16px;
  font-size: 28px;
  font-weight: 700;
  color: var(--sb-primary);
  background: white;
  outline: none;
  -moz-appearance: textfield;
}

.input-field input::-webkit-outer-spin-button,
.input-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.input-field input:focus {
  border-color: var(--sb-primary);
}

.unit-sub {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 600;
  color: var(--sb-text-muted);
}

.input-hint {
  font-size: 12px;
  color: var(--sb-text-muted);
  margin-top: 10px;
  line-height: 1.5;
  text-align: center;
}

.imc-card {
  background: #e3f3e9;
  border-radius: 18px;
  padding: 22px 20px;
  margin-top: 20px;
}

.imc-title span {
  font-size: 14px;
  font-weight: 700;
  color: #155450;
  font-family: "Poppins", sans-serif;
}

.imc-text {
  font-size: 12px;
  color: #155450;
  line-height: 1.55;
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
}

/* ============================================================
   RESULTS / FITNESS PROFILE (Step 39)
   ============================================================ */
.profile-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 20px;
  width: 100%;
}

.bmi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bmi-label {
  font-size: 14px;
  color: #222;
  font-weight: 600;
}

.bmi-value-badge {
  background: var(--sb-green-light);
  color: var(--sb-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
}

.bmi-score-display {
  font-size: 22px;
  font-weight: 700;
  color: var(--sb-primary);
  margin-bottom: 10px;
}

/* BMI gradient bar */
.bmi-bar {
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(to right, #4CAF50 0%, #FFC107 50%, #F44336 100%);
  position: relative;
  margin-bottom: 6px;
}

.bmi-indicator {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: white;
  border: 3px solid var(--sb-primary);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: left 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bmi-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #222;
  margin-bottom: 16px;
  font-weight: 700;
}

.profile-stats {
  position: relative;
}

.profile-stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}

.profile-stat-row img.icon-img {
  height: 40px;
  width: 40px;
}

.profile-stat-row:last-of-type {
  border-bottom: none;
}

.stat-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--sb-green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stat-label-sm {
  font-size: 12px;
  color: #4a5565;
  display: block;
}

.stat-value-lg {
  font-size: 16px;
  font-weight: 700;
  color: #155450;
  display: block;
}

.profile-woman-img {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 120px;
  object-fit: contain;
}

.info-box {
  background: var(--sb-green-light);
  border-radius: var(--radius-md);
  padding: 14px;
}

.info-box-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--sb-primary);
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
}

.info-box-body {
  font-size: 12px;
  color: #155450;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

/* ============================================================
   PREDICTION CHART (Step 42)
   ============================================================ */
.prediction-card {
  background: white;
  border: 1px solid var(--sb-border);
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  overflow: visible;
  position: relative;
}

/* SVG chart inner wrapper */
.prediction-card .relative {
  position: relative;
}

/* ============================================================
   LOADING (Step 44)
   ============================================================ */
.loading-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.progress-item {}

.progress-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.progress-item-label {
  font-size: 16px;
  font-weight: 500;
  color: #155450;
}

.progress-item-status {
  font-size: 12px;
  color: var(--sb-text-muted);
  min-width: 32px;
  text-align: right;
}

.mini-progress-bar {
  height: 6px;
  background: var(--sb-border);
  border-radius: 99px;
  overflow: hidden;
}

.mini-progress-fill {
  height: 100%;
  background: var(--sb-primary);
  border-radius: 99px;
  transition: width 0.1s linear;
}

.check-circle {
  width: 20px;
  height: 20px;
  background: #155450;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-circle svg {
  width: 11px;
  height: 11px;
  stroke: white;
  stroke-width: 3;
}

/* Trustpilot */
.trust-section {
  width: 100%;
  margin-top: 28px;
  text-align: center;
}

.trust-headline {
  font-size: 18px;
  font-weight: 700;
  color: #155450;
  margin-bottom: 12px;
}

.laurel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.laurel {
  font-size: 22px;
  opacity: 0.6;
}

.tp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tp-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
}

.tp-star {
  color: #00B67A;
  font-size: 16px;
}

.tp-stars-row {
  display: flex;
  gap: 2px;
}

.tp-stars-row span {
  font-size: 16px;
  color: #00B67A;
}

.tp-excellent {
  font-size: 12px;
  color: var(--sb-text-muted);
  font-weight: 500;
}

/* ============================================================
   REVIEW CARD
   ============================================================ */
.review-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.review-track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}

.review-slide {
  min-width: 100%;
}

.review-card {
  background: white;
  border: 2px solid #c2d3d1;
  border-radius: 5px;
  padding: 16px;
  text-align: left;
  width: 100%;
}

.review-author {
  font-size: 18px;
  font-weight: 700;
  color: #155450;
  margin-bottom: 2px;
  font-family: "Poppins", sans-serif;
}

.review-stars {
  color: #FBBF24;
  font-size: 20px;
}

.review-text {
  font-size: 14px;
  color: #4a5565;
  line-height: 1.5;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.testimonial-verified {
  font-size: 11px;
  color: var(--sb-text-muted);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--sb-border);
}

/* ============================================================
   EMAIL INPUT (Step 45)
   ============================================================ */
.email-input-wrap {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.email-field {
  width: 100%;
  border: 1px solid var(--sb-border);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 18px;
  color: #155450;
  background: white;
  outline: none;
  transition: border-color 0.2s;
  font-weight: 700;
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
}

.email-field:focus {
  border-color: var(--sb-primary);
}

.email-field::placeholder {
  color: #B0BDB9;
}

.secure-badge {
  font-size: 14px;
  color: #155450;
  text-align: center;
  font-weight: 700;
}

/* ============================================================
   DATE INPUT
   ============================================================ */
.date-input-block {
  width: 100%;
}

.date-input-block input[type="date"] {
  width: 100%;
  border: 1px solid var(--sb-border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 20px;
  color: #155450;
  background: white;
  outline: none;
  transition: border-color 0.2s;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.date-input-block input:focus {
  border-color: var(--sb-primary);
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: flex-end;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
  animation: overlayIn 0.25s ease;
}

@keyframes overlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-box {
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 20px 20px 36px;
  width: 100%;
  max-width: 500px;
  animation: sheetUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes sheetUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.modal-handle {
  width: 40px;
  height: 4px;
  background: #E0E0E0;
  border-radius: 99px;
  margin: 0 auto 20px;
}

.modal-title {
  font-size: 24px;
  font-weight: 600;
  color: #155450;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

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

/* ============================================================
   SCRATCH CARD PAGE
   ============================================================ */
.scratch-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.scratch-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1B5E52 0%, #2D8F7B 100%);
}

.scratch-percent {
  font-size: 80px;
  font-weight: 900;
  color: #FFD700;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scratch-off {
  font-size: 32px;
  font-weight: 800;
  color: white;
  letter-spacing: 4px;
  margin-top: -8px;
}

.scratch-code {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 99px;
}

.scratch-canvas {
  position: relative;
  z-index: 2;
  cursor: crosshair;
  touch-action: none;
}

/* ============================================================
   PAYWALL PAGE
   ============================================================ */
.paywall-page {
  min-height: 100vh;
  background: var(--sb-bg);
  display: flex;
  flex-direction: column;
}

.paywall-page.hidden {
  display: none;
}

.paywall-page.active {
  display: flex;
}

.paywall-countdown-bar {
  background: white;
  border-bottom: 1px solid var(--sb-border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.countdown-display {
  display: flex;
  align-items: center;
  gap: 4px;
}

.countdown-numbers {
  font-size: 30px;
  font-weight: 700;
  color: var(--sb-primary);
  font-variant-numeric: tabular-nums;
  font-family: 'Poppins', sans-serif;
}

.countdown-sep {
  font-size: 30px;
  font-weight: 700;
  color: var(--sb-primary);
  font-family: 'Poppins', sans-serif;
}

.countdown-label {
  font-size: 12px;
  color: var(--sb-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  line-height: 1.3;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

/* ---- Scratch Card ---- */
.sc-wrapper {
  position: relative;
  width: 100%;
  max-width: 220px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

/* The revealed discount layer underneath */
.sc-reveal {
  background: #c2d3d1;
  border-radius: 12px;
  padding: 32px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 300px;
  justify-content: center;
  position: relative;
}

.sc-reveal::before,
.sc-reveal::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--sb-bg);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.sc-reveal::before {
  left: -10px;
}

.sc-reveal::after {
  right: -10px;
}

.sc-percent {
  font-size: 48px;
  font-weight: 700;
  color: var(--sb-primary);
  line-height: 1;
  font-family: 'Dm Sans', sans-serif;
}

.sc-discount-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--sb-primary);
  margin-top: 4px;
  line-height: 1.3;
  font-family: 'Dm Sans', sans-serif;
}

.sc-subtitle {
  font-size: 20px;
  color: #155450;
  line-height: 1.4;
  margin-top: 8px;
  max-width: 200px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.sc-dashed-line {
  width: 80%;
  height: 1px;
  border-top: 2px dashed rgba(27, 94, 82, 0.25);
  margin: 18px 0 14px;
}

.sc-code-badge {
  display: block;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #9a9a9a;
}

.sc-code-badge-discount {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.sc-code-badge span {
  font-family: 'Poppins', sans-serif;
}

.sc-code-badge strong {
  color: #4a5565;
}

/* The canvas sits on top of the reveal layer */
.sc-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  touch-action: none;
  border-radius: 12px;
}


.paywall-content {
  padding: 0 0 60px;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* ---- Before/After Section — card style matching original ---- */
.before-after-section {
  display: flex;
  justify-content: center;
  padding: 24px 16px;
  margin: 0;
  width: 100%;
  background: transparent;
}

/* The card wrapper */
.before-after-card {
  width: 100%;
  max-width: 512px;
  border-radius: 10px;
  overflow: hidden;
}

/* Gradient area (top part of card) */
.ba-card-gradient {
  background: linear-gradient(to bottom right, #e3f3e9, #155450);
  padding: 12px 12px 0 12px;
}

/* White header bar with "Agora" | "Após o programa" */
.ba-header-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 10px;
  padding: 10px 0;
}

.ba-header-label {
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
}

.ba-header-label--after {
  color: #155450;
}

.ba-header-divider {
  width: 2px;
  height: 26px;
  background: #E2E8F1;
  flex-shrink: 0;
}

/* Images row */
.ba-images-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
}

.ba-img-col {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ba-image {
  height: 200px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

/* Arrow between images */
.ba-arrow-col {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bottom white stats bar */
.ba-stats-bar {
  display: flex;
  background: white;
  border: 1px solid #c2d3d1;
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.ba-stat-cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 20px;
}

.ba-stat-cell--border {
  border-right: 2px solid #E2E8F1;
}

.ba-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #58595B;
  font-family: 'Poppins', sans-serif;
}

.ba-stat-value {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
}

/* Paywall inner content padding */
.paywall-content>*:not(.before-after-section) {
  padding-left: 16px;
  padding-right: 16px;
}

/* Paywall Headline */
.paywall-headline {
  font-size: 32px;
  font-weight: 500;
  color: #155450;
  text-align: center;
  line-height: 1.55;
  padding: 4px 16px 0;
}

/* ---- Stats Cards (big, like original) ---- */
.stats-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
}

.stat-card {
  background: white;
  border: 2px solid #c2d3d1;
  border-radius: 10px;
  padding: 20px 20px 16px;
}

.stat-card-pct {
  font-size: 48px;
  font-weight: 900;
  color: #155450;
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.stat-card-divider {
  height: 2px;
  background: #c2d3d1;
  margin: 20px 0;
}

.stat-card-desc {
  font-size: 16px;
  color: #0a0a0a;
  line-height: 1.5;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.stat-card-desc strong {
  color: #0a0a0a;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* ---- 1,000,000+ Social Proof Card (gold gradient) ---- */
.million-card {
  background: linear-gradient(to bottom, #fdf2c0, #d0b048);
  border-radius: 10px;
  border: 1px solid #c2d3d1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 16px;
  margin-top: 50px;
}

.million-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.million-laurel {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4px;
}

.million-laurel svg {
  width: 38px;
  height: auto;
}

.million-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px;
}

.million-number {
  font-size: 20px;
  font-weight: 700;
  color: #155450;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

.million-text {
  font-size: 16px;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.5;
  text-align: center;
  max-width: 194px;
  font-family: 'Poppins', sans-serif;
}

.btn-million-cta {
  background: #155450;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 15px 16px;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: background-color 0.2s;
}

.btn-million-cta:hover {
  background: #104844;
}

/* Profile Grid */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 16px;
}

.profile-grid-item {
  background: white;
  border: 1px solid #c2d3d1;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pg-icon-svg {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.pg-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pg-label {
  font-size: 14px;
  color: #4a5565;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.pg-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--sb-text);
  font-family: 'Poppins', sans-serif;
}

/* ---- Coupon Card ---- */
.coupon-card {
  background: linear-gradient(134deg, #f22e2e 0%, #2e57ca 100%);
  border-radius: 10px;
  padding: 18px 16px;
  margin: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
}

.coupon-top-row {
  display: flex;
  align-items: center;
}

.coupon-divider {
  height: 1px;
  width: 100%;
  background: black;
  opacity: 0.3;
}

.coupon-offer-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: white;
}

.coupon-offer-label span {
  font-family: 'Poppins', sans-serif;
}

.coupon-discount-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  padding: 5px;
}

.coupon-icon {
  font-size: 20px;
  background: rgba(255, 255, 255, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coupon-bottom-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.coupon-code {
  flex: 1;
  padding: 10px 10px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: #4a5565;
  background: white;
  cursor: pointer;
  user-select: all;
  min-width: 0;
  font-family: 'Poppins', sans-serif;
}

.coupon-countdown {
  background: #111111;
  border-radius: 10px;
  padding: 8px 14px;
  text-align: center;
  flex-shrink: 0;
}

.cc-nums-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.cc-num {
  font-size: 18px;
  font-weight: 700;
  color: white;
  font-variant-numeric: tabular-nums;
  min-width: 24px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.cc-colon {
  font-size: 20px;
  font-weight: 900;
  color: white;
}

.cc-labels-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  margin-top: 2px;
  gap: 4px;
}

.cc-labels-row span {
  font-family: 'Poppins', sans-serif;
}

/* ---- Plan Cards ---- */
.plan-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
}

/* Base card */
.plan-card {
  background: white;
  border-radius: 14px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  overflow: visible;
}

.plan-card:hover:not(.selected) {
  border-color: #9CC5BB;
}

/* Selected state — any card */
.plan-card.selected {
  background: #c2d3d1;
  border: 2.5px solid #155450;
}

/* Popular: extra top margin for badge */
.plan-card--popular {
  margin-top: 12px;
}

/* Popular badge pill */
.popular-badge-top {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sb-primary);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 22px;
  border-radius: 99px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  z-index: 2;
}

/* Plan info wrapper */
.plan-info {
  flex: 1;
  min-width: 0;
}

/* Radio circle */
.plan-radio-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #c2d3d1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.plan-card.selected .plan-radio-circle {
  background: #155450;
  border-color: #155450;
}

.plan-check {
  font-size: 14px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

/* Plan name */
.plan-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--sb-text);
  font-family: 'Poppins', sans-serif;
}

/* Price line */
.plan-price-line {
  font-size: 13px;
  color: var(--sb-text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.plan-old-price {
  text-decoration: line-through;
  color: #4a5565;
  text-decoration-color: #ef4444;
  font-weight: 500;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
}

.plan-arrow {
  color: #155450;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.plan-new-price {
  color: #155450;
  font-weight: 500;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
}

/* Per-day box */
.plan-per-day-box {
  position: relative;
  flex-shrink: 0;
  width: 107.5px;
  height: 73px;
  color: #c2d3d1;
  /* SVG fill color (unselected) */
  transition: color 0.18s;
}

.plan-per-day-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.plan-per-day-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-left: 28px;
}

/* Old price with red strikethrough line overlay */
.plan-per-day-old-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.plan-per-day-strike {
  position: absolute;
  left: 0;
  right: 0;
  top: 45%;
  height: 1px;
  background: #ef4444;
}

/* Selected: dark green SVG */
.plan-card.selected .plan-per-day-box {
  color: #155450;
}

.plan-per-day-old {
  font-size: 11px;
  color: #4a5565;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.plan-card.selected .plan-per-day-old {
  color: rgba(255, 255, 255, 0.65);
}

.plan-per-day-new {
  font-size: 18px;
  font-weight: 900;
  color: #155450;
  font-family: 'Poppins', sans-serif;
}

.plan-card.selected .plan-per-day-new {
  color: white;
}

.plan-per-day-label {
  font-size: 12px;
  color: #4a5565;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.plan-card.selected .plan-per-day-label {
  color: rgba(255, 255, 255, 0.75);
}

/* Security Badge */
.security-badge {
  text-align: center;
  font-size: 12px;
  color: #155450;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 16px;
  font-weight: 500;
}

.security-badge span {
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

/* Paywall CTA */
.btn-paywall-cta {
  width: calc(100% - 32px);
  margin: 0 16px;
  background: var(--sb-primary);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 18px 28px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  display: block;
  font-family: 'Red Hat Display', sans-serif;
}

.btn-paywall-cta:hover {
  background: var(--sb-primary-hover);
  transform: translateY(-1px);
}

.btn-paywall-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-paywall-cta:hover::after {
  transform: translateX(100%);
}

/* ---- Paywall Testimonials Slider ---- */
.testimonials-section-title {
  font-size: 32px;
  font-weight: 500;
  color: #155450;
  text-align: center;
  line-height: 1.5;
  padding: 50px 16px 4px;
  font-family: 'Poppins', sans-serif;
}

.paywall-testimonials-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
  user-select: none;
}

.paywall-testimonials-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.paywall-testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.paywall-testimonial-card {
  background: white;
  border: 1px solid #c2d3d1;
  border-radius: 10px;
  overflow: hidden;
}

.pw-testimonial-header {
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pw-testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: #155450;
  font-family: 'Poppins', sans-serif;
}

.pw-testimonial-city {
  font-size: 12px;
  color: #4a5565;
  margin-top: 2px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.pw-testimonial-quote-icon {
  color: var(--sb-primary);
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: .15;
}

.pw-testimonial-ba-img {
  width: 90%;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.pw-testimonial-body {
  padding: 14px 16px 16px;
}

.pw-testimonial-text {
  font-size: 12px;
  color: #4a5565;
  line-height: 1.5;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.pw-testimonial-stars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--sb-border);
}

.pw-testimonial-stars {
  display: flex;
  align-items: center;
}

.pw-stars-svg {
  height: 14px;
  width: auto;
  display: block;
}

.pw-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--sb-green-light);
  color: var(--sb-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
}

/* Slider nav dots */
.paywall-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding-bottom: 4px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sb-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s;
}

.slider-dot.active {
  background: var(--sb-primary);
  width: 22px;
  border-radius: 99px;
}

/* Slider nav arrows */
.paywall-slider-nav {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: 10px;
  padding-bottom: 4px;
}

.slider-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--sb-border);
  background: white;
  font-size: 22px;
  color: #0a0a0a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  line-height: 1;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.slider-nav-btn:hover {
  border-color: var(--sb-primary);
  background: var(--sb-green-light);
}

/* ---- Featured In ---- */
.featured-in {
  text-align: center;
  padding: 0 16px;
}

.featured-in-label {
  font-size: 32px;
  color: #155450;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  margin-top: 40px;
}

.featured-logos {
  display: block;
}

.featured-logos img {
  width: 100%;
}

/* ============================================================
   PAYMENT MODAL
   ============================================================ */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.pay-method-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: white;
  border: 2px solid var(--sb-border);
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.pay-method-btn:hover {
  border-color: var(--sb-primary);
}

.pay-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pay-divider span {
  flex: 1;
  height: 1px;
  background: var(--sb-border);
}

.pay-divider label {
  font-size: 13px;
  color: var(--sb-text-muted);
  white-space: nowrap;
}

.card-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-input {
  width: 100%;
  border: 2px solid var(--sb-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.card-input:focus {
  border-color: var(--sb-primary);
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Old review-card / testimonial-img kept for backward compat */
.testimonial-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ============================================================
   STATS BAR (paywall)
   ============================================================ */
.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-pct {
  font-size: 22px;
  font-weight: 900;
  color: var(--sb-primary);
  min-width: 54px;
}

.stat-desc {
  font-size: 13px;
  color: var(--sb-text);
  line-height: 1.4;
}

/* ============================================================
   GUARANTEE CARD (paywall)
   ============================================================ */
.guarantee-card {
  background: white;
  border: 1px solid #c2d3d1;
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 16px;
  margin-top: 50px;
}

.guarantee-badge-img {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  object-fit: contain;
}

.guarantee-text {
  flex: 1;
  text-align: left;
}

.guarantee-title {
  font-size: 16px;
  font-weight: 700;
  color: #155450;
  margin: 0 0 8px 0;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
}

.guarantee-desc {
  font-size: 12px;
  color: #4a5565;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

/* popular badge: always visible and green */
.popular-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #155450;
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 20px;
  border-radius: 99px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .quiz-header {
    padding: 10px 20px 12px;
  }

  .step {
    padding: 28px 24px;
  }

  .paywall-content {
    padding: 24px 20px 80px;
  }
}