/* ==========================================================================
   THE SLIM GAME - BRAND IDENTITY & QUALIFICATION FUNNEL
   Classic Linen Theme (#F7F3EC) with Obsidian Black (#171717),
   Forest Green (#0D923D), and Neon Orange (#F36821).
   Aesthetic: Empathetic Warmth, Mindful Vitality, Nurturing Minimalism.
   ========================================================================== */

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

/* --- Brand CSS Variables & Design Tokens --- */
:root {
  /* Brand Core Colors */
  --brand-linen: #F7F3EC;
  --brand-obsidian: #171717;
  --brand-green: #0D923D;
  --brand-green-hover: #0a7731;
  --brand-orange: #F36821;
  --brand-orange-hover: #d95514;
  --brand-red-pill: #E53935;

  /* Surfaces & Backgrounds */
  --bg-main: #F7F3EC;
  --bg-surface: rgba(255, 255, 255, 0.94);
  --bg-surface-elevated: #FFFFFF;
  --bg-input: #FFFFFF;

  /* Glow Effects */
  --glow-green: rgba(13, 146, 61, 0.25);
  --glow-orange: rgba(243, 104, 33, 0.25);

  /* Typography Colors */
  --text-primary: #171717;
  --text-secondary: #524E48;
  --text-muted: #78746D;

  /* Borders */
  --border-subtle: rgba(23, 23, 23, 0.08);
  --border-active: rgba(13, 146, 61, 0.5);
  --border-focus: #F36821;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 20px 40px -12px rgba(23, 23, 23, 0.08), 0 0 1px 1px rgba(23, 23, 23, 0.05);
  --shadow-glow-green: 0 8px 25px -4px var(--glow-green);
  --shadow-glow-orange: 0 8px 25px -4px var(--glow-orange);

  /* Typography (Swissra styled Arabic fonts) */
  --font-primary: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-body: 'Tajawal', system-ui, -apple-system, sans-serif;

  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  direction: rtl;
  text-align: right;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--brand-linen);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
  position: relative;
}

/* --- Ambient Brand Glows (Soft Light Theme) --- */
.ambient-glow-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb-1 {
  position: absolute;
  top: -12%;
  right: 8%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 146, 61, 0.1) 0%, rgba(13, 146, 61, 0) 70%);
  filter: blur(60px);
  animation: floatOrb 14s ease-in-out infinite alternate;
}

.glow-orb-2 {
  position: absolute;
  bottom: 8%;
  left: 6%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 104, 33, 0.09) 0%, rgba(243, 104, 33, 0) 70%);
  filter: blur(65px);
  animation: floatOrb 18s ease-in-out infinite alternate-reverse;
}

.glow-orb-3 {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(40px);
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.1); }
}

/* --- App Container & Layout --- */
.funnel-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: 16px 18px 36px 18px;
  display: flex;
  flex-direction: column;
}

/* --- Top Header & Brand Bar --- */
.funnel-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 2px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  height: 46px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 1.22rem;
  letter-spacing: -0.5px;
  color: var(--brand-obsidian);
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.74rem;
  color: var(--brand-orange);
  font-weight: 700;
}

.nav-back-btn {
  background: rgba(23, 23, 23, 0.05);
  border: 1px solid rgba(23, 23, 23, 0.1);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  visibility: hidden;
  opacity: 0;
}

.nav-back-btn.visible {
  visibility: visible;
  opacity: 1;
}

.nav-back-btn:hover {
  background: rgba(23, 23, 23, 0.1);
  color: var(--brand-obsidian);
  border-color: rgba(23, 23, 23, 0.2);
}

/* Progress bar */
.progress-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.progress-container.active {
  opacity: 1;
  transform: translateY(0);
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.progress-pill {
  background: rgba(243, 104, 33, 0.12);
  color: var(--brand-orange);
  border: 1px solid rgba(243, 104, 33, 0.25);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
}

.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(23, 23, 23, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-green));
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px var(--glow-green);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Cards Container & Step Deck --- */
.funnel-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.step-card {
  display: none !important;
  width: 100%;
  background: var(--bg-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.step-card.active {
  display: flex !important;
  animation: cardEnter var(--transition-smooth) forwards;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-orange), var(--brand-green), transparent);
}

@keyframes cardEnter {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.card-exit {
  animation: cardExit 0.22s cubic-bezier(0.4, 0, 1, 1) forwards !important;
}

@keyframes cardExit {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(0.98);
  }
}

/* --- Badges & Micro-Header --- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: rgba(13, 146, 61, 0.1);
  border: 1px solid rgba(13, 146, 61, 0.25);
  color: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.badge-pill.gold,
.badge-pill.orange {
  background: rgba(243, 104, 33, 0.1);
  border-color: rgba(243, 104, 33, 0.3);
  color: var(--brand-orange);
}

.badge-pill.cyan {
  background: rgba(13, 146, 61, 0.1);
  border-color: rgba(13, 146, 61, 0.25);
  color: var(--brand-green);
}

.step-title {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-obsidian);
  line-height: 1.38;
  margin-bottom: 10px;
}

.step-subtitle {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 22px;
}

/* --- Form Fields & Inputs --- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-obsidian);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-label .req-star {
  color: var(--brand-orange);
  font-weight: bold;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1.5px solid rgba(23, 23, 23, 0.12);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--brand-obsidian);
  outline: none;
  transition: var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--brand-orange);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(243, 104, 33, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.form-input.error,
.form-textarea.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18) !important;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.5;
}

.field-error-msg {
  color: #dc2626;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 2px;
  display: none;
  align-items: center;
  gap: 4px;
}

.field-error-msg.visible {
  display: flex;
}

/* Quick selection chips */
.quick-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.quick-chip {
  background: #FAF8F5;
  border: 1.5px solid rgba(23, 23, 23, 0.08);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.quick-chip:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: rgba(243, 104, 33, 0.08);
}

.quick-chip.selected,
.decision-btn.selected {
  background: rgba(13, 146, 61, 0.12) !important;
  border-color: var(--brand-green) !important;
  color: var(--brand-green) !important;
  font-weight: 800;
}

.decision-btn.selected .decision-btn-icon {
  background: var(--brand-green) !important;
  color: #ffffff !important;
  box-shadow: 0 0 10px var(--glow-green);
}

/* --- Question Decision Buttons --- */
.decision-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.decision-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #FFFFFF;
  border: 1.5px solid rgba(23, 23, 23, 0.09);
  border-radius: var(--radius-lg);
  color: var(--brand-obsidian);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: right;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.decision-btn-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.decision-btn-content span {
  font-size: clamp(0.76rem, 2.7vw, 0.96rem);
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.decision-btn-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  background: rgba(23, 23, 23, 0.04);
  border: 1px solid rgba(23, 23, 23, 0.08);
  transition: var(--transition-fast);
}

.decision-btn:hover,
.decision-btn:focus-visible {
  border-color: var(--brand-orange);
  background: #FAF8F5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.08);
}

.decision-btn:hover .btn-arrow-icon {
  opacity: 1;
  transform: translateX(-4px);
}

.decision-btn.yes:hover,
.decision-btn.yes:focus-visible {
  border-color: var(--brand-green) !important;
  background: rgba(13, 146, 61, 0.06) !important;
  box-shadow: var(--shadow-glow-green) !important;
  transform: translateY(-2px);
}

.decision-btn.yes:hover .decision-btn-icon {
  background: var(--brand-green);
  color: #ffffff;
  box-shadow: 0 0 12px var(--glow-green);
}

.decision-btn.no:hover,
.decision-btn.no:focus-visible {
  border-color: var(--brand-orange) !important;
  background: rgba(243, 104, 33, 0.06) !important;
  box-shadow: var(--shadow-glow-orange) !important;
  transform: translateY(-2px);
}

.decision-btn.no:hover .decision-btn-icon {
  background: var(--brand-orange);
  color: #ffffff;
  box-shadow: 0 0 12px var(--glow-orange);
}

.decision-btn:active {
  transform: scale(0.985);
}

.btn-arrow-icon {
  opacity: 0.4;
  transition: var(--transition-fast);
}

.decision-btn:hover .btn-arrow-icon {
  opacity: 1;
  transform: translateX(-4px);
}

/* Highlight Investment Box */
.investment-box {
  background: linear-gradient(135deg, rgba(243, 104, 33, 0.06) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1.5px solid rgba(243, 104, 33, 0.28);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  margin-bottom: 20px;
}

.investment-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-orange);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.investment-box-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.investment-amount {
  color: var(--brand-orange);
  font-weight: 900;
  text-decoration: underline;
}

/* Notice Statement Card */
.notice-box {
  background: #FAF8F5;
  border: 1px solid rgba(243, 104, 33, 0.2);
  border-right: 4px solid var(--brand-orange);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  margin-bottom: 20px;
}

.notice-box-text {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--brand-obsidian);
}

/* --- Primary CTA Action Buttons --- */
.primary-cta-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand-green) 0%, #0a7731 100%);
  border: none;
  border-radius: var(--radius-lg);
  padding: 15px 18px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 3.2vw, 1.05rem);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px -5px var(--glow-green);
  transition: var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  white-space: nowrap;
}

.primary-cta-btn span {
  white-space: nowrap;
}

.primary-cta-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: rotate(30deg);
  animation: shineBtn 4s infinite linear;
}

@keyframes shineBtn {
  0% { transform: translateX(-100%) rotate(30deg); }
  30%, 100% { transform: translateX(100%) rotate(30deg); }
}

.primary-cta-btn:hover {
  background: linear-gradient(135deg, #10b981 0%, var(--brand-green) 100%);
  box-shadow: 0 14px 28px -4px var(--glow-green);
  transform: translateY(-2px);
}

.primary-cta-btn:active {
  transform: scale(0.985);
}

.primary-cta-btn.gold,
.primary-cta-btn.orange {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #d95514 100%);
  box-shadow: 0 10px 22px -5px var(--glow-orange);
}

.primary-cta-btn.gold:hover,
.primary-cta-btn.orange:hover {
  background: linear-gradient(135deg, #fb923c 0%, var(--brand-orange) 100%);
  box-shadow: 0 14px 28px -4px var(--glow-orange);
}

/* --- Analyzing Loading State --- */
.loading-step-card {
  text-align: center;
  padding: 48px 24px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.loading-step-card.active {
  display: flex !important;
}

.pulse-spinner-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 26px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--brand-green);
  opacity: 0;
  animation: radarWave 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.radar-ring:nth-child(2) {
  animation-delay: 0.75s;
  border-color: var(--brand-orange);
}

.radar-ring:nth-child(3) {
  animation-delay: 1.5s;
  border-color: var(--brand-green);
}

@keyframes radarWave {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.spinner-center-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 22px var(--glow-green);
  position: relative;
  z-index: 2;
  animation: iconPulse 1.8s ease-in-out infinite alternate;
}

@keyframes iconPulse {
  0% { transform: scale(0.95); }
  100% { transform: scale(1.06); }
}

.loading-heading {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-obsidian);
  margin-bottom: 10px;
}

.loading-sub {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 320px;
  margin-bottom: 22px;
}

.loading-steps-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 300px;
}

.loading-step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: var(--transition-normal);
}

.loading-step-item.done {
  color: var(--brand-green);
  font-weight: 700;
}

.loading-step-item.active {
  color: var(--brand-orange);
  font-weight: 700;
}

.loading-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.15);
  transition: var(--transition-fast);
}

.loading-step-item.done .loading-step-dot {
  background: var(--brand-green);
  box-shadow: 0 0 8px var(--glow-green);
}

.loading-step-item.active .loading-step-dot {
  background: var(--brand-orange);
  box-shadow: 0 0 8px var(--glow-orange);
}

/* --- Passed Qualification State (عديتِ الاختبار) --- */
.passed-success-badge {
  width: 78px;
  height: 78px;
  margin: 0 auto 16px auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 146, 61, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 3px solid var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  box-shadow: var(--shadow-glow-green);
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounceIn {
  0% { transform: scale(0.2); opacity: 0; }
  60% { transform: scale(1.18); }
  100% { transform: scale(1); opacity: 1; }
}

.passed-title {
  color: var(--brand-green) !important;
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  margin-bottom: 10px !important;
}

.passed-message {
  font-size: 1.05rem;
  color: var(--brand-obsidian);
  font-weight: 700;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 18px auto;
}

.redirect-countdown-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 146, 61, 0.08);
  border: 1px solid rgba(13, 146, 61, 0.25);
  color: var(--brand-green);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.spinner-tiny {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(13, 146, 61, 0.3);
  border-top-color: var(--brand-green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Low Tier Alternative Programs Screen --- */
.outcome-alternatives {
  display: none;
  flex-direction: column;
}

.outcome-alternatives.active {
  display: flex !important;
}

.alt-hero-callout {
  background: #FAF8F5;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.alt-hero-callout h3 {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  color: var(--brand-obsidian);
  margin-bottom: 6px;
}

.alt-hero-callout p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.alt-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.alt-product-card {
  background: var(--bg-surface-elevated);
  border: 1.5px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius-lg);
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.alt-product-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
}

.alt-card-top-row {
  display: flex;
  align-items: center;
  margin-bottom: -2px;
}

.alt-card-badge {
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(13, 146, 61, 0.1);
  color: var(--brand-green);
  border: 1px solid rgba(13, 146, 61, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.alt-product-title {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--brand-obsidian);
  line-height: 1.25;
  white-space: nowrap;
}

.alt-product-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.alt-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.alt-features-list li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.alt-features-list li::before {
  content: '✓';
  color: var(--brand-green);
  font-weight: bold;
}

.alt-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(23, 23, 23, 0.06);
  margin-top: 4px;
}

.alt-pricing-wrap {
  display: flex;
  flex-direction: column;
}

.alt-price-current {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--brand-green);
}

.alt-price-old {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.alt-action-btn {
  background: #FAF8F5;
  border: 1px solid rgba(23, 23, 23, 0.12);
  color: var(--brand-obsidian);
  font-family: var(--font-primary);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.alt-action-btn:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #ffffff;
}

/* Footer / Trust Guarantee */
.funnel-footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-secondary);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
}

/* Responsive tweaks for mobile devices */
@media (max-width: 480px) {
  .funnel-wrapper {
    padding: 12px 14px 28px 14px;
  }
  .step-card {
    padding: 22px 16px;
  }
  .step-title {
    font-size: 1.18rem;
  }
  .decision-btn {
    padding: 12px 10px;
  }
  .decision-btn-content {
    gap: 8px;
  }
  .decision-btn-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
  .btn-arrow-icon {
    font-size: 0.8rem;
  }
  .primary-cta-btn {
    padding: 13px 12px;
    font-size: clamp(0.82rem, 3.2vw, 0.95rem);
    gap: 8px;
  }
}
