@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Tokens */
  --primary-green: #119c53;
  --primary-green-hover: #0f8546;
  --primary-green-light: #effaf3;
  --primary-green-border: #c2eed5;
  --primary-green-shadow: rgba(17, 156, 83, 0.2);
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-dark: #0f172a;
  
  --bg-desktop: #f1f5f9;
  --bg-mobile: #ffffff;
  --bg-card: #ffffff;
  
  --red-alert: #dc2626;
  --red-alert-bg: #fef2f2;
  --red-alert-border: #fca5a5;

  /* Borders & Spacing */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px -2px rgba(0,0,0,0.08), 0 2px 6px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 16px -6px rgba(0,0,0,0.04);
  --shadow-button: 0 5px 16px rgba(17, 156, 83, 0.4);

  /* Font Families */
  --font-family-title: 'Montserrat', sans-serif;
  --font-family-body: 'Inter', sans-serif;
}

/* Global Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-family-body);
  color: var(--text-main);
  background-color: var(--bg-desktop);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-title);
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.4px;
}

/* Mobile Centering Frame Layout */
.app-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  width: 100%;
}

.mobile-frame {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  background-color: var(--bg-mobile);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  border-left: 1px solid rgba(0, 0, 0, 0.03);
  border-right: 1px solid rgba(0, 0, 0, 0.03);
}

@media (max-width: 480px) {
  .mobile-frame {
    box-shadow: none;
    border-left: none;
    border-right: none;
  }
}

/* Header Styling */
.quiz-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 16px 20px 8px 20px;
  border-bottom: 1px solid #f1f5f9;
  position: relative; /* Enabled relative positioning for absolutely placed back button */
}

.quiz-back-btn {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  z-index: 100;
  outline: none;
}

.quiz-back-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.quiz-back-btn svg {
  display: block;
}

.logo-container {
  width: 100%;
  max-width: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
}

.logo-svg {
  width: 100%;
  height: auto;
  display: block;
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background-color: #f1f5f9;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 4px;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background-color: var(--primary-green);
  border-radius: var(--radius-full);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Steps Routing */
.quiz-step {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}

.quiz-step.active {
  display: flex;
  animation: slideFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Button & Card Click Scaling Animations */
.ripple-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.ripple-btn:active {
  transform: scale(0.97);
}

/* Premium Primary Call to Action Button */
.btn-primary {
  width: 100%;
  background-color: var(--primary-green);
  color: #ffffff;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-family-title);
  box-shadow: var(--shadow-button);
  transition: all 0.2s ease;
  border-bottom: 4px solid var(--primary-green-hover);
  text-align: center;
  outline: none;
  display: block;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(17, 156, 83, 0.5);
}

.btn-primary:active {
  transform: translateY(2px);
  border-bottom-width: 2px;
  box-shadow: 0 2px 6px var(--primary-green-shadow);
}

.btn-primary.disabled {
  background-color: #cbd5e1;
  border-color: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
  border-bottom-width: 0;
}

.btn-pulse {
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(17, 156, 83, 0.45), 0 5px 16px rgba(17, 156, 83, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(17, 156, 83, 0), 0 5px 16px rgba(17, 156, 83, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(17, 156, 83, 0), 0 5px 16px rgba(17, 156, 83, 0.4);
  }
}

/* Footer disclaimer */
.disclaimer-footer {
  padding: 24px 16px;
  background-color: #f8fafc;
  border-top: 1px solid #f1f5f9;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: auto;
  width: 100%;
}

/* ==========================================
   STEP STYLING RULES
   ========================================== */

/* Step 1: Landing Page */
.step-landing {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.landing-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  font-family: var(--font-family-title);
}

.badge-urgent {
  background-color: #000000;
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 900;
  margin-right: 4px;
}

.green-text {
  color: var(--primary-green);
}

.landing-subtitle {
  font-size: 12px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.3;
  margin-bottom: 16px;
  font-family: var(--font-family-body);
  padding: 0 10px;
}

.green-highlight {
  color: var(--primary-green);
  font-weight: 700;
}

.grid-border-box {
  border: 4px solid var(--primary-green);
  border-radius: var(--radius-lg);
  padding: 8px;
  width: 100%;
  margin-bottom: 20px;
  background-color: #ffffff;
}

.landing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
  width: 100%;
}

.grid-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background-color: #f8fafc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  padding: 8px;
  font-weight: bold;
}

.placeholder-svg {
  width: 50%;
  height: auto;
  margin-bottom: 6px;
}

.doc-name-tag {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
}

.card-label {
  width: 100%;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 4px;
  font-family: var(--font-family-title);
}

.red-label {
  color: #dc2626;
}

.green-label {
  color: var(--primary-green);
}

.landing-bullets {
  list-style: none;
  align-self: flex-start;
  margin-left: 20px;
  margin-bottom: 24px;
}

.landing-bullets li {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.landing-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-green);
  border-radius: 50%;
}

/* Step 2: Welcome Page */
.step-welcome {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.welcome-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: var(--font-family-title);
  padding: 0 5px;
}

.welcome-subtitle {
  font-size: 13px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.3;
  margin-bottom: 16px;
  font-family: var(--font-family-body);
}

.welcome-image-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  border: 1px solid #f1f5f9;
  aspect-ratio: 1.05;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8fafc;
  position: relative;
}

.welcome-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.welcome-image-placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  padding: 24px;
}

.avatar-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  border: 2px solid var(--primary-green-border);
}

.avatar-svg {
  width: 80px;
  height: 80px;
}

.placeholder-brand {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.placeholder-info {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.dosage-callout {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 24px;
  font-family: var(--font-family-body);
}

.highlight-badge {
  background-color: var(--primary-green);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 700;
}

/* Step 3: Conditions Check */
.step-conditions {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.conditions-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
}

.conditions-subtitle {
  font-size: 13px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  font-family: var(--font-family-body);
}

.conditions-instruction {
  font-size: 12px;
  text-align: center;
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 24px;
  padding: 0 10px;
}

.options-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.condition-card {
  width: 100%;
  background-color: var(--primary-green-light);
  border: 2px solid var(--primary-green-border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.condition-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.condition-card.checked {
  background-color: #ffffff;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 1px var(--primary-green), var(--shadow-md);
}

.condition-visual {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  border: 1px solid #f1f5f9;
  flex-shrink: 0;
  position: relative;
}

.condition-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-fallback {
  position: absolute;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.condition-svg {
  width: 100%;
  height: 100%;
}

.condition-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  flex-grow: 1;
  padding-right: 8px;
}

.checkbox-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.styled-checkbox {
  appearance: none;
  background-color: #ffffff;
  border: 2px solid #cbd5e1;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.styled-checkbox:checked {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.styled-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

/* Step 4: Deworming Page */
.step-deworm {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.deworm-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
  padding: 0 10px;
}

.deworm-subtitle {
  font-size: 13px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 32px;
  font-family: var(--font-family-body);
}

.options-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.deworm-btn {
  width: 100%;
  background-color: var(--primary-green-light);
  border: 2px solid var(--primary-green-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  text-align: left;
  outline: none;
}

.deworm-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.deworm-btn:active {
  transform: scale(0.98);
}

.emoji-display {
  font-size: 26px;
  margin-right: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.btn-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  font-family: var(--font-family-body);
}

/* Step 5: News advisory */
.step-news {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.news-warning-box {
  width: 100%;
  background-color: #ffffff;
  padding: 4px 8px;
  margin-bottom: 14px;
}

.warning-text {
  font-size: 13.5px;
  line-height: 1.45;
  text-align: center;
  color: var(--text-dark);
  font-family: var(--font-family-body);
}

.red-bold {
  color: var(--red-alert);
  font-weight: 800;
}

.black-bold {
  color: var(--text-dark);
  font-weight: 800;
}

.green-bold {
  color: var(--primary-green);
  font-weight: 800;
}

.news-link-container {
  margin-bottom: 20px;
  text-align: center;
}

.news-link {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: underline;
  font-family: var(--font-family-title);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hand-emoji {
  font-size: 18px;
}

.g1-news-block {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border-radius: 4px;
  overflow: hidden;
}

.news-header-banner {
  background-color: #c4170c;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  color: #ffffff;
}

.logo-badge {
  background-color: #ffffff;
  color: #c4170c;
  font-weight: 900;
  font-size: 14px;
  padding: 0px 6px;
  border-radius: 2px;
  letter-spacing: -0.5px;
}

.news-category {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-family: var(--font-family-title);
}

.news-search-icon {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.news-article-content {
  padding: 16px 12px;
}

.news-headline {
  font-size: 19px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
}

.news-intro {
  font-size: 12.5px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 16px;
  font-family: var(--font-family-body);
}

.news-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 100%;
  margin-bottom: 8px;
}

.news-image-card {
  width: 100%;
  aspect-ratio: 1.25;
  overflow: hidden;
  background-color: #f1f5f9;
  position: relative;
  border: 1px solid #e2e8f0;
}

.news-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 600;
  padding: 4px;
  text-align: center;
}

.news-caption {
  font-size: 10px;
  color: #777777;
  line-height: 1.4;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.news-body-text {
  font-size: 12.5px;
  color: #333333;
  line-height: 1.65;
  font-family: var(--font-family-body);
}

.news-body-text p {
  margin-bottom: 14px;
}

.news-body-text .quote {
  font-size: 13.5px;
  font-weight: 700;
  color: #111111;
  border-left: 3px solid #c4170c;
  padding-left: 10px;
  margin: 16px 0;
  font-style: italic;
}

.news-footer-divider {
  width: 100%;
  height: 6px;
  background-color: #c4170c;
}

/* Step 6: Gravity Awareness */
.step-awareness {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.awareness-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
  padding: 0 5px;
}

.awareness-subtitle {
  font-size: 13.5px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 32px;
  font-family: var(--font-family-body);
}

.awareness-btn {
  width: 100%;
  background-color: var(--primary-green);
  color: #ffffff;
  border: none;
  padding: 18px 20px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-family-body);
  display: flex;
  align-items: center;
  text-align: left;
  box-shadow: 0 4px 14px rgba(21, 163, 90, 0.25);
  transition: all 0.2s ease;
  border-bottom: 4px solid var(--primary-green-hover);
  outline: none;
}

.awareness-btn.centered {
  justify-content: center;
  text-align: center;
}

.awareness-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(21, 163, 90, 0.35);
}

.awareness-btn:active {
  transform: scale(0.98);
}

.emoji-face {
  font-size: 22px;
  margin-right: 14px;
  flex-shrink: 0;
  line-height: 1;
}

/* Step 7: Blame Agreement */
.step-blame {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.blame-title {
  font-size: 19px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
  padding: 0 5px;
}

.blame-subtitle {
  font-size: 13.5px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 32px;
  font-family: var(--font-family-body);
}

.blame-btn {
  width: 100%;
  background-color: var(--primary-green);
  color: #ffffff;
  border: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-family-title);
  text-align: center;
  box-shadow: 0 4px 14px rgba(21, 163, 90, 0.25);
  transition: all 0.2s ease;
  border-bottom: 4px solid var(--primary-green-hover);
  outline: none;
}

.blame-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(21, 163, 90, 0.35);
}

.blame-btn:active {
  transform: scale(0.98);
}

/* Step 8: Diet checklist */
.step-diet {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.diet-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
}

.diet-subtitle {
  font-size: 13.5px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  font-family: var(--font-family-body);
}

.diet-card {
  width: 100%;
  background-color: var(--primary-green-light);
  border: 2px solid var(--primary-green-border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.diet-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.diet-card.checked {
  background-color: #ffffff;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 1px var(--primary-green), var(--shadow-md);
}

.diet-visual {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  border: 1px solid #f1f5f9;
  flex-shrink: 0;
  position: relative;
}

.diet-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-svg {
  width: 100%;
  height: 100%;
}

.diet-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  flex-grow: 1;
}

/* Step 9: Symptoms (Checkboxes LEFT) */
.step-symptoms {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.symptoms-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
  padding: 0 5px;
}

.symptoms-subtitle {
  font-size: 13.5px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  font-family: var(--font-family-body);
}

.symptoms-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.symptom-card {
  width: 100%;
  background-color: var(--primary-green-light);
  border: 2px solid var(--primary-green-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.symptom-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.symptom-card.checked {
  background-color: #ffffff;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 1px var(--primary-green), var(--shadow-md);
}

.checkbox-wrapper-left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  margin-right: 14px;
  flex-shrink: 0;
}

.styled-checkbox-left {
  appearance: none;
  background-color: #ffffff;
  border: 2px solid #cbd5e1;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.styled-checkbox-left:checked {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.styled-checkbox-left:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.symptom-text {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  font-family: var(--font-family-body);
}

/* Step 10: Duration */
.step-duration {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.duration-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
  padding: 0 10px;
}

.duration-subtitle {
  font-size: 13.5px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
  font-family: var(--font-family-body);
}

.duration-options-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.duration-card {
  width: 100%;
  background-color: var(--primary-green-light);
  border: 2px solid var(--primary-green-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.duration-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.duration-card:active {
  transform: scale(0.98);
}

.card-info {
  flex-grow: 1;
  padding-right: 16px;
}

.card-headline {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: var(--font-family-title);
}

.card-description {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  font-family: var(--font-family-body);
}

.arrow-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--primary-green);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-green);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.duration-card:hover .arrow-circle {
  background-color: var(--primary-green);
  color: #ffffff;
}

.arrow-svg {
  width: 16px;
  height: 16px;
}

/* ==========================================
   NEW STEPS STYLING RULES (STEPS 11 - 15)
   ========================================== */

/* Step 11: Symptom Impact */
.step-impact {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.impact-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
  padding: 0 10px;
}

.impact-subtitle {
  font-size: 13.5px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 32px;
  font-family: var(--font-family-body);
}

/* Step 12: Prostate Volume */
.step-volume {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.volume-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
}

.volume-subtitle {
  font-size: 13.5px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
  font-family: var(--font-family-body);
}

.volume-options-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.volume-card {
  width: 100%;
  background-color: var(--primary-green-light);
  border: 2px solid var(--primary-green-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.volume-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.volume-card:active {
  transform: scale(0.98);
}

.volume-card-info {
  flex-grow: 1;
  padding-right: 16px;
  display: flex;
  align-items: center;
}

.volume-card-emoji {
  font-size: 24px;
  margin-right: 14px;
  flex-shrink: 0;
  line-height: 1;
}

.volume-card-headline {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-family-body);
  line-height: 1.4;
}

/* Step 13: WhatsApp Audio Page */
.step-audio-advisory {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.warning-banner-card {
  width: 100%;
  background-color: var(--primary-green);
  color: #ffffff;
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(21, 163, 90, 0.3);
  text-align: center;
}

.warning-banner-card h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.warning-banner-card p {
  font-size: 12.5px;
  line-height: 1.45;
}

.underline-text {
  text-decoration: underline;
  font-weight: 800;
}

.escute-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 4px;
  font-family: var(--font-family-title);
}

.escute-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

/* WhatsApp Chat Window & Voice Bubble Widget */
.wa-chat-container {
  width: 100%;
  background-color: #efeae2; /* WhatsApp sandy chat wallpaper */
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  margin-bottom: 28px;
  border: 1px solid #e1dcd5;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80' opacity='0.06'%3E%3Cpath d='M40 10c-3 0-5 2-5 5s2 5 5 5 5-2 5-5-2-5-5-5zm-2 15h4v15h-4zm0 20h4v15h-4z' fill='%236e6e6e'/%3E%3Cpath d='M10 40c0-3 2-5 5-5s5 2 5 5-2 5-5 5-5-2-5-5zm15-2h15v4H25zm20 0h15v4H45z' fill='%236e6e6e'/%3E%3C/svg%3E");
  background-size: 55px 55px;
  background-repeat: repeat;
  position: relative;
  overflow: hidden;
}

.wa-bubble-wrapper {
  display: flex;
  align-items: flex-start;
  max-width: 100%;
  position: relative;
}

.wa-bubble-tail {
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-right: 10px solid #ffffff;
  border-bottom: 10px solid transparent;
  margin-top: 0px;
  margin-right: -1px;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.wa-bubble {
  background-color: #ffffff;
  border-radius: 0 12px 12px 12px;
  padding: 10px 12px 8px 12px;
  box-shadow: 0 1.5px 2px rgba(0,0,0,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  gap: 12px;
}

.wa-timeline-column {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wa-control-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.wa-play-btn {
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  color: #7a7a7a;
  padding: 0;
  transition: color 0.2s ease;
}

.wa-play-btn:hover {
  background-color: transparent;
  color: #4a4a4a;
}

.wa-play-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Timeline Custom Seekbar */
.wa-waveform-container {
  width: 100%;
  flex-grow: 1;
  height: 24px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.wa-waveform {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5px;
}

.wa-bar {
  flex-grow: 1;
  max-width: 2.5px;
  background-color: #d2d6d9; /* WhatsApp unplayed capsule grey */
  border-radius: 2px;
  transition: background-color 0.1s ease;
}

.wa-bar.played {
  background-color: #53bdeb; /* Played WhatsApp blue */
}

.wa-playhead {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #53bdeb;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  z-index: 10;
}

.wa-timer {
  font-size: 11px;
  color: #8c8c8c;
  font-family: var(--font-family-body);
  margin-top: 1px;
  text-align: left;
  margin-left: 32px; /* Align perfectly with waveform start */
}

/* Avatar on Right side of the WhatsApp bubble */
.wa-avatar-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e2e8f0;
  border: 1px solid #e9edef;
}

.wa-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Rounded inside avatar box to allow overlay */
}

.wa-avatar-mic-badge {
  position: absolute;
  bottom: -2px;
  left: -4px; /* WhatsApp mic badge floats bottom-left of avatar */
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #53bdeb; /* Blue heard/mic badge */
  border: 2px solid #ffffff; /* Thick white border */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  z-index: 10;
}

.wa-avatar-fallback {
  position: absolute;
  width: 28px;
  height: 28px;
}

.wa-contact-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #00b85c; /* WhatsApp sender bright green */
  margin-bottom: 2px;
  font-family: var(--font-family-body);
  letter-spacing: 0.2px;
}

/* Scans & Clinical Case Comparisons */
.case-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 4px;
  font-family: var(--font-family-title);
}

.case-subtitle {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
}

.scan-border-box {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 8px;
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  width: 100%;
  margin-bottom: 24px;
}

.scan-images-row {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  aspect-ratio: 1.8;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: #020617;
}

.scan-images-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scan-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background: linear-gradient(to right, #020617 48%, #1e293b 50%, #020617 52%);
  color: #ffffff;
}

.scan-half {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  position: relative;
}

.scan-half-label {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #94a3b8;
}

.scan-half-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px dashed #94a3b8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
}

.scan-half-circle.red-dashed {
  border-color: #ef4444;
  color: #fca5a5;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.scan-half-circle.green-solid {
  border: 2.5px solid var(--primary-green);
  color: #bbf7d0;
  box-shadow: 0 0 10px rgba(21, 163, 90, 0.3);
}

.scan-arrow-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  color: var(--red-alert);
  border: 2px solid #ef4444;
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  font-size: 8.5px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
}

.arrow-icon-small {
  width: 8px;
  height: 8px;
  fill: var(--red-alert);
}

/* Testimonial card */
.testimonial-card {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.wa-testimonial-profile {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.wa-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  margin-right: 12px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wa-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wa-testimonial-info {
  display: flex;
  flex-direction: column;
}

.wa-testimonial-name {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-dark);
  font-family: var(--font-family-title);
  line-height: 1.25;
}

.wa-testimonial-city {
  font-size: 10.5px;
  color: var(--text-muted);
}

.wa-testimonial-body {
  font-size: 12.5px;
  color: var(--text-main);
  line-height: 1.6;
  font-family: var(--font-family-body);
}

/* Step 14: Protocol Interest */
.step-interest {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.interest-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
  padding: 0 5px;
}

.interest-subtitle {
  font-size: 13.5px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 32px;
  font-family: var(--font-family-body);
}

/* Step 15: Meds checklist */
.step-meds {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.meds-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
}

.meds-subtitle {
  font-size: 13.5px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  font-family: var(--font-family-body);
}

.meds-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.meds-card {
  width: 100%;
  background-color: var(--primary-green-light);
  border: 2px solid var(--primary-green-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.meds-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.meds-card.checked {
  background-color: #ffffff;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 1px var(--primary-green), var(--shadow-md);
}

.meds-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  font-family: var(--font-family-body);
}

/* ==========================================
   NEW STEPS STYLING RULES (STEPS 16 - 23)
   ========================================== */

/* Step 16: Prostate Monitoring Frequency */
.step-monitoring {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.monitoring-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
}

.monitoring-subtitle {
  font-size: 13.5px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
  font-family: var(--font-family-body);
}

.monitoring-options-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.monitoring-card {
  width: 100%;
  background-color: var(--primary-green-light);
  border: 2px solid var(--primary-green-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.monitoring-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.monitoring-card:active {
  transform: scale(0.98);
}

.monitoring-card-headline {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-family-body);
  line-height: 1.4;
}

.monitoring-right-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.monitoring-emoji-box {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1.5px solid var(--primary-green-border);
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  line-height: 1;
}

/* Step 17: Health Agreement */
.step-health-agreement {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.agreement-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
  padding: 0 5px;
}

.agreement-subtitle {
  font-size: 13.5px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 32px;
  font-family: var(--font-family-body);
}

/* Step 18: Sexual Performance Status */
.step-performance {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.performance-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
}

.performance-subtitle {
  font-size: 13.5px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
  font-family: var(--font-family-body);
}

.performance-options-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.performance-card {
  width: 100%;
  background-color: var(--primary-green-light);
  border: 2px solid var(--primary-green-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.performance-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.performance-card:active {
  transform: scale(0.98);
}

.performance-card-headline {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-family-body);
  line-height: 1.45;
  flex-grow: 1;
  padding-right: 12px;
}

/* Step 19: Commitment & Carousel */
.step-commitment {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.commitment-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
}

.commitment-subtitle {
  font-size: 13.5px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 32px;
  font-family: var(--font-family-body);
}

/* Swipeable Responsive Proof Carousel (Without CSS Phone Frames) */
.carousel-container {
  width: 100%;
  max-width: 330px; /* Perfectly scaled middle-ground size! */
  margin: 24px auto 0 auto; /* Center it inside Step 19 card wrapper */
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  width: 100%;
  flex-shrink: 0;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  margin-bottom: 8px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.carousel-dot.active {
  background-color: var(--primary-green);
  width: 14px;
  border-radius: var(--radius-full);
}

/* WhatsApp Mock Fallback Chat Styles (For missing images) */
.wa-chat-bg {
  background-color: #efeae2;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 0);
  background-size: 12px 12px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wa-chat-header {
  background-color: #075e54;
  color: #ffffff;
  padding: 24px 8px 8px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wa-back-arrow {
  font-size: 20px;
  font-weight: bold;
}

.wa-chat-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #cbd5e1;
  color: #475569;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: bold;
}

.wa-chat-title-group {
  display: flex;
  flex-direction: column;
}

.wa-chat-name {
  font-size: 10px;
  font-weight: 700;
}

.wa-chat-status {
  font-size: 8px;
  opacity: 0.8;
}

.wa-chat-body {
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  flex-grow: 1;
}

.wa-chat-msg {
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 9px;
  line-height: 1.3;
  max-width: 85%;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}

.wa-chat-msg.received {
  background-color: #ffffff;
  align-self: flex-start;
  border-top-left-radius: 0;
}

.wa-chat-msg.sent {
  background-color: #d9fdd3;
  align-self: flex-end;
  border-top-right-radius: 0;
}

/* Step 20: Conquest Checklist */
.step-conquest {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.conquest-title {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: var(--font-family-title);
}

.conquest-subtitle {
  font-size: 13.5px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  font-family: var(--font-family-body);
}

.conquest-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.conquest-card {
  width: 100%;
  background-color: var(--primary-green-light);
  border: 2px solid var(--primary-green-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.conquest-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.conquest-card.checked {
  background-color: #ffffff;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 1px var(--primary-green), var(--shadow-md);
}

.conquest-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  font-family: var(--font-family-body);
}

/* Step 21: Dr. Tanaka explanation 2 */
.step-explanation-two {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.explanation-two-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 4px;
  font-family: var(--font-family-title);
}

.explanation-two-subtitle {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.testimonial-video-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 4px;
  font-family: var(--font-family-title);
}

.testimonial-video-subtitle {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
}

/* Video Player Box & Custom Control Overlay Styles */
.video-border-box {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 8px;
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  width: 100%;
  margin-bottom: 28px;
}

.video-container-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.77; /* 16:9 widescreen */
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: #000000;
}

.video-container-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16; /* Portrait 9:16 for Shorts! */
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: #000000;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease;
}

.video-play-overlay:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.video-play-btn-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #ff0000; /* YouTube Red play button style */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-play-overlay:hover .video-play-btn-circle {
  transform: scale(1.1);
  background-color: #cc0000;
}

/* Audio 2 visual speech waveform color bars */
.wa-bar-2 {
  flex-grow: 1;
  max-width: 2.5px;
  background-color: #d2d6d9; /* WhatsApp unplayed capsule grey */
  border-radius: 2px;
  transition: background-color 0.1s ease;
}

.wa-bar-2.played {
  background-color: #53bdeb; /* Played WhatsApp blue */
}

/* Step 22: Rapid 5-Second Double Progress Loading Screen */
.step-analysis-double {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 520px;
  justify-content: center;
}

.double-loader-logo {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img-large {
  width: 170px;
  height: auto;
  display: block;
}

.analysis-double-headline {
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  color: #475569; /* Slate text like target image */
  margin-bottom: 12px;
  font-family: var(--font-family-body);
  line-height: 1.4;
}

.analysis-highlight-badge {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  background-color: var(--primary-green);
  padding: 6px 14px;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 36px;
  font-family: var(--font-family-title);
  display: inline-block;
}

.double-loader-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.double-loader-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.double-loader-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 4px;
}

.double-loader-label {
  font-size: 13px;
  font-weight: 500;
  color: #64748b; /* Faint grey text under track */
  text-align: center;
  display: block;
}

.double-loader-percent {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a; /* Solid dark text like screenshot */
}

.double-loader-footer {
  text-align: center;
  margin-top: 6px;
  width: 100%;
}

.double-loader-track {
  width: 100%;
  height: 8px;
  background-color: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.double-loader-fill {
  height: 100%;
  width: 0%;
  background-color: var(--primary-green);
  border-radius: var(--radius-full);
}

/* Step 23: Final Success results */
.step-final-results {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 520px;
  justify-content: center;
}

.analysis-success-card {
  width: 100%;
  background-color: #ffffff;
  border: 3px solid var(--primary-green);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: scaleUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon-badge {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.success-headline {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-family: var(--font-family-title);
}

.success-body-text {
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 24px;
  font-family: var(--font-family-body);
}

.success-cta-btn {
  animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(21, 163, 90, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 24px rgba(21, 163, 90, 0.6);
    transform: scale(1.02);
  }
}


/* ==========================================
   ADVANCED STAGE STYLING (STEPS 23 - 24)
   ========================================== */

/* Step 23: Comparison Report */
.step-comparison-report {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.comparison-card-wrapper {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.comparison-header-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.logo-svg-small {
  width: 90px;
  height: auto;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.comparison-col {
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.comparison-col:hover {
  transform: translateY(-1px);
}

.column-meds {
  border-color: #fca5a5; /* Light red border */
}

.column-proto {
  border-color: #86efac; /* Light green border */
}

.comparison-col-header {
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.comparison-col-header h4 {
  font-size: 11px;
  font-weight: 800;
  margin: 0;
  font-family: var(--font-family-title);
  letter-spacing: 0.2px;
}

.bg-red-header {
  background-color: #fee2e2;
  color: #dc2626;
}

.bg-green-header {
  background-color: #dcfce7;
  color: #16a34a;
}

.header-icon {
  font-size: 16px;
  line-height: 1;
}

.comparison-list {
  list-style: none;
  padding: 10px 6px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.comparison-list li {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  color: #334155;
  padding-left: 14px;
  position: relative;
  font-family: var(--font-family-body);
}

.list-bullet {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 8px;
}

/* Diagnostics Sliders list */
.diagnostics-callout {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 24px;
  padding: 0 10px;
}

.green-text-bold {
  color: var(--primary-green);
  font-weight: 800;
}

.black-bold {
  color: #000000;
  font-weight: 800;
}

.green-bold {
  color: var(--primary-green);
  font-weight: 800;
}

.diagnostics-sliders-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.diagnostic-slider-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.slider-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 6px;
}

.slider-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  padding-right: 12px;
}

.slider-value {
  font-size: 12px;
  font-weight: 900;
}

.value-red {
  color: #dc2626;
}

.value-green {
  color: #16a34a;
}

.slider-track-container {
  width: 100%;
  height: 8px;
  background-color: #e2e8f0;
  border-radius: var(--radius-full);
  position: relative;
}

.slider-track-bar {
  height: 100%;
  border-radius: var(--radius-full);
  position: absolute;
  top: 0;
  left: 0;
  width: 0%; /* Dynamic fill */
}

.bg-red-track {
  background-color: #ef4444;
  box-shadow: 0 0 4px rgba(239, 68, 68, 0.15);
}

.bg-green-track {
  background-color: #22c55e;
  box-shadow: 0 0 4px rgba(34, 197, 94, 0.15);
}

.slider-track-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 3.5px solid currentColor;
  position: absolute;
  top: 50%;
  left: 0%; /* Dynamic seek */
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}

.bg-red-track + .slider-track-thumb {
  color: #ef4444;
}

.bg-green-track + .slider-track-thumb {
  color: #22c55e;
}

/* Parasite info tags */
.parasite-tag-box {
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}

.parasite-lead {
  font-size: 13.5px;
  color: var(--text-dark);
  font-weight: 600;
}

.parasite-latin-name {
  font-size: 17px;
  font-weight: 800;
  color: #c4170c;
  font-style: italic;
  text-decoration: underline;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* Parasite & Tomato Photo Container Box */
.parasite-photo-box, .tomato-photo-wrapper {
  width: 100%;
  aspect-ratio: 1.5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  position: relative;
  background-color: #f8fafc;
}

.parasite-photo-box img, .tomato-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.parasite-photo-placeholder, .tomato-photo-placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: bold;
}

/* Warning Yellow Card Callout */
.warning-callout-yellow {
  width: 100%;
  background-color: #ffffff; /* White background like target Image 3 */
  border-left: none; /* No border like target Image 3 */
  border-radius: 12px; /* Smooth rounded corners like target Image 3 */
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); /* Clean grey shadow like target Image 3 */
  text-align: left;
}

.warning-header-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.warning-emoji {
  font-size: 18px;
  line-height: 1;
}

.warning-header-row h4 {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a; /* Bold black title like target Image 3 */
  margin: 0;
  font-family: var(--font-family-title);
}

.warning-body-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: #334155;
  margin: 0;
  font-family: var(--font-family-body);
}

/* Tomato Intro Recipe section */
.tomato-recipe-box {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
}

.tomato-recipe-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
  padding: 0 5px;
}

/* Step 24: Widescreen VSL Screen */
.step-vsl-screen {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.vsl-header-badge {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 16px;
  font-family: var(--font-family-title);
}

.vsl-exclusive-banner {
  width: 100%;
  background-color: var(--primary-green);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 4px 14px rgba(21, 163, 90, 0.3);
  position: relative;
  margin-bottom: 32px;
}

@keyframes floatEffect {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.down-arrow-bubble {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #2563eb; /* Blue button bubble */
  border: 3.5px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 10;
}

/* Widescreen VSL central Player container */
.vsl-player-wrapper {
  width: 100%;
  max-width: 336px; /* Optimized Story width wrapper */
  margin: 0 auto 32px auto;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 8px;
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.vsl-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16; /* Story format 9:16 */
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: #000000;
}

.vsl-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Widescreen Restart/Resume overlay blur popup modal */
.vsl-resume-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.resume-modal-card {
  width: 88%;
  background-color: #8ebd23; /* Bright lime theme of Vtub video slots */
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 2.5px solid #ffffff;
}

.resume-prompt-msg {
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  font-family: var(--font-family-title);
}

.resume-buttons-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.vsl-overlay-btn {
  width: 100%;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-family-body);
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-transform: uppercase;
}

.vsl-overlay-btn:active {
  transform: scale(0.98);
}

.btn-resume {
  background-color: #ffffff;
  color: #8ebd23;
}

.btn-resume:hover {
  background-color: #f8fafc;
}

.btn-restart {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-restart:hover {
  background-color: rgba(255, 255, 255, 0.35);
}



/* Delayed Checkout Button */
.vsl-checkout-btn {
  width: 100%;
  margin-top: 12px;
  font-size: 14.5px;
  font-weight: 900;
  letter-spacing: 0.2px;
  padding: 18px 24px;
}

/* Strict Image Constraints & Collage Containers */
.logo-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  display: block;
}

.emoji-visual {
  font-size: 24px;
  line-height: 1;
  display: inline-block;
}

.landing-single-image-wrapper {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.landing-single-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.landing-single-fallback {
  width: 100%;
  aspect-ratio: 1.0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f8fafc;
  border-radius: var(--radius-md);
}

.news-single-image-wrapper {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  margin: 16px 0;
}

.news-single-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.news-single-fallback {
  width: 100%;
  aspect-ratio: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f1f5f9;
  border-radius: var(--radius-md);
}

.comparison-single-image-wrapper {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.comparison-single-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.comparison-single-fallback {
  width: 100%;
  aspect-ratio: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f8fafc;
  border-radius: var(--radius-md);
}

/* ==========================================
   MOBILE TYPOGRAPHY & SPACING TIGHTENING OVERRIDES
   ========================================== */
.conditions-title,
.deworm-title,
.awareness-title,
.blame-title,
.diet-title,
.symptoms-title,
.duration-title,
.impact-title,
.volume-title,
.interest-title,
.meds-title,
.monitoring-title,
.agreement-title,
.performance-title,
.commitment-title,
.conquest-title,
.explanation-two-title,
.testimonial-video-title,
.vsl-header-badge {
  line-height: 1.15 !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.3px !important;
}

.conditions-subtitle,
.deworm-subtitle,
.awareness-subtitle,
.blame-subtitle,
.diet-subtitle,
.symptoms-subtitle,
.duration-subtitle,
.impact-subtitle,
.volume-subtitle,
.interest-subtitle,
.meds-subtitle,
.monitoring-subtitle,
.agreement-subtitle,
.performance-subtitle,
.commitment-subtitle,
.conquest-subtitle,
.escute-subtitle,
.explanation-two-subtitle {
  line-height: 1.3 !important;
  margin-bottom: 16px !important;
}


