/**
 * FitalMx Tokenization Funnel — Design System
 * tokeniza.fitalmx.com
 * Theme: "Editorial Premium" — Stripe-level clean design
 *
 * Playfair Display for hero/headings
 * Plus Jakarta Sans for body
 * IBM Plex Mono for numbers/data
 * Orange #F97316 accent — NOT neon
 *
 * Performance: GPU-only animations (transform, opacity)
 * Accessibility: respects prefers-reduced-motion
 */

/* ═══════════════════════════════════════════════════════
   1. CUSTOM PROPERTIES
   ═══════════════════════════════════════════════════════ */
:root {
  --orange: #F97316;
  --orange-dark: #EA580C;
  --orange-light: #FB923C;
  --orange-glow: rgba(249, 115, 22, 0.15);
  --orange-dim: rgba(249, 115, 22, 0.06);

  --green: #16A34A;
  --green-dark: #15803D;
  --green-glow: rgba(22, 163, 74, 0.12);

  --red: #DC2626;
  --red-glow: rgba(220, 38, 38, 0.12);

  --bg: #F7F7F5;
  --bg-white: #FFFFFF;
  --bg-gray: #F1F1EF;
  --bg-black: #0A0A0A;
  --bg-dark: #111111;

  --text: #1A1A1A;
  --text-secondary: #525252;
  --text-light: #737373;
  --text-on-dark: #FAFAFA;
  --text-on-dark-secondary: #A3A3A3;

  --border: #E5E5E5;
  --border-light: #F0F0F0;
  --border-dark: #262626;

  --radius: 12px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.07), 0 5px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.08);

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 300ms var(--ease-out);
  --transition-fast: 150ms var(--ease-out);

  --z-behind: -1;
  --z-base: 0;
  --z-nav: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-progress: 9998;
  --z-noise: 9999;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.6;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: 100px;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════════════════════
   3. NOISE TEXTURE
   ═══════════════════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-noise);
  opacity: 0.012;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  mix-blend-mode: multiply;
}

/* ═══════════════════════════════════════════════════════
   4. SCROLL PROGRESS
   ═══════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  z-index: var(--z-progress);
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════
   5. CURSOR GLOW
   ═══════════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.04) 0%, rgba(249,115,22,0.01) 40%, transparent 70%);
  pointer-events: none;
  z-index: var(--z-behind);
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: left, top;
}
@media (hover: hover) and (min-width: 1024px) {
  .cursor-glow { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════
   6. TYPOGRAPHY
   ═══════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.625rem, 5vw + 1rem, 6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  letter-spacing: -0.03em;
}

h3 { font-size: clamp(1.25rem, 2vw + 0.25rem, 1.75rem); font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 700; }

p { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); text-wrap: pretty; }

.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-mono { font-family: var(--font-mono); }
.text-display { font-family: var(--font-display); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.text-center { text-align: center; }
.text-mag { color: var(--orange); }

/* ═══════════════════════════════════════════════════════
   7. LAYOUT
   ═══════════════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; width: 100%; }

.section { padding: 96px 0; position: relative; }
.section-white { background: var(--bg-white); }
.section-gray { background: var(--bg-gray); }
.section-black { background: var(--bg-black); color: var(--text-on-dark); }
.section-black h1, .section-black h2, .section-black h3, .section-black h4 { color: var(--text-on-dark); }
.section-black p { color: var(--text-on-dark-secondary); }
.section-dark { background: var(--bg); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-header p { margin-top: 16px; }

.pt-8 { padding-top: 128px; }
.mb-05 { margin-bottom: 8px; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 32px; }
.mb-3 { margin-bottom: 48px; }
.mt-1 { margin-top: 16px; }
.mt-3 { margin-top: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 640px; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 16px; }
.gap-2 { gap: 24px; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   8. SKIP NAV
   ═══════════════════════════════════════════════════════ */
.skip-nav {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--orange); color: #fff; padding: 12px 24px;
  font-weight: 600; border-radius: 0 0 var(--radius) 0;
}
.skip-nav:focus { left: 0; }

/* ═══════════════════════════════════════════════════════
   9. ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════ */
.announcement {
  background: var(--bg-black);
  color: var(--text-on-dark);
  padding: 10px 0;
  font-size: 0.875rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: calc(var(--z-nav) + 1);
}
.announcement a { color: var(--orange); font-weight: 600; margin-left: 8px; }
.announcement-dismiss {
  color: var(--text-on-dark-secondary);
  font-size: 1rem;
  margin-left: 16px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════
   10. NAVIGATION
   ═══════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: var(--announcement-height, 38px);
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: rgba(247, 247, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  transition: all var(--transition);
}
#main-nav.nav-scrolled { padding: 12px 0; box-shadow: var(--shadow-sm); }
#main-nav.nav-hidden { transform: translateY(-100%); }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 32px; width: auto; }
.nav-links { display: none; gap: 32px; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); transition: color var(--transition-fast); }
.nav-links a:hover { color: var(--text); }
.lang-toggle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.lang-toggle:hover { border-color: var(--orange); color: var(--orange); }
.nav-mobile-toggle { display: block; font-size: 1.5rem; color: var(--text); padding: 4px; }
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
}
.nav-mobile-menu.open { display: flex; }

@media (max-width: 767px) {
  #main-nav {
    padding: 8px 0;
    background: rgba(247, 247, 245, 0.97) !important;
    backdrop-filter: blur(20px) saturate(1.8) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
  }

  #main-nav .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .nav-logo {
    display: flex !important;
    visibility: visible !important;
  }

  .nav-logo-img {
    height: 24px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .nav-mobile-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
  }

  #main-nav > .container > div > .btn-primary:not(.nav-mobile-cta) {
    display: inline-flex !important;
    padding: 6px 10px !important;
    font-size: 0.7rem !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-mobile-cta {
    display: block;
    width: 100%;
    border-bottom: none;
    color: #fff !important;
  }

  .announcement {
    font-size: 0.7rem !important;
    padding: 8px 12px !important;
  }
}

@media (min-width: 768px) {
  .nav-mobile-cta {
    display: none;
  }
}
.nav-mobile-menu a { padding: 12px 0; font-size: 0.938rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-light); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-mobile-toggle { display: none; }
}

/* ═══════════════════════════════════════════════════════
   11. BADGE
   ═══════════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════
   12. BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.938rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  touch-action: manipulation;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-magnetic { will-change: transform; }

.btn-primary {
  background: linear-gradient(135deg, #E8566D 0%, #C93D5E 50%, #E84A9A 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(201, 61, 94, 0.3);
}
.btn-primary:hover { background: linear-gradient(135deg, #C93D5E 0%, #B0334F 50%, #C93D85 100%); box-shadow: 0 4px 16px rgba(201, 61, 94, 0.4); }

.btn-secondary {
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}
.btn-outline:hover { background: var(--orange-dim); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
  padding-left: 20px;
}
.btn-whatsapp::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.btn-whatsapp:hover { background: #20BA5C; box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.813rem; }

/* ═══════════════════════════════════════════════════════
   13. CARDS
   ═══════════════════════════════════════════════════════ */
.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.card:hover { border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card h3 { margin-bottom: 8px; font-family: var(--font-body); }
.card p { font-size: 0.938rem; }

.card-dark {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--text-on-dark);
  transition: all var(--transition);
}
.card-dark:hover { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange-dim); }
.card-dark h3 { color: var(--text-on-dark); font-family: var(--font-body); }
.card-dark p { color: var(--text-on-dark-secondary); }

/* ═══════════════════════════════════════════════════════
   14. HERO
   ═══════════════════════════════════════════════════════ */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hero-left {
  max-width: 600px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 1023px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.hero-title { margin-bottom: 24px; font-family: 'Plus Jakarta Sans', sans-serif; }
.hero-title .text-orange {
  background: linear-gradient(90deg, #E8566D 0%, #D4456B 30%, #E84A9A 60%, #F08C7A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle { font-size: 1.125rem; line-height: 1.7; max-width: 560px; margin-bottom: 12px; }
.hero-qualifier {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.813rem;
  color: var(--text-light);
  margin-bottom: 32px;
}
.hero-stats { margin-top: 48px; }
.hero-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.stat-card { text-align: center; }
.stat-card span:last-child { font-size: 0.813rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════════════
   15. IDENTIFY CARDS
   ═══════════════════════════════════════════════════════ */
.identify-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.identify-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.identify-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.identify-card-icon {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
  background: var(--orange-dim);
  margin-bottom: 16px;
}
.identify-card-featured { border-color: var(--orange); border-width: 2px; }
.identify-card h3 { font-family: var(--font-body); margin-bottom: 8px; }

@media (min-width: 768px) {
  .identify-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   16. PAIN CARDS
   ═══════════════════════════════════════════════════════ */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pain-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 3px solid var(--red);
  transition: all var(--transition);
}
.pain-card:hover { box-shadow: var(--shadow-md); }
.pain-card h4 { font-family: var(--font-body); margin-bottom: 8px; color: var(--text); }

@media (max-width: 640px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   17. CALCULATOR
   ═══════════════════════════════════════════════════════ */
.calc-panel {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.calc-slider-group { margin-bottom: 24px; }
.calc-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}
.calc-slider-value {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--orange);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--border-light);
  border-radius: 3px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 3px solid var(--bg-white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: box-shadow var(--transition-fast);
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 2px 8px var(--orange-glow);
}
input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 3px solid var(--bg-white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.vcg-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.vcg-pill {
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-mono);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.vcg-pill:hover { border-color: var(--orange); color: var(--orange); }
.vcg-pill.active { background: var(--orange); color: #fff; border-color: var(--orange); }

#vcg-clear {
  display: none;
  font-size: 0.75rem;
  color: var(--text-light);
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  margin-top: 8px;
}

.calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }

.calc-result-box {
  border-radius: var(--radius);
  padding: 24px;
}
.calc-result-box.bank {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}
.calc-result-box.fital {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}
.calc-result-box h4 { font-family: var(--font-body); margin-bottom: 16px; }
.calc-result-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.calc-result-row:last-child { border-bottom: none; font-weight: 600; }
.calc-result-row span:last-child { font-family: var(--font-mono); font-weight: 600; }

.calc-saving {
  text-align: center;
  padding: 24px;
  margin-top: 24px;
  border-radius: var(--radius);
  background: var(--orange-dim);
  border: 1px solid rgba(249, 115, 22, 0.12);
}
.calc-saving-value { font-family: var(--font-mono); font-size: 2rem; font-weight: 800; color: var(--orange); }
.calc-saving-pct { font-size: 0.875rem; color: var(--text-secondary); margin-top: 4px; }

.calc-bar-chart { margin-top: 24px; }
.calc-bar { height: 32px; border-radius: var(--radius-sm); margin-bottom: 8px; transition: width 0.6s var(--ease-out); }
.calc-bar.bank-bar { background: var(--red); }
.calc-bar.fital-bar { background: var(--green); min-width: 24px; }
.calc-bar-label { font-size: 0.75rem; color: var(--text-light); margin-bottom: 4px; }

.calc-disclaimer { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 16px; }

@media (max-width: 640px) {
  .calc-panel { padding: 24px; }
  .calc-results { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   18. JOURNEY STEPS
   ═══════════════════════════════════════════════════════ */
.journey-steps { display: flex; flex-direction: column; gap: 0; }
.journey-step {
  display: grid;
  grid-template-columns: 80px 1fr 120px;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}
.journey-step:last-child { border-bottom: none; }
.journey-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  opacity: 0.3;
}
.journey-step-content h3 { font-family: var(--font-body); margin-bottom: 8px; }
.journey-step-time {
  font-family: var(--font-mono);
  font-size: 0.813rem;
  color: var(--orange);
  text-align: right;
  padding-top: 4px;
}

@media (max-width: 640px) {
  .journey-step { grid-template-columns: 40px 1fr !important; }
  .journey-step-num { font-size: 2rem !important; }
  .journey-step-time { grid-column: 2; text-align: left; padding-top: 0; font-size: 0.7rem !important; }
}

/* ═══════════════════════════════════════════════════════
   19. VCG PROJECT CARDS
   ═══════════════════════════════════════════════════════ */
.vcg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.vcg-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  transition: all var(--transition);
}
.vcg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.vcg-card-hero {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--bg-gray);
}
.vcg-card-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vcg-card-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
}
.vcg-apy-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #F08C7A 0%, #F5A062 100%);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.813rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 1;
}
.vcg-live-dot {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 1;
}
.vcg-live-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse-dot 2s ease-in-out infinite;
}
.vcg-live-dot span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
.vcg-card-body { padding: 20px; }
.vcg-card-body h3 { font-family: var(--font-body); font-size: 1.125rem; margin-bottom: 12px; }
.vcg-card-meta { display: flex; gap: 16px; font-size: 0.813rem; color: var(--text-light); }
.vcg-card-meta span { display: flex; align-items: center; gap: 4px; }
.vcg-see {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--orange);
  transition: color var(--transition-fast);
}
.vcg-card:hover .vcg-see { color: var(--orange-dark); }

.vcg-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.vcg-stat { text-align: center; padding: 24px 16px; background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius); }
.vcg-stat-value { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: var(--orange); }
.vcg-stat-label { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }

@media (max-width: 640px) {
  .vcg-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   20. TRUST CARDS
   ═══════════════════════════════════════════════════════ */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.trust-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.trust-card h4 { font-family: var(--font-body); margin-bottom: 8px; }
.trust-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   21. TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card blockquote::before { content: '\201C'; font-size: 2rem; color: var(--orange); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-gray);
}
.testimonial-name { font-weight: 600; font-size: 0.938rem; }
.testimonial-role { font-size: 0.813rem; color: var(--text-light); }

@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   22. FAQ
   ═══════════════════════════════════════════════════════ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
}
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--orange);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.938rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════
   23. LEAD MAGNETS
   ═══════════════════════════════════════════════════════ */
.magnets-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.magnet-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}
.magnet-card h3 { color: var(--text-on-dark); font-family: var(--font-body); margin-bottom: 12px; }
.magnet-card p { color: var(--text-on-dark-secondary); }
.magnet-value { font-family: var(--font-mono); font-size: 0.875rem; color: var(--orange); margin-top: 12px; }
.coming-soon-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  border-radius: var(--radius-lg);
  z-index: 2;
}
.coming-soon-label {
  font-family: var(--font-mono);
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  padding: 8px 20px;
  border: 1px solid var(--orange);
  border-radius: var(--radius-full);
}
.waitlist-form { display: flex; gap: 8px; padding: 0 24px; width: 100%; max-width: 360px; }
.waitlist-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  color: var(--text-on-dark);
  font-size: 0.875rem;
}
.waitlist-form button {
  padding: 10px 18px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.813rem;
  font-weight: 600;
  white-space: nowrap;
}
.waitlist-msg { display: none; font-size: 0.813rem; color: var(--green); margin-top: 8px; text-align: center; }

@media (max-width: 768px) {
  .magnets-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   24. FINAL CTA + FORM
   ═══════════════════════════════════════════════════════ */
.cta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.cta-proof-list { list-style: none; padding: 0; margin-top: 32px; }
.cta-proof-list li {
  padding: 10px 0;
  font-size: 0.938rem;
  color: var(--text-on-dark-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-proof-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lead-form .full-width { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.required-star { color: #EF4444; font-weight: 700; font-size: 0.75rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-on-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  color: var(--text-on-dark);
  font-size: 0.938rem;
  transition: border-color var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-dark); color: var(--text-on-dark); }

.form-msg { margin-top: 8px; font-size: 0.875rem; text-align: center; grid-column: 1 / -1; }
.form-msg-error { color: var(--red); }
.form-msg-success { color: var(--green); }

.form-privacy { font-size: 0.75rem; color: var(--text-on-dark-secondary); text-align: center; margin-top: 8px; grid-column: 1 / -1; }
.form-privacy a { color: var(--orange); text-decoration: underline; }

/* Desktop: show all form steps, hide wizard buttons */
.form-step-next, .form-step-back { display: none !important; }
.form-step { display: contents !important; }

@media (max-width: 768px) {
  .cta-layout { grid-template-columns: 1fr; gap: 48px; }
  .lead-form { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   25. FRICTION TICKER
   ═══════════════════════════════════════════════════════ */
.friction-strip {
  overflow: hidden;
  background: var(--bg-gray);
  padding: 16px 0;
  white-space: nowrap;
}
.friction-track {
  display: inline-flex;
  gap: 48px;
  animation: ticker-scroll 30s linear infinite;
}
.friction-track span {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-light);
  opacity: 0.6;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   26. FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-black);
  color: var(--text-on-dark-secondary);
  padding: 48px 0 32px;
}
.footer a { transition: color var(--transition-fast); }
.footer a:hover { color: var(--orange); }
.section-title { margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════════
   27. ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.stagger > .visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   28. THANKS PAGE
   ═══════════════════════════════════════════════════════ */
.thanks-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.thanks-step {
  text-align: center;
  padding: 32px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg-white);
}
.thanks-step-num {
  font-family: var(--font-mono);
  font-size: 0.813rem;
  color: var(--orange);
  margin-bottom: 12px;
}
.thanks-step h3 { font-family: var(--font-body); margin-bottom: 8px; }
@media (max-width: 640px) { .thanks-steps { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   29. DEMO PAGE
   ═══════════════════════════════════════════════════════ */
.demo-props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.demo-prop {
  text-align: center;
  padding: 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg-white);
}
.demo-prop h4 { font-family: var(--font-body); }
@media (max-width: 640px) { .demo-props { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   30. ACCESSIBILITY
   ═══════════════════════════════════════════════════════ */
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-progress { display: none; }
  .cursor-glow { display: none; }
  .friction-track { animation: none !important; }
  .vcg-live-dot::before { animation: none !important; }
  .animate-in { opacity: 1; transform: none; }
  .stagger > * { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════
   31. RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .pt-8 { padding-top: 96px; }
  .btn { min-height: 48px; }
  h1 { font-size: clamp(2.25rem, 8vw, 3.5rem); }
  /* Prevent iOS Safari zoom on input focus (requires >= 16px) */
  input, select, textarea { font-size: 16px !important; }
}

/* ═══════════════════════════════════════════════════════
   32. BOOK WIZARD
   ═══════════════════════════════════════════════════════ */
.wizard-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Progress bar */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.wizard-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
  flex: 1;
}
.wizard-progress-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.813rem;
  font-weight: 700;
  color: var(--text-on-dark-secondary);
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.wizard-progress-step.active .wizard-progress-dot {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 0 20px rgba(249,115,22,0.4), 0 0 40px rgba(249,115,22,0.15);
}
.wizard-progress-step.completed .wizard-progress-dot {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.wizard-progress-label {
  font-size: 0.688rem;
  color: var(--text-on-dark-secondary);
  margin-top: 8px;
  text-align: center;
  transition: color 0.3s;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 90px;
  line-height: 1.3;
}
.wizard-progress-step.active .wizard-progress-label {
  color: var(--orange);
}
.wizard-progress-step.completed .wizard-progress-label {
  color: var(--green);
}
/* Connector lines */
.wizard-progress-line {
  flex: 1;
  height: 2px;
  background: var(--border-dark);
  position: relative;
  top: -12px;
  z-index: 1;
  margin: 0 -4px;
}
.wizard-progress-line.filled {
  background: linear-gradient(90deg, var(--green), var(--orange));
}

/* Wizard cards */
.wizard-card {
  background: linear-gradient(145deg, rgba(17,17,17,0.95), rgba(26,26,26,0.9));
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: none;
  opacity: 0;
  transform: translateX(40px);
}
.wizard-card.active {
  display: block;
  animation: wizardSlideIn 0.5s var(--ease-out) forwards;
}
.wizard-card.slide-out {
  animation: wizardSlideOut 0.3s var(--ease-out) forwards;
}
@keyframes wizardSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes wizardSlideOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-40px); }
}
/* Glow accent on card */
.wizard-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.7;
}

/* Module header */
.wizard-module-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: var(--orange-glow);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(249,115,22,0.2);
  margin-bottom: 20px;
}
.wizard-module-icon {
  font-size: 1.25rem;
  line-height: 1;
}
.wizard-module-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-on-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.wizard-module-desc {
  font-size: 1rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Chapter list */
.wizard-chapters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.wizard-chapter {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 0.875rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.4;
}
.wizard-chapter-bullet {
  color: var(--orange);
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Quote */
.wizard-quote {
  border-left: 3px solid var(--orange);
  padding: 16px 20px;
  background: var(--orange-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 4px;
}
.wizard-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.938rem;
  color: var(--text-on-dark);
  line-height: 1.6;
  margin: 0;
}

/* Stats row */
.wizard-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}
.wizard-stat {
  text-align: center;
}
.wizard-stat-value {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange);
}
.wizard-stat-label {
  font-size: 0.75rem;
  color: var(--text-on-dark-secondary);
  margin-top: 2px;
}

/* Navigation */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}
.wizard-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.938rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: none;
}
.wizard-nav-prev {
  background: rgba(255,255,255,0.06);
  color: var(--text-on-dark-secondary);
  border: 1px solid var(--border-dark);
}
.wizard-nav-prev:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-on-dark);
}
.wizard-nav-next {
  background: var(--orange);
  color: #fff;
}
.wizard-nav-next:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 16px rgba(249,115,22,0.3);
}
.wizard-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.wizard-nav-counter {
  font-family: var(--font-mono);
  font-size: 0.813rem;
  color: var(--text-on-dark-secondary);
}

/* Final step — form */
.wizard-form-intro {
  text-align: center;
  margin-bottom: 32px;
}
.wizard-form-intro h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text-on-dark);
  margin-bottom: 12px;
}
.wizard-form-intro p {
  color: var(--text-on-dark-secondary);
  font-size: 1rem;
}
.wizard-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
}
.wizard-form-field label {
  display: block;
  font-size: 0.813rem;
  color: var(--text-on-dark-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}
.wizard-form-field input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  background: rgba(255,255,255,0.05);
  color: var(--text-on-dark);
  font-size: 0.938rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.wizard-form-field input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.wizard-form-field input::placeholder {
  color: rgba(255,255,255,0.25);
}
.wizard-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1.063rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  margin-top: 8px;
}
.wizard-form-submit:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
  transform: translateY(-1px);
}
.wizard-form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
#wizard-form-msg {
  display: none;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 12px;
}

/* Book header visual */
.wizard-book-hero {
  text-align: center;
  margin-bottom: 40px;
}
.wizard-book-cover {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 16px;
}
.wizard-book-author {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-on-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.wizard-book-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}
.wizard-book-meta span {
  font-family: var(--font-mono);
  font-size: 0.813rem;
  color: var(--text-on-dark-secondary);
}
.wizard-book-meta strong {
  color: var(--orange);
}

/* Responsive */
@media (max-width: 768px) {
  .wizard-card { padding: 28px 20px; min-height: auto; }
  .wizard-chapters { grid-template-columns: 1fr; }
  .wizard-progress-label { display: none; }
  .wizard-progress-dot { width: 32px; height: 32px; font-size: 0.75rem; }
  .wizard-stats { flex-wrap: wrap; gap: 16px; }
  .wizard-stats .wizard-stat { flex: 1; min-width: 80px; }
  .wizard-book-meta { flex-wrap: wrap; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .wizard-card.active { animation: none; opacity: 1; transform: none; }
  .wizard-card.slide-out { animation: none; }
}

/* ═══════════════════════════════════════════════════════
   33. COMPACT WIZARD — Accordion + Sticky Form (.wz-*)
   Two-column layout: accordion left (60%), form right (40%)
   Dark glassmorphism, orange neon accents
   ═══════════════════════════════════════════════════════ */

/* --- Section container --- */
.wz-section {
  padding: 96px 0;
  position: relative;
  background: var(--bg-black);
  color: var(--text-on-dark);
}
.wz-section h2,
.wz-section h3,
.wz-section h4 {
  color: var(--text-on-dark);
}
.wz-section p {
  color: var(--text-on-dark-secondary);
}

/* --- Grid: 60 / 40 desktop, stacked mobile --- */
.wz-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── ACCORDION ─── */
.wz-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Each accordion item (native <details>) */
.wz-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.wz-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}
.wz-item[open] {
  border-color: var(--orange);
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.12), 0 0 2px rgba(249, 115, 22, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

/* Clickable header (summary) */
.wz-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
  min-height: 44px;
}
.wz-item summary::-webkit-details-marker { display: none; }
.wz-item summary::marker { display: none; content: ''; }

.wz-item summary:hover {
  background: rgba(249, 115, 22, 0.04);
}
.wz-item summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
  border-radius: var(--radius);
}

/* Module number chip */
.wz-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.wz-item[open] .wz-num {
  background: var(--orange);
  color: #fff;
}

/* Thumbnail image in header */
.wz-thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Title + subtitle in header */
.wz-header-text {
  flex: 1;
  min-width: 0;
}
.wz-header-text h4 {
  font-family: var(--font-body);
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--text-on-dark);
  line-height: 1.3;
  margin: 0;
}
.wz-header-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-on-dark-secondary);
  margin-top: 2px;
  line-height: 1.3;
}

/* Chevron */
.wz-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-on-dark-secondary);
  transition: transform 0.3s var(--ease-out), color 0.3s;
}
.wz-item[open] .wz-chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

/* ─── ACCORDION BODY ─── */
.wz-body {
  padding: 0 16px 16px;
}

.wz-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-on-dark-secondary);
  margin-bottom: 16px;
}

/* Chapters grid inside body */
.wz-chapters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.wz-chapter {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.813rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.4;
}
.wz-chapter::before {
  content: '\2713';
  color: var(--orange);
  font-size: 0.688rem;
  margin-top: 2px;
  flex-shrink: 0;
  font-weight: 700;
}

/* Quote block */
.wz-quote {
  border-left: 3px solid var(--orange);
  padding: 12px 16px;
  background: var(--orange-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.wz-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--text-on-dark);
  line-height: 1.6;
  margin: 0;
}

/* ─── FORM CARD — Sticky right column ─── */
.wz-form-card {
  position: sticky;
  top: 100px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 1px rgba(249, 115, 22, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.wz-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--text-on-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.wz-form-card > p {
  font-size: 0.875rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.wz-form-card input:focus {
  border-color: rgba(249, 115, 22, 0.5);
}
.wz-form-card button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.45);
}

/* Book icon above form title */
.wz-book-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.2);
  margin-bottom: 16px;
  color: var(--orange);
}
.wz-book-icon svg {
  width: 24px;
  height: 24px;
}

/* Badges row: pages | modules | FREE */
.wz-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.wz-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.688rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.wz-badge strong {
  color: var(--orange);
  font-weight: 700;
}

/* Form */
.wz-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wz-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-on-dark);
  font-size: 0.938rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.wz-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.wz-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

/* Submit button — gradient orange with glow */
.wz-submit {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  touch-action: manipulation;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
  min-height: 48px;
}
.wz-submit:hover {
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.45), 0 0 40px rgba(249, 115, 22, 0.15);
  transform: translateY(-1px);
}
.wz-submit:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.25);
}
.wz-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.wz-submit:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Form message (success/error) */
.wz-form-msg {
  display: none;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.813rem;
  text-align: center;
  line-height: 1.4;
}
.wz-form-msg.success {
  display: block;
  background: var(--green-glow);
  color: var(--green);
  border: 1px solid rgba(22, 163, 74, 0.2);
}
.wz-form-msg.error {
  display: block;
  background: var(--red-glow);
  color: var(--red);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Privacy text */
.wz-privacy {
  font-size: 0.688rem;
  color: var(--text-on-dark-secondary);
  text-align: center;
  line-height: 1.5;
  margin-top: 4px;
}
.wz-privacy a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: rgba(249, 115, 22, 0.3);
  text-underline-offset: 2px;
}
.wz-privacy a:hover {
  text-decoration-color: var(--orange);
}

/* ─── STATS BAR ─── */
.wz-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.wz-stat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
/* Vertical dividers between stats */
.wz-stat + .wz-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}
.wz-stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.2;
}
.wz-stat-label {
  display: block;
  font-size: 0.688rem;
  color: var(--text-on-dark-secondary);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
}

/* ─── UDEMY TEASER ─── */
.wz-udemy {
  margin-top: 32px;
  padding: 0 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.wz-udemy-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}
.wz-udemy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

.wz-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8566D 0%, #C93D5E 50%, #E84A9A 100%);
  border: none;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 0 20px rgba(201, 61, 94, 0.4), 0 0 40px rgba(201, 61, 94, 0.2);
  transition: box-shadow 0.3s, transform 0.3s;
}
.wz-play-icon:hover {
  box-shadow: 0 0 25px rgba(201, 61, 94, 0.5), 0 0 50px rgba(201, 61, 94, 0.3);
  transform: scale(1.08);
}
.wz-play-icon svg {
  width: 24px;
  height: 24px;
}

.wz-udemy-text {
  flex: 1;
  min-width: 0;
}
.wz-udemy-text h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 4px;
}
.wz-udemy-text p {
  font-size: 0.813rem;
  color: var(--text-on-dark-secondary);
  margin: 0;
}

.wz-udemy-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 4px;
}
.wz-udemy-price .wz-coming {
  font-family: var(--font-mono);
  font-size: 0.688rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  opacity: 0.7;
}
.wz-udemy-price .wz-price-tag {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-on-dark-secondary);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.2);
}

/* Udemy waitlist form */
.wz-udemy-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.wz-udemy-form .wz-input {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.875rem;
}
.wz-udemy-form .wz-submit {
  width: auto;
  padding: 10px 20px;
  font-size: 0.813rem;
  min-height: 40px;
}

/* ─── MOBILE — max-width: 768px ─── */
@media (max-width: 768px) {
  .wz-section {
    padding: 64px 0;
  }

  .wz-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .wz-form-card {
    position: static;
    border-radius: var(--radius);
    padding: 24px 20px;
  }

  .wz-item summary {
    padding: 14px;
    gap: 10px;
    min-height: 56px;
  }

  .wz-thumb {
    width: 40px;
    height: 40px;
  }

  .wz-body {
    padding: 0 14px 14px;
  }

  .wz-chapters {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .wz-stats {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
    margin-top: 32px;
  }
  .wz-stat {
    flex: 1 1 calc(50% - 8px);
    min-width: 100px;
    padding: 8px;
  }
  /* Hide dividers on mobile when wrapping */
  .wz-stat + .wz-stat::before {
    display: none;
  }
  .wz-stat-value {
    font-size: 1.125rem;
  }

  .wz-udemy-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
  .wz-udemy-price {
    align-items: center;
  }
  .wz-udemy-form {
    flex-direction: column;
    width: 100%;
  }
  .wz-udemy-form .wz-submit {
    width: 100%;
  }

  .wz-submit {
    min-height: 52px;
    font-size: 1.063rem;
  }

  .wz-input {
    min-height: 48px;
  }

  .wz-badges {
    justify-content: center;
  }

  .wz-book-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .wz-form-card h3 {
    text-align: center;
  }
  .wz-form-card > p {
    text-align: center;
  }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  .wz-chevron,
  .wz-item,
  .wz-submit,
  .wz-num,
  .wz-input,
  .wz-play-icon {
    transition: none !important;
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════
   34. GLOBAL MOBILE FIX — 2026-03-20
   Comprehensive overrides for inline styles + layout
   that break on screens <= 640px (375px target).
   Uses !important to override inline style attributes.
   ═══════════════════════════════════════════════════════ */

/* ---------- CTA cross-links between sections ---------- */
.wz-cross-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition-fast), gap var(--transition-fast);
  padding: 8px 0;
}
.wz-cross-link:hover {
  color: var(--orange-dark);
  gap: 10px;
}
.wz-cross-link svg {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.wz-cross-link:hover svg {
  transform: translateX(2px);
}

/* ---------- 640px and below ---------- */
@media (max-width: 640px) {

  /* --- Global section padding --- */
  .section {
    padding: 48px 0 !important;
  }
  .section.pt-8,
  .pt-8 {
    padding-top: 72px !important;
  }

  /* --- Container tighter padding on small screens --- */
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .container-narrow {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* --- Force all inline max-widths to fit screen --- */
  [style*="max-width:720px"],
  [style*="max-width: 720px"],
  [style*="max-width:900px"],
  [style*="max-width: 900px"],
  [style*="max-width:1100px"],
  [style*="max-width: 1100px"],
  [style*="max-width:800px"],
  [style*="max-width: 800px"] {
    max-width: 100% !important;
  }

  /* --- Section headers: less margin on mobile --- */
  .section-header {
    margin-bottom: 32px !important;
  }

  /* --- Typography: tighter for small screens --- */
  h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
    letter-spacing: -0.03em !important;
  }
  h2 {
    font-size: clamp(1.5rem, 5.5vw, 2rem) !important;
  }
  h3 {
    font-size: clamp(1.1rem, 3vw, 1.35rem) !important;
  }

  /* --- Hero section --- */
  .hero-subtitle {
    font-size: 1rem !important;
  }
  .hero-stats {
    margin-top: 32px !important;
  }
  .hero-stat-value {
    font-size: 1.25rem !important;
  }

  /* --- Buttons: full-width on mobile --- */
  .flex.flex-wrap.gap-1 {
    flex-direction: column !important;
    width: 100% !important;
  }
  .flex.flex-wrap.gap-1 .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* --- Cards: tighter padding --- */
  .card,
  .card-dark {
    padding: 20px !important;
  }
  .identify-card {
    padding: 20px !important;
  }
  .pain-card {
    padding: 20px 16px !important;
  }

  /* --- Calculator --- */
  .calc-panel {
    border-radius: var(--radius) !important;
    /* padding: 16px set in MOBILE CALCULATOR TOUCH FIXES section */
  }
  /* .calc-saving-value: font-size set to 1.625rem in MOBILE CALCULATOR TOUCH FIXES */

  /* --- VCG grid: ensure cards don't overflow --- */
  .vcg-grid {
    grid-template-columns: 1fr !important;
  }
  .vcg-card-hero {
    height: 160px !important;
  }
  .vcg-stats {
    gap: 10px !important;
  }
  .vcg-stat {
    padding: 16px 8px !important;
  }
  .vcg-stat-value {
    font-size: 1.25rem !important;
  }

  /* --- Trust grid: 1 column --- */
  .trust-grid {
    grid-template-columns: 1fr !important;
  }
  .trust-card {
    padding: 20px !important;
  }

  /* --- Testimonials: already 1-col at 768px but ensure padding --- */
  .testimonial-card {
    padding: 24px !important;
  }

  /* --- FAQ: tighter --- */
  .faq-question {
    padding: 16px 0 !important;
    font-size: 0.938rem !important;
  }

  /* --- Wizard Layout: force single column (override inline grid) --- */
  .wz-layout {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 !important;
  }

  /* --- Wizard form card: NOT sticky on mobile --- */
  .wz-form-card {
    position: static !important;
    order: -1 !important;
    border-radius: 12px !important;
    /* padding overridden by section 36 (.wz-form-card 16px 12px) */
    margin-bottom: 8px !important;
  }

  /* --- Wizard accordion items: compact padding --- */
  .wz-accordion {
    gap: 6px !important;
  }
  .wz-item {
    border-radius: 10px !important;
  }
  .wz-summary {
    padding: 12px !important;
    gap: 10px !important;
  }
  /* .wz-item summary, .wz-thumb, .wz-body — values set in section 36 (more compact) */

  /* --- Wizard form internal elements --- */
  .wz-form-card h3 {
    font-size: 1.1rem !important;
    text-align: center !important;
  }

  /* --- Wizard stats bar (inline styles) --- */
  .wz-stats {
    gap: 12px !important;
    padding: 14px 8px !important;
    margin-top: 24px !important;
    flex-wrap: wrap !important;
    border-radius: 10px !important;
  }

  /* --- Udemy section: force everything to fit --- */
  .wz-udemy {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    border-radius: 12px !important;
  }
  .wz-udemy-bottom {
    grid-template-columns: 1fr !important;
  }
  .wz-udemy-price-col {
    border-right: none !important;
    border-bottom: 1px solid rgba(249, 115, 22, 0.08) !important;
    padding: 14px 12px !important;
  }
  .wz-udemy-form-col {
    padding: 14px 12px !important;
    text-align: center !important;
  }
  .wz-udemy-top {
    padding: 18px 12px 16px !important;
  }
  .wz-udemy-title {
    font-size: 1rem !important;
  }
  .wz-udemy-desc {
    font-size: 0.75rem !important;
  }

  /* --- Benefits list: reduce gap --- */
  .wz-benefits-list {
    gap: 4px !important;
  }

  /* --- CTA section: force single column --- */
  .cta-layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* --- Lead form: single column on mobile --- */
  .lead-form {
    grid-template-columns: 1fr !important;
  }

  /* --- Footer --- */
  .footer {
    padding: 32px 0 24px !important;
  }

  /* --- Announcement bar: text wrapping --- */
  .announcement .container {
    flex-wrap: wrap !important;
    text-align: center !important;
    gap: 4px !important;
  }
  .announcement {
    font-size: 0.75rem !important;
    padding: 8px 0 !important;
  }

  /* --- Navigation mobile menu --- */
  .nav-mobile-menu {
    padding: 12px 16px !important;
  }
  .nav-mobile-menu a {
    padding: 14px 0 !important;
    font-size: 1rem !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
  }

  /* --- Journey steps: avoid overflow in 3-col grid --- */
  .journey-step {
    grid-template-columns: 40px 1fr !important;
    gap: 12px !important;
    padding: 20px 0 !important;
  }
  .journey-step-num {
    font-size: 1.75rem !important;
  }
  .journey-step-time {
    grid-column: 2 !important;
    text-align: left !important;
    padding-top: 0 !important;
    font-size: 0.75rem !important;
  }

  /* --- Friction ticker: smaller text --- */
  .friction-track span {
    font-size: 0.938rem !important;
  }

  /* --- Magnets grid: already handled at 768px --- */
  .magnet-card {
    padding: 24px !important;
  }

  /* --- CTA section bottom padding --- */
  #cta-section {
    padding-bottom: 64px !important;
  }

  /* --- General spacing helpers --- */
  .mb-3 { margin-bottom: 32px !important; }
  .mt-3 { margin-top: 32px !important; }

  /* --- Inline meta badges in form card: wrap properly --- */
  .wz-form-card [style*="display:flex"][style*="justify-content:center"][style*="gap:8px"] {
    gap: 6px !important;
  }

  /* --- Ensure images never overflow --- */
  img, svg {
    max-width: 100% !important;
    height: auto !important;
  }
  /* Exempt inline SVG icons from height auto (they need fixed sizes) */
  svg[width="10"],
  svg[width="14"],
  svg[width="18"],
  svg[width="20"],
  svg[width="24"],
  svg[width="28"],
  svg[width="48"] {
    height: auto;
    max-width: none !important;
  }

  /* --- Inline stats containers: wrap gracefully --- */
  [style*="display:flex"][style*="justify-content:center"][style*="gap:24px"] {
    gap: 12px !important;
  }

  /* --- Prevent horizontal overflow anywhere --- */
  main {
    overflow-x: hidden !important;
  }

  /* --- Wizard inline stat items --- */
  .wz-stats > div {
    min-width: 60px !important;
  }
  .wz-stats > div > div:first-child {
    font-size: 1.15rem !important;
  }

  /* --- btn-lg: slightly smaller on mobile --- */
  .btn-lg {
    padding: 14px 24px !important;
    font-size: 0.938rem !important;
  }

  /* --- Hero CTA container: fix stacking --- */
  #hero .flex.flex-wrap {
    gap: 10px !important;
  }
}

/* ---------- Extra small (320px - 375px) ---------- */
@media (max-width: 374px) {
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  h1 {
    font-size: 1.625rem !important;
  }
  h2 {
    font-size: 1.375rem !important;
  }
  .wz-form-card {
    padding: 16px 12px !important;
  }
  .calc-panel {
    padding: 12px !important;
  }
  .btn {
    font-size: 0.875rem !important;
    padding: 12px 16px !important;
  }
  .wz-udemy-top {
    padding: 14px 8px 12px !important;
  }
}

/* ═══════════════════════════════════════════════════════
   35. CRITICAL MOBILE OVERFLOW FIX — No horizontal scroll
   The inline grid "1fr 380px" causes 380px column that
   overflows on 375px phones. This MUST be 1fr on mobile.
   Also: html/body overflow-x hidden as nuclear fallback.
   ═══════════════════════════════════════════════════════ */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

@media (max-width: 800px) {
  /* THE FIX: wizard grid 1fr 380px → 1fr */
  .wz-layout {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 !important;
    max-width: 100% !important;
  }
  .wz-form-card {
    position: static !important;
    order: -1 !important;
  }
  /* All inline max-widths */
  [style*="max-width:1100px"],
  [style*="max-width:900px"],
  [style*="max-width:800px"],
  [style*="max-width:720px"] {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  /* All inline grids that have fixed px columns */
  [style*="grid-template-columns:1fr 380px"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 380px"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Prevent ANY child from overflowing */
  section, .section, main, nav {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  /* All direct section children with inline padding */
  section > div, .section > div {
    box-sizing: border-box !important;
    max-width: 100% !important;
  }
}

/* ═══════════════════════════════════════════════════════
   MOBILE CALCULATOR TOUCH FIXES (WCAG 44px min target)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* 1. Calculator panel: tighter padding on mobile */
  .calc-panel {
    padding: 16px !important;
  }

  /* 2. Slider track: taller for visibility + prevent scroll while dragging */
  input[type="range"] {
    height: 8px !important;
    border-radius: 4px !important;
    touch-action: none !important;
  }

  /* 3. Slider thumb: 44px WCAG minimum touch target */
  input[type="range"]::-webkit-slider-thumb {
    width: 44px !important;
    height: 44px !important;
    border-width: 3px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
  }
  input[type="range"]::-moz-range-thumb {
    width: 44px !important;
    height: 44px !important;
    border-width: 3px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
  }

  /* 4. Active thumb: orange glow feedback while dragging */
  input[type="range"]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.25), 0 0 16px rgba(249, 115, 22, 0.35) !important;
    transform: scale(1.08) !important;
  }
  input[type="range"]:active::-moz-range-thumb {
    box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.25), 0 0 16px rgba(249, 115, 22, 0.35) !important;
    transform: scale(1.08) !important;
  }
  /* Focus-visible for keyboard users */
  input[type="range"]:focus-visible::-webkit-slider-thumb {
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.3), 0 0 12px rgba(249, 115, 22, 0.25) !important;
  }
  input[type="range"]:focus-visible::-moz-range-thumb {
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.3), 0 0 12px rgba(249, 115, 22, 0.25) !important;
  }

  /* 5. Slider value display: larger on mobile for readability */
  .calc-slider-value {
    font-size: 1rem !important;
    min-width: 4em !important;
    text-align: right !important;
  }
  .calc-slider-label {
    font-size: 0.9375rem !important;
  }
  .calc-slider-group {
    margin-bottom: 28px !important;
  }

  /* 6. Comparison bars: stack vertically on mobile */
  .calc-bar-chart {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }
  .calc-bar {
    height: 28px !important;
    border-radius: 6px !important;
    min-width: 100% !important;
    width: 100% !important;
  }
  .calc-bar.bank-bar,
  .calc-bar.fital-bar {
    width: 100% !important;
  }
  .calc-bar-label {
    font-size: 0.8125rem !important;
    margin-bottom: 2px !important;
    margin-top: 8px !important;
  }
  .calc-bar-label:first-child {
    margin-top: 0 !important;
  }

  /* 7. VCG pills: horizontal scroll on mobile */
  .vcg-pills {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding-bottom: 4px !important;
    gap: 6px !important;
  }
  .vcg-pills::-webkit-scrollbar {
    display: none !important;
  }
  .vcg-pill {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    padding: 8px 14px !important;
    font-size: 0.8125rem !important;
  }

  /* 8. Saving value: readable on small screens */
  .calc-saving {
    padding: 16px !important;
    margin-top: 16px !important;
  }
  .calc-saving-value {
    font-size: 1.625rem !important;
  }

  /* 9. Results grid: already 1-col from line 649, reinforce */
  .calc-results {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .calc-result-box {
    padding: 16px !important;
  }
  .calc-result-row {
    font-size: 0.8125rem !important;
  }

  /* 10. Numeric input alternative to sliders on mobile */
  .calc-num-input {
    display: inline-block !important;
    width: 60px;
    padding: 6px 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 6px;
    color: #F97316;
    font-family: var(--font-mono, 'IBM Plex Mono', monospace);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    outline: none;
    margin-left: 8px;
    -moz-appearance: textfield; /* hide spin buttons Firefox */
  }
  .calc-num-input::-webkit-inner-spin-button,
  .calc-num-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .calc-num-input:focus {
    border-color: #F97316;
    box-shadow: 0 0 8px rgba(249,115,22,0.3);
  }
}

/* ═══════════════════════════════════════════════════════
   36. MOBILE COMPRESSION — Wizard, Udemy, CTA Form
   Book wizard accordion and Udemy sections are too tall
   on mobile. CTA form needs iOS-zoom-safe inputs.
   ═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* --- Wizard: compact accordion headers --- */
  .wz-item summary {
    padding: 10px 12px !important;
    gap: 8px !important;
  }
  .wz-item .wz-thumb, .wz-item svg.wz-thumb {
    width: 32px !important;
    height: 32px !important;
    padding: 5px !important;
  }

  /* --- Wizard: compact body --- */
  .wz-item .wz-body {
    padding: 8px 12px 12px !important;
  }
  /* Hide quotes on mobile — saves ~60px per expanded module */
  .wz-item .wz-body .wz-quote {
    display: none !important;
  }

  /* --- Wizard: chapters 1-col, smaller text --- */
  .wz-chapters {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
  }
  .wz-chapters > div {
    font-size: 0.7rem !important;
  }

  /* --- Wizard: form card compact --- */
  .wz-form-card {
    padding: 16px 12px !important;
  }
  .wz-form-card h3 {
    font-size: 1rem !important;
  }

  /* --- Wizard: stats bar compact --- */
  .wz-stats {
    padding: 12px !important;
    gap: 12px !important;
  }
  .wz-stats > div > div:first-child {
    font-size: 1rem !important;
  }

  /* --- Udemy: hide description on mobile (title is enough) --- */
  .wz-udemy-desc {
    display: none !important;
  }

  /* --- CTA form: full-width fields, iOS-zoom-safe --- */
  .lead-form .form-group {
    width: 100% !important;
  }
  .lead-form {
    gap: 8px !important;
  }
  .form-group input,
  .form-group select {
    min-height: 48px !important;
    font-size: 16px !important;  /* 16px prevents iOS auto-zoom on focus */
  }

  /* --- CTA form: 2-step wizard on mobile --- */
  .form-step {
    display: block !important;
  }
  .form-step-2 {
    display: none !important;
  }
  .form-step-2.form-step-active {
    display: block !important;
  }
  .form-step-1.form-step-hidden {
    display: none !important;
  }
  .form-step-next {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 12px 20px;
    background: rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 10px;
    color: #F97316;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    margin-top: 8px;
    min-height: 48px;
    grid-column: 1 / -1;
  }
  .form-step-next.form-step-hidden {
    display: none !important;
  }
  .form-step-back {
    display: none !important;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    margin-bottom: 8px;
    min-height: 44px;
  }
  .form-step-back.form-step-active {
    display: inline-flex !important;
  }
  /* Step indicator labels */
  .form-step-1::before {
    content: 'Paso 1 de 2 \2014  Tus datos';
    display: block;
    font-size: 0.7rem;
    color: rgba(249,115,22,0.6);
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }
  .form-step-2::before {
    content: 'Paso 2 de 2 \2014  Tu activo';
    display: block;
    font-size: 0.7rem;
    color: rgba(249,115,22,0.6);
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }
}

/* ═══════════════════════════════════════════════════════
   37. MOBILE HERO PADDING + MAGNETIC BUTTON FIX
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  #hero {
    padding-top: 80px !important;
  }
  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
  }
  .btn-magnetic {
    transform: none !important;
  }
}
