/**
 * FitalPay Funnel — Design System v3.0
 * pagos.fitalmx.com
 * Theme: "FITAL Premium Light" — 2026 Edition
 *
 * Light premium theme: cream/white backgrounds,
 * dark teal text, magenta FITAL accent, turquoise trust
 *
 * Performance: GPU-only animations (transform, opacity)
 * Accessibility: respects prefers-reduced-motion
 * No external dependencies — pure CSS
 */

/* ═══════════════════════════════════════════════════════
   1. CUSTOM PROPERTIES — Design Tokens
   ═══════════════════════════════════════════════════════ */
:root {
  /* ── FITAL Premium Light palette ── */
  --mag: #FF00FF;
  --mag-dark: #CC00CC;
  --mag-glow: rgba(255, 0, 255, 0.15);
  --mag-dim: rgba(255, 0, 255, 0.06);

  --verde: #00C9A7;
  --verde-dark: #00A88A;
  --verde-glow: rgba(0, 201, 167, 0.15);
  --verde-dim: rgba(0, 201, 167, 0.06);

  --amar: #FFB800;
  --amar-dark: #CC9400;
  --amar-light: #FFC107;
  --amar-glow: rgba(255, 184, 0, 0.15);
  --amar-dim: rgba(255, 184, 0, 0.06);

  --rosa: #FF2D6B;
  --rosa-dark: #CC1A52;
  --rosa-glow: rgba(255, 45, 107, 0.15);

  --azul: #00B4E8;
  --azul-dark: #0090BE;
  --azul-glow: rgba(0, 180, 232, 0.15);

  --nar: #FF7043;
  --nar-light: #FF8A65;

  /* Legacy aliases — map old names to new palette */
  --coral: var(--mag);
  --coral-dark: var(--mag-dark);
  --coral-glow: var(--mag-glow);
  --coral-dim: var(--mag-dim);
  --turq: var(--verde);
  --turq-dark: var(--verde-dark);
  --turq-glow: var(--verde-glow);
  --turq-dim: var(--verde-dim);
  --gold: var(--amar);
  --gold-dark: var(--amar-dark);
  --gold-glow: var(--amar-glow);
  --gold-dim: var(--amar-dim);
  --pink: var(--rosa);
  --pink-dark: var(--rosa-dark);
  --pink-glow: var(--rosa-glow);
  --sky: var(--azul);
  --sky-dark: var(--azul-dark);
  --sky-glow: var(--azul-glow);

  /* Surfaces */
  --bg: #FEFCF8;
  --bg-alt: #F5F0E8;
  --bg-dark: #1C2B2A;
  --bg-dark-alt: #243534;
  --bg-dark-card: #FFFFFF;
  --bg-card: #FFFFFF;

  /* Text hierarchy */
  --text: #1C2B2A;
  --text-secondary: #5A6B6A;
  --text-light: #8A9B9A;
  --text-on-dark: #FEFCF8;
  --text-on-dark-secondary: rgba(254, 252, 248, 0.7);

  /* Glass tokens */
  --glass: rgba(255, 255, 255, 0.80);
  --glass-hover: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(0, 0, 0, 0.06);
  --glass-border-hover: rgba(0, 0, 0, 0.12);
  --glass-blur: 12px;
  --glass-saturate: 1.2;

  /* Border radius scale */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows — layered depth system */
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px var(--mag-glow);
  --shadow-glow-lg: 0 0 80px var(--mag-glow);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.05);
  --shadow-card-hover:
    0 0 0 1px var(--mag-dim),
    0 12px 40px rgba(0, 0, 0, 0.10);
  --shadow-glass:
    0 0 0 1px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  --shadow-glass-hover:
    0 0 0 1px var(--mag-dim),
    0 8px 24px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

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

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-fast: 150ms var(--ease-out);
  --transition: 300ms var(--ease-out);
  --transition-slow: 500ms var(--ease-out);
  --transition-spring: 400ms var(--ease-spring);

  /* Z-index scale */
  --z-behind: -1;
  --z-base: 0;
  --z-announcement: 90;
  --z-nav: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-toast: 400;
  --z-cursor: 500;
  --z-progress: 9998;
  --z-noise: 9999;

  /* Spacing scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;
}


/* ═══════════════════════════════════════════════════════
   2. RESET / NORMALIZE
   ═══════════════════════════════════════════════════════ */
*,
*::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;
  hanging-punctuation: first last;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  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;
}

/* Screen-reader only (accessible labels) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ═══════════════════════════════════════════════════════
   3. NOISE TEXTURE OVERLAY — Adds depth + grain
   ═══════════════════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-noise);
  opacity: 0.015;
  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: soft-light;
}


/* ═══════════════════════════════════════════════════════
   4. SCROLL PROGRESS BAR — Rainbow gradient
   ═══════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--pink), var(--gold), var(--turq), var(--sky));
  z-index: var(--z-progress);
  transform-origin: left;
  transform: scaleX(0);
  transition: none;
  will-change: transform;
}


/* ═══════════════════════════════════════════════════════
   5. CURSOR GLOW EFFECT — Desktop only
   ═══════════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 0, 255, 0.04) 0%,
    rgba(255, 0, 255, 0.015) 30%,
    transparent 70%
  );
  pointer-events: none;
  z-index: var(--z-behind);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s var(--ease-out);
  will-change: left, top;
  opacity: 0;
}

@media (hover: hover) and (min-width: 1024px) {
  .cursor-glow {
    opacity: 1;
  }
}


/* ═══════════════════════════════════════════════════════
   6. TYPOGRAPHY — Refined scale
   ═══════════════════════════════════════════════════════ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.25rem);
  letter-spacing: -0.035em;
}

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

h3 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--mag), var(--rosa), var(--nar));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animated gradient text — shimmer on hover */
.text-gradient-animated {
  background: linear-gradient(
    135deg,
    var(--coral),
    var(--pink),
    var(--nar),
    var(--gold),
    var(--turq),
    var(--sky),
    var(--coral)
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}


/* ═══════════════════════════════════════════════════════
   7. LAYOUT — Container + Section System
   ═══════════════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Section dark — dark teal for footer and final CTA */
.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255, 0, 255, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(0, 180, 232, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(0, 201, 167, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.section-dark > * {
  position: relative;
  z-index: 1;
}

/* Floating particle dots — subtle on dark sections */
.section-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,0,255,0.12) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(0,201,167,0.10) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 10%, rgba(0,201,167,0.10) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(255,184,0,0.08) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 40%, rgba(0,180,232,0.10) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 15% 70%, rgba(255,0,255,0.08) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 35%, rgba(0,180,232,0.08) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 55%, rgba(0,201,167,0.08) 0%, transparent 100%);
  animation: driftParticles 30s linear infinite;
}

@keyframes driftParticles {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-on-dark);
}

.section-dark p {
  color: var(--text-on-dark-secondary);
}

.section-alt {
  background-color: var(--bg-alt);
  position: relative;
}

/* Subtle gradient mesh on alt sections */
.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 10% 50%, rgba(255, 0, 255, 0.02) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 30%, rgba(0, 180, 232, 0.015) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section-alt > * {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-header p {
  margin-top: 16px;
}

/* Section divider — gradient line */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.15), rgba(0, 180, 232, 0.08), transparent);
  margin: 0;
  border: none;
  position: relative;
  z-index: 1;
}

.section-divider-light {
  background: linear-gradient(90deg, transparent, rgba(28, 43, 42, 0.06), transparent);
}


/* ═══════════════════════════════════════════════════════
   8. GRID SYSTEM
   ═══════════════════════════════════════════════════════ */
.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: 1fr;
  gap: 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.text-center {
  text-align: center;
}

/* BENTO GRID — 2026 stat blocks */
.bento-grid {
  display: grid;
  gap: 16px;
}

.bento-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.bento-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.bento-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

.bento-item {
  background: rgba(28, 43, 42, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(28, 43, 42, 0.04);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.bento-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 0, 255, 0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}

.bento-item:hover {
  background: rgba(28, 43, 42, 0.04);
  border-color: rgba(255, 0, 255, 0.12);
  transform: translateY(-2px);
}

.bento-item:hover::before {
  opacity: 1;
}


/* ═══════════════════════════════════════════════════════
   9. BADGE — Section labels
   ═══════════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mag);
  background: rgba(255, 0, 255, 0.06);
  border: 1px solid rgba(255, 0, 255, 0.15);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  transition: all 0.3s var(--ease-out);
}

.badge:hover {
  background: rgba(255, 0, 255, 0.1);
  border-color: rgba(255, 0, 255, 0.25);
}

.section-dark .badge {
  background: rgba(255, 0, 255, 0.12);
  border-color: rgba(255, 0, 255, 0.25);
  color: #FF66FF;
}


/* ═══════════════════════════════════════════════════════
   10. BUTTONS — Enhanced with glow + inner shine
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius);
  transition:
    transform 0.2s var(--ease-spring),
    box-shadow 0.3s var(--ease-out),
    background 0.3s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  isolation: isolate;
  touch-action: manipulation;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 80ms;
}

/* Magnetic button (activated by JS) */
.btn-magnetic {
  transition: transform 0.2s var(--ease-spring);
  will-change: transform;
}

/* Primary — magenta FITAL with glow */
.btn-primary {
  background: var(--mag);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 16px var(--mag-glow),
    0 1px 0 rgba(255,255,255,0.2) inset;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.btn-primary:hover {
  background: var(--mag-dark);
  box-shadow:
    0 8px 32px rgba(255, 0, 255, 0.25),
    0 2px 0 rgba(255, 255, 255, 0.15) inset;
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active::after {
  opacity: 1;
}

/* Secondary — outlined magenta */
.btn-secondary {
  background: transparent;
  border: 2px solid var(--mag);
  color: var(--mag);
  transition:
    transform 0.2s var(--ease-spring),
    box-shadow 0.3s var(--ease-out),
    background 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}

.btn-secondary:hover {
  background: rgba(255, 0, 255, 0.06);
  border-color: var(--mag-dark);
  box-shadow: 0 4px 16px var(--mag-glow);
}

/* Outline */
.btn-outline {
  background: transparent;
  border: 2px solid var(--mag);
  color: var(--mag);
  transition:
    transform 0.2s var(--ease-spring),
    background 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.btn-outline:hover {
  background: rgba(255, 0, 255, 0.06);
  box-shadow: 0 0 24px var(--mag-glow);
}

/* WhatsApp — verde accent with pulse */
.btn-whatsapp {
  background: var(--verde);
  color: #fff;
  box-shadow: 0 4px 16px var(--verde-glow);
  padding-left: 20px;
  position: relative;
  overflow: hidden;
}

.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::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-whatsapp:hover {
  background: #20BA5C;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn-whatsapp:hover::after {
  opacity: 1;
}

/* Button sizes */
.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* ═══════════════════════════════════════════════════════
   11. CARDS — Glassmorphism 2.0
   ═══════════════════════════════════════════════════════ */

/* Light card */
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(28, 43, 42, 0.04);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 0, 255, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 0, 255, 0.06);
}

.card:hover::after {
  opacity: 1;
}

/* Dark card — now white on light theme */
.card-dark {
  background: #FFFFFF;
  border: 1px solid rgba(28, 43, 42, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  transition:
    border-color 0.4s var(--ease-out),
    background 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    transform 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.card-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 0, 255, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}

.card-dark:hover {
  background: #FFFFFF;
  border-color: rgba(255, 0, 255, 0.15);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.card-dark:hover::after {
  opacity: 1;
}

/* Glass card — white with subtle shadow */
.card-glass {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card-glass:hover {
  border-color: rgba(255, 0, 255, 0.15);
  background: var(--bg-card);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

/* 3D tilt card (JS-activated) */
.card-tilt {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.1s ease;
  will-change: transform;
}

.card-tilt-inner {
  transform: translateZ(20px);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.08), rgba(255, 0, 255, 0.04));
  border: 1px solid rgba(255, 0, 255, 0.08);
  transition: all 0.3s var(--ease-out);
}

.card:hover .card-icon,
.card-dark:hover .card-icon {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.12), rgba(255, 0, 255, 0.08));
  border-color: rgba(255, 0, 255, 0.15);
  transform: scale(1.05);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  font-size: 0.938rem;
}


/* ═══════════════════════════════════════════════════════
   12. STAT CARD
   ═══════════════════════════════════════════════════════ */
.stat-card {
  text-align: center;
  padding: 24px 16px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--mag);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 4px;
}


/* ═══════════════════════════════════════════════════════
   13. COMPARISON TABLE
   ═══════════════════════════════════════════════════════ */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.938rem;
}

.compare-table th {
  background: var(--bg-alt);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  border-bottom: 2px solid rgba(28, 43, 42, 0.06);
}

.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(28, 43, 42, 0.04);
  transition: background 0.2s;
}

.compare-table tbody tr:nth-child(even) {
  background: rgba(28, 43, 42, 0.015);
}

.compare-table tbody tr:hover td {
  background: rgba(255, 0, 255, 0.02);
}

.compare-table tbody tr:last-child {
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.06), rgba(0, 201, 167, 0.02));
}

.compare-table tbody tr:last-child td {
  font-weight: 600;
  color: var(--turq-dark);
  border-bottom: none;
}

.section-dark .compare-table {
  border: 1px solid var(--glass-border);
}

.section-dark .compare-table th {
  background: rgba(28, 43, 42, 0.03);
  color: var(--text-secondary);
  border-bottom-color: var(--glass-border);
}

.section-dark .compare-table td {
  color: var(--text);
  border-bottom-color: var(--glass-border);
}

.section-dark .compare-table tbody tr:nth-child(even) {
  background: rgba(28, 43, 42, 0.02);
}

.section-dark .compare-table tbody tr:hover td {
  background: rgba(255, 0, 255, 0.03);
}

.section-dark .compare-table tbody tr:last-child {
  background: rgba(0, 201, 167, 0.08);
}

.section-dark .compare-table tbody tr:last-child td {
  color: var(--turq-dark);
}


/* ═══════════════════════════════════════════════════════
   14. STEPS — How it works
   ═══════════════════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  counter-reset: step;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  counter-increment: step;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mag-glow);
  color: var(--mag);
  border: 2px solid var(--mag);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px var(--mag-glow);
  transition: all 0.3s var(--ease-out);
}

.step:hover .step-number {
  box-shadow: 0 6px 24px rgba(255, 0, 255, 0.25);
  transform: scale(1.08);
}

.step-content h3 {
  margin-bottom: 4px;
}

.step-content p {
  font-size: 0.938rem;
}

.step-line {
  position: relative;
}

.step-line::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 56px;
  width: 2px;
  height: calc(100% - 8px);
  background: linear-gradient(to bottom, var(--coral), transparent);
  opacity: 0.3;
}

.step-line:last-child::after {
  display: none;
}

/* Step numbers — with enhanced gradients */
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 1rem;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.step-num::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.step-num-1,
.step-num-2,
.step-num-3,
.step-num-4 {
  background: var(--mag);
  box-shadow: 0 4px 16px var(--mag-glow);
}
.step-num-1::after,
.step-num-2::after,
.step-num-3::after,
.step-num-4::after {
  background: var(--mag);
}


/* ═══════════════════════════════════════════════════════
   15. FAQ ACCORDION
   ═══════════════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid rgba(28, 43, 42, 0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    background 0.3s var(--ease-out);
}

.faq-item[open] {
  border-color: rgba(255, 0, 255, 0.15);
  box-shadow: 0 4px 16px rgba(255, 0, 255, 0.05);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  transition: background var(--transition-fast), color var(--transition-fast);
  min-height: 56px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: '';
}

.faq-item summary:hover {
  background: rgba(255, 0, 255, 0.02);
}

.faq-item summary::after {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%237A9690' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.4s var(--ease-out);
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.938rem;
  line-height: 1.7;
}

.section-dark .faq-item {
  border-color: rgba(28, 43, 42, 0.06);
  background: rgba(28, 43, 42, 0.02);
}

.section-dark .faq-item[open] {
  border-color: rgba(255, 0, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.section-dark .faq-item summary {
  color: var(--text);
}

.section-dark .faq-item summary:hover {
  background: rgba(28, 43, 42, 0.03);
}

.section-dark .faq-item summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%237A9690' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
}

.section-dark .faq-item .faq-answer {
  color: var(--text-secondary);
}

/* Div-based FAQ accordion */
.faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s;
  user-select: none;
}
.faq-item .faq-question:hover {
  color: var(--mag);
}
.faq-item .faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  content: '\2212';
  color: var(--mag);
}
.faq-item .faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-item {
  background: var(--bg-card);
  border-radius: 12px;
  margin-bottom: 8px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
}


/* ═══════════════════════════════════════════════════════
   16. PRICING CARD — Spotlight rotation + premium feel
   ═══════════════════════════════════════════════════════ */
.pricing-card {
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255, 0, 255, 0.10);
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

/* Top rainbow bar */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--pink), var(--gold), var(--turq), var(--sky));
  z-index: 2;
}

/* Rotating spotlight */
.pricing-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 0, 255, 0.02),
    transparent 30%
  );
  animation: spotlight-rotate 8s linear infinite;
  z-index: 0;
}

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

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card:hover {
  border-color: rgba(255, 0, 255, 0.20);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.10),
    0 0 40px var(--mag-glow);
  transform: translateY(-4px);
}

.pricing-rate {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--mag);
  margin: 16px 0 4px;
}

.pricing-rate-label {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.pricing-includes {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-includes li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.938rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(28, 43, 42, 0.04);
  transition: color 0.2s;
}

.pricing-includes li:last-child {
  border-bottom: none;
}

.pricing-includes li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%2300C9A7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10l4 4 8-8'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.pricing-includes li:hover {
  color: var(--text);
}

.pricing-note {
  font-size: 0.813rem;
  color: var(--text-light);
  margin-top: 16px;
}

/* Dark variant pricing */
.section-dark .pricing-card {
  background: #FFFFFF;
  border-color: rgba(255, 0, 255, 0.20);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.20),
    0 0 40px rgba(255, 0, 255, 0.08);
}

.section-dark .pricing-card:hover {
  border-color: rgba(255, 0, 255, 0.35);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.25),
    0 0 80px rgba(255, 0, 255, 0.12);
}


/* ═══════════════════════════════════════════════════════
   17. TOAST NOTIFICATIONS
   ═══════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  z-index: var(--z-toast);
  animation: slideInRight 0.4s var(--ease-spring);
  max-width: 360px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.toast-error {
  background: rgba(197, 17, 98, 0.95);
}

.toast-success {
  background: rgba(0, 137, 123, 0.95);
}

.toast-info {
  background: rgba(0, 145, 234, 0.95);
}


/* ═══════════════════════════════════════════════════════
   18. CALCULATOR — Glowing active states
   ═══════════════════════════════════════════════════════ */
.calc-container {
  max-width: 700px;
  margin: 0 auto;
}

.calc-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(28, 43, 42, 0.04);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease-out);
}

.calc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 0, 255, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 201, 167, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.section-dark .calc-card {
  background: #FFFFFF;
  border: 1px solid rgba(28, 43, 42, 0.06);
  box-shadow:
    0 8px 48px rgba(28, 43, 42, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.calc-group {
  margin-bottom: 28px;
  position: relative;
}

.calc-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: var(--text);
}

.section-dark .calc-label {
  color: var(--text);
}

.calc-volume-display {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  color: var(--mag);
  transition: transform 0.2s var(--ease-spring);
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, var(--mag), var(--rosa), var(--nar));
  cursor: pointer;
  touch-action: pan-x;
  transition: box-shadow 0.3s var(--ease-out);
}

.calc-slider:focus {
  box-shadow: 0 0 0 4px var(--mag-glow);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--mag);
  box-shadow: 0 2px 8px var(--mag-glow);
  cursor: pointer;
  transition:
    box-shadow 0.2s var(--ease-out),
    transform 0.2s var(--ease-spring);
}

.calc-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 2px 20px rgba(255, 0, 255, 0.35);
  transform: scale(1.1);
}

.calc-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--mag);
  box-shadow: 0 2px 8px var(--mag-glow);
  cursor: pointer;
}

.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
}

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

.calc-result-item {
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius-sm);
  background: rgba(28, 43, 42, 0.02);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}

.section-dark .calc-result-item {
  background: rgba(28, 43, 42, 0.02);
  border: 1px solid rgba(28, 43, 42, 0.04);
}

/* Savings variant — green glow */
.calc-result-savings {
  border: 1px solid rgba(0, 201, 167, 0.15);
  background: rgba(0, 201, 167, 0.03);
}

.calc-result-savings::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 201, 167, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-dark .calc-result-savings {
  border-color: rgba(0, 201, 167, 0.2);
  background: rgba(0, 201, 167, 0.04);
}

/* Current cost — red tint */
.calc-result-current {
  border: 1px solid rgba(255, 45, 107, 0.1);
  background: rgba(255, 45, 107, 0.02);
}

.calc-result-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.section-dark .calc-result-label {
  color: var(--text-secondary);
}

.calc-result-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  transition: transform 0.2s var(--ease-spring);
}

.calc-result-savings .calc-result-value {
  color: var(--turq-dark);
}

.calc-result-current .calc-result-value {
  color: var(--pink);
}

.section-dark .calc-result-value {
  color: var(--text);
}

.section-dark .calc-result-savings .calc-result-value {
  color: var(--turq-dark);
}

.calc-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(28, 43, 42, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.938rem;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 0.2s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.calc-select:focus {
  outline: none;
  border-color: var(--mag);
  box-shadow: 0 0 0 3px var(--mag-glow);
}

.section-dark .calc-select {
  background: #FFFFFF;
  border-color: var(--glass-border);
  color: var(--text);
}

.counter-animate {
  font-variant-numeric: tabular-nums;
}


/* ═══════════════════════════════════════════════════════
   19. FORMS
   ═══════════════════════════════════════════════════════ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0D8CC;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-card);
  transition:
    border-color 0.2s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--mag);
  box-shadow: 0 0 0 3px var(--mag-glow);
}

.form-input::placeholder {
  color: var(--text-light);
}

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

/* Form inputs on dark sections — now light bg */
.section-dark .form-input,
.section-dark .form-select,
.section-dark .form-textarea,
.card-glass .form-input,
.card-glass .form-select,
.card-glass .form-textarea {
  background: #FFFFFF;
  border: 1.5px solid rgba(28, 43, 42, 0.10);
  color: var(--text);
}
.section-dark .form-input:focus,
.section-dark .form-select:focus,
.card-glass .form-input:focus,
.card-glass .form-select:focus {
  border-color: var(--mag);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px var(--mag-glow);
}
.section-dark .form-input::placeholder,
.card-glass .form-input::placeholder {
  color: var(--text-light);
}
.section-dark .form-select option,
.card-glass .form-select option {
  background: #FFFFFF;
  color: var(--text);
}
.section-dark .form-label,
.card-glass .form-label {
  color: var(--text);
}
.section-dark .form-group.has-error .form-input,
.section-dark .form-group.has-error .form-select {
  border-color: var(--pink);
}

.form-error {
  font-size: 0.813rem;
  color: var(--pink);
  margin-top: 4px;
  display: none;
}

.form-group.has-error .form-input,
.form-group.has-error .form-select {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 107, 0.08);
}

.form-group.has-error .form-error {
  display: block;
}


/* ═══════════════════════════════════════════════════════
   20. ANIMATIONS / KEYFRAMES
   ═══════════════════════════════════════════════════════ */

/* Core animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes rotator {
  0%, 30% {
    opacity: 1;
    transform: translateY(0);
  }
  33% {
    opacity: 0;
    transform: translateY(-10px);
  }
  36%, 63% {
    opacity: 1;
    transform: translateY(0);
  }
  66% {
    opacity: 0;
    transform: translateY(-10px);
  }
  69%, 97% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

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

/* New 2026 animations */
@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px var(--mag-glow);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.20);
  }
}

@keyframes border-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

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

@keyframes slide-up-fade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradient-x {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Scroll-triggered entry — mobile only; desktop always visible */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop: content always visible, no hide-then-reveal */
@media (min-width: 769px) {
  .animate-in {
    opacity: 1;
    transform: none;
  }
}

.animate-in-delay-1 { transition-delay: 100ms; }
.animate-in-delay-2 { transition-delay: 200ms; }
.animate-in-delay-3 { transition-delay: 300ms; }
.animate-in-delay-4 { transition-delay: 400ms; }

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Text reveal animation */
.reveal-text {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s var(--ease-out);
}

.reveal-text.visible {
  clip-path: inset(0 0% 0 0);
}

.reveal-line {
  overflow: hidden;
}

.reveal-line > * {
  transform: translateY(110%);
  transition: transform 0.7s var(--ease-out);
}

.reveal-line.visible > * {
  transform: translateY(0);
}

/* Staggered children animation */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger.visible > *:nth-child(1)  { transition-delay:   0ms; }
.stagger.visible > *:nth-child(2)  { transition-delay:  80ms; }
.stagger.visible > *:nth-child(3)  { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4)  { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5)  { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6)  { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7)  { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8)  { transition-delay: 560ms; }
.stagger.visible > *:nth-child(9)  { transition-delay: 640ms; }
.stagger.visible > *:nth-child(10) { transition-delay: 720ms; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Scale-in for cards */
.animate-scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.animate-scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Desktop: disable ALL hide-then-reveal animations ──
   On screens >= 769px, content is always visible.
   Animations only run on mobile where scroll triggers work reliably. */
@media (min-width: 769px) {
  .reveal-text {
    clip-path: none;
  }
  .reveal-line > * {
    transform: none;
  }
  .stagger > * {
    opacity: 1;
    transform: none;
  }
  .animate-scale-in {
    opacity: 1;
    transform: none;
  }
}


/* ═══════════════════════════════════════════════════════
   21. NAVIGATION — Blur glass with transitions
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 16px 0;
  transition:
    background 0.4s var(--ease-out),
    padding 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
}

.nav-scrolled {
  background: rgba(254, 252, 248, 0.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(28, 43, 42, 0.08);
  border-bottom: 1px solid rgba(28, 43, 42, 0.08);
}

.section-dark .nav-scrolled,
.nav.nav-dark.nav-scrolled {
  background: rgba(254, 252, 248, 0.97);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(28, 43, 42, 0.08);
  box-shadow: 0 2px 20px rgba(28, 43, 42, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  transition: color 0.3s;
}

.nav-scrolled .nav-logo,
.section-dark .nav-logo {
  color: var(--text);
}

.nav-dark .nav-logo {
  color: var(--text);
}

.nav-links {
  display: none;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease-out);
  position: relative;
}

/* Underline effect on nav links */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--pink));
  border-radius: 1px;
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--coral);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1.5rem;
  transition: background 0.2s;
}

.nav-mobile-toggle:hover {
  background: rgba(28, 43, 42, 0.04);
}

.section-dark .nav-mobile-toggle {
  color: var(--text);
}

.section-dark .nav-mobile-toggle:hover {
  background: rgba(28, 43, 42, 0.04);
}

/* Mobile menu — light glass slide-down */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 8px 24px 20px;
  background: rgba(254, 252, 248, 0.97);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(28, 43, 42, 0.06);
}

.nav-mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(28, 43, 42, 0.06);
  transition: color 0.2s, padding-left 0.2s;
}

.nav-mobile-menu a:hover {
  color: var(--coral);
  padding-left: 8px;
}

.nav-mobile-menu a:last-child {
  border-bottom: none;
}

.nav-mobile-menu.nav-menu-open {
  display: flex;
  animation: slideInDown 0.3s var(--ease-out);
}

/* Nav responsive — mobile */
@media (max-width: 1023px) {
  .nav {
    padding: 8px 0;
  }

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

  .nav > .container > div > .btn-whatsapp:not(.nav-mobile-wa) {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-logo-img {
    height: 28px;
  }

  .nav-mobile-menu.nav-menu-open {
    border-top: 1px solid rgba(28, 43, 42, 0.06);
  }

  .nav-mobile-wa {
    display: flex;
    justify-content: center;
    width: 100%;
    border-bottom: none;
  }
}

@media (min-width: 1024px) {
  .nav-mobile-wa {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════════
   22. LANGUAGE TOGGLE
   ═══════════════════════════════════════════════════════ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  border: 1px solid rgba(28, 43, 42, 0.1);
  border-radius: var(--radius-full);
  transition:
    color 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out),
    background 0.2s var(--ease-out);
  cursor: pointer;
}

.lang-toggle:hover {
  color: var(--coral);
  border-color: var(--coral);
  background: rgba(255, 0, 255, 0.03);
}

.section-dark .lang-toggle,
.nav-dark .lang-toggle {
  color: var(--text-secondary);
  border-color: var(--glass-border);
}

.section-dark .lang-toggle:hover,
.nav-dark .lang-toggle:hover {
  color: var(--coral);
  border-color: var(--coral);
  background: rgba(255, 0, 255, 0.05);
}


/* ═══════════════════════════════════════════════════════
   23. ANNOUNCEMENT BAR — Gradient with shimmer
   ═══════════════════════════════════════════════════════ */
.announcement {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: calc(var(--z-nav) + 1);
  background: var(--mag);
  color: #fff;
  padding: 10px 24px;
  text-align: center;
  font-size: 0.813rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.announcement a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: text-underline-offset 0.2s;
}

.announcement a:hover {
  text-underline-offset: 4px;
}

.announcement-dismiss {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s, transform 0.2s;
}

.announcement-dismiss:hover {
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}


/* ═══════════════════════════════════════════════════════
   24. HERO SECTION — Immersive entry
   ═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
}

/* Hero background mesh is provided by .section-dark::before */

.hero-content {
  max-width: 560px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 1.5rem 0;
  letter-spacing: -0.035em;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.85;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats {
  margin-top: 3rem;
  gap: 1.5rem;
}

.hero-stat-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
}

.hero-rotator {
  display: inline-block;
  color: var(--coral);
  transition: opacity 0.3s ease, transform 0.3s ease;
  min-width: 200px;
}

.section-dark .hero-rotator {
  background: linear-gradient(135deg, var(--coral), var(--nar));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section titles — shared between sections */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 1rem 0;
  letter-spacing: -0.025em;
}


/* ═══════════════════════════════════════════════════════
   25. TESTIMONIALS — Enhanced with quote animation
   ═══════════════════════════════════════════════════════ */
.testimonial-card {
  background: #FFFFFF;
  border: 1px solid rgba(28, 43, 42, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    all 0.4s var(--ease-out);
  box-shadow: var(--shadow-card);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--coral);
  opacity: 0.08;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  pointer-events: none;
}

.testimonial-card:hover::before {
  opacity: 0.12;
  transform: scale(1.05);
}

.testimonial-card:hover {
  border-color: rgba(255, 0, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  position: relative;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}


/* ═══════════════════════════════════════════════════════
   26. NOT CRYPTO SECTION
   ═══════════════════════════════════════════════════════ */
.notcrypto-card {
  background: rgba(255, 45, 107, 0.03);
  border: 1px solid rgba(255, 45, 107, 0.12);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.notcrypto-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 45, 107, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.notcrypto-card:hover {
  border-color: rgba(255, 45, 107, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 45, 107, 0.06);
}

.notcrypto-card:hover::before {
  opacity: 1;
}

.notcrypto-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}


/* ═══════════════════════════════════════════════════════
   27. URGENCY BAR
   ═══════════════════════════════════════════════════════ */
.urgency-bar {
  background: linear-gradient(90deg, var(--nar), var(--gold));
  color: #1C2B2A;
  padding: 12px 24px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.urgency-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shimmer 3s ease infinite;
  background-size: 200% 100%;
}

.urgency-bar .btn {
  margin-left: 16px;
  position: relative;
}


/* ═══════════════════════════════════════════════════════
   28. FOOTER — Dark conventional
   ═══════════════════════════════════════════════════════ */
.footer {
  background: #1C2B2A;
  color: rgba(240, 240, 240, 0.7);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}

/* Footer gradient mesh (subtle) */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 10% 90%, rgba(255, 0, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(0, 180, 232, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #F0F0F0;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(240, 240, 240, 0.7);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #F0F0F0;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(240, 240, 240, 0.7);
  padding: 4px 0;
  transition: color 0.2s, transform 0.2s;
}

.footer-col a:hover {
  color: var(--coral);
  transform: translateX(2px);
}

.footer-bottom {
  border-top: 1px solid rgba(240, 240, 240, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.75rem;
}

.footer-bottom a {
  color: rgba(240, 240, 240, 0.7);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--coral);
}

.footer p,
.footer a {
  color: rgba(240, 240, 240, 0.7);
}


/* ═══════════════════════════════════════════════════════
   29. SVG / MAP / HERO VISUALS
   ═══════════════════════════════════════════════════════ */
.svg-hero {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(255, 0, 255, 0.06));
}

.svg-map {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════
   30. HONEYPOT (anti-spam)
   ═══════════════════════════════════════════════════════ */
.hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}


/* ═══════════════════════════════════════════════════════
   31. WHATSAPP FLOATING BUTTON — Pulse glow
   ═══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom));
  right: 24px;
  z-index: var(--z-overlay);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 16px rgba(37, 211, 102, 0.4),
    0 0 0 0 rgba(37, 211, 102, 0.3);
  transition:
    transform 0.2s var(--ease-spring),
    box-shadow 0.3s var(--ease-out);
  cursor: pointer;
  animation: wa-ring 3s ease infinite;
  touch-action: manipulation;
}

@keyframes wa-ring {
  0% {
    box-shadow:
      0 4px 16px rgba(37, 211, 102, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow:
      0 4px 16px rgba(37, 211, 102, 0.4),
      0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 4px 16px rgba(37, 211, 102, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  animation: none;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}


/* ═══════════════════════════════════════════════════════
   32. SKIP NAV (Accessibility)
   ═══════════════════════════════════════════════════════ */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--coral);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top 0.2s;
}

.skip-nav:focus {
  top: 16px;
}


/* ═══════════════════════════════════════════════════════
   33. RESPONSIVE: Mobile (< 640px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 639px) {
  /* Larger touch targets */
  .faq-item summary {
    min-height: 56px;
    padding: 18px 20px;
  }

  .calc-slider::-webkit-slider-thumb {
    width: 36px;
    height: 36px;
  }

  .calc-slider::-moz-range-thumb {
    width: 36px;
    height: 36px;
  }

  /* WhatsApp hero button full-width */
  .btn-whatsapp-hero {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 16px 24px;
  }

  /* WhatsApp floating button mobile */
  .wa-float {
    bottom: calc(16px + env(safe-area-inset-bottom));
    right: 16px;
    width: 60px;
    height: 60px;
  }

  .wa-float svg {
    width: 30px;
    height: 30px;
  }

  /* Bento grid stacks on mobile */
  .bento-grid-3,
  .bento-grid-4 {
    grid-template-columns: 1fr;
  }

  /* Cards get less padding on mobile */
  .card,
  .card-dark,
  .card-glass {
    padding: 24px;
  }

  /* Pricing card compact mobile */
  .pricing-card {
    padding: 36px 24px;
  }

  /* Calculator results 2x2 on small mobile */
  .calc-results {
    grid-template-columns: 1fr 1fr;
  }

  /* Hero title — compact mobile */
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    margin-top: 2rem;
    gap: 1rem;
  }

  /* Section spacing mobile */
  .section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Stat card compact */
  .stat-card {
    padding: 16px 12px;
  }

  /* Steps vertical on mobile */
  .steps {
    gap: 24px;
  }

  /* Table horizontal scroll */
  .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Footer compact */
  .footer {
    padding: 48px 0 24px;
  }

  /* Testimonials compact */
  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card::before {
    font-size: 5rem;
  }
}


/* ═══════════════════════════════════════════════════════
   34. RESPONSIVE: >= 640px (Tablet)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .section {
    padding: 96px 0;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .calc-results {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ═══════════════════════════════════════════════════════
   35. RESPONSIVE: >= 1024px (Desktop)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .section {
    padding: 120px 0;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .bento-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .nav-links {
    display: flex;
  }

  .nav-mobile-toggle {
    display: none;
  }

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

  .hero {
    padding-top: 100px;
  }

  /* Hero content must always be visible on desktop — never hidden by animations */
  .section-hero .reveal-text,
  .section-hero .animate-in {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .section-hero .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Desktop hover effects activated */
  .card-dark:hover,
  .card-glass:hover,
  .testimonial-card:hover {
    transform: translateY(-6px);
  }
}


/* ═══════════════════════════════════════════════════════
   36. RESPONSIVE: >= 1280px (Wide)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .container {
    max-width: 1400px;
    padding: 0 32px;
  }

  /* More generous spacing on wide screens */
  .section {
    padding: 140px 0;
  }

  .section-header {
    margin-bottom: 64px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    gap: 32px;
  }
}


/* ═══════════════════════════════════════════════════════
   37. UTILITY CLASSES
   ═══════════════════════════════════════════════════════ */

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-05 { gap: 0.5rem; }
.gap-1 { gap: 1rem; }
.gap-15 { gap: 1.5rem; }
.gap-2 { gap: 2rem; }
.gap-4 { gap: 4rem; }

/* Spacing */
.mt-1 { margin-top: 1rem; }
.mt-15 { margin-top: 1.5rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-05 { margin-bottom: 0.5rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-15 { margin-bottom: 1.5rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-25 { margin-bottom: 2.5rem; }
.mb-3 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.pt-8 { padding-top: 8rem; }

/* Text */
.text-left { text-align: left; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.text-mono { font-family: var(--font-mono); }
.text-display { font-family: var(--font-display); }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.opacity-85 { opacity: 0.85; }
.opacity-75 { opacity: 0.75; }
.opacity-50 { opacity: 0.5; }
.opacity-35 { opacity: 0.35; }
.max-w-sm { max-width: 480px; }
.max-w-md { max-width: 640px; }
.max-w-lg { max-width: 720px; }
.w-full { width: 100%; }

/* Colors */
.text-mag { color: var(--coral); }
.text-verde { color: var(--turq); }
.text-azul { color: var(--sky); }
.text-rosa { color: var(--pink); }
.text-nar { color: var(--nar); }
.text-amar { color: var(--gold); }
.text-error { color: #E53935; }
.text-success { color: var(--turq); }
.text-info { color: var(--sky); }

/* Table scroll wrapper */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}


/* ═══════════════════════════════════════════════════════
   38. FOCUS STYLES — Accessibility-first
   ═══════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--mag);
  outline-offset: 3px;
  border-radius: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--mag);
  outline-offset: 3px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}


/* ═══════════════════════════════════════════════════════
   39. SELECTION STYLE — Brand-colored highlight
   ═══════════════════════════════════════════════════════ */
::selection {
  background: rgba(255, 0, 255, 0.12);
  color: var(--text);
}

.section-dark ::selection {
  background: rgba(255, 0, 255, 0.25);
  color: var(--text-on-dark);
}


/* ═══════════════════════════════════════════════════════
   40. SCROLL SNAP HINTS — Smooth section snapping
   ═══════════════════════════════════════════════════════ */
/* scroll-snap disabled — caused content visibility issues on desktop */


/* ═══════════════════════════════════════════════════════
   41. LOADING / SKELETON STATES
   ═══════════════════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 0, 255, 0.03) 25%,
    rgba(255, 0, 255, 0.06) 50%,
    rgba(255, 0, 255, 0.03) 75%
  );
  background-size: 400% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: var(--radius-sm);
}

.skeleton-text {
  height: 1em;
  width: 80%;
  margin-bottom: 8px;
}

.skeleton-heading {
  height: 2em;
  width: 60%;
  margin-bottom: 16px;
}


/* ═══════════════════════════════════════════════════════
   42. TRUST BADGES — Regulation logos area
   ═══════════════════════════════════════════════════════ */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 0;
  opacity: 0.5;
  transition: opacity 0.4s;
}

.trust-row:hover {
  opacity: 0.8;
}

.trust-row img,
.trust-row svg {
  height: 32px;
  width: auto;
  filter: grayscale(1);
  transition: filter 0.3s;
}

.trust-row img:hover,
.trust-row svg:hover {
  filter: grayscale(0);
}


/* ═══════════════════════════════════════════════════════
   43. NUMBER COUNTER — Tabular figure animation
   ═══════════════════════════════════════════════════════ */
.counter-up {
  font-variant-numeric: tabular-nums;
  display: inline-block;
  transition: transform 0.2s var(--ease-spring);
}

.counter-up.counting {
  transform: scale(1.02);
}


/* ═══════════════════════════════════════════════════════
   44. PRINT STYLES — Clean output
   ═══════════════════════════════════════════════════════ */
@media print {
  .nav,
  .announcement,
  .wa-float,
  .scroll-progress,
  .cursor-glow,
  .btn-whatsapp {
    display: none !important;
  }

  .section-dark {
    background: #fff !important;
    color: #000 !important;
  }

  .section-dark h1,
  .section-dark h2,
  .section-dark h3,
  .section-dark p {
    color: #000 !important;
  }

  body::after {
    display: none !important;
  }

  .card,
  .card-dark,
  .testimonial-card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    break-inside: avoid;
  }
}


/* ═══════════════════════════════════════════════════════
   45. NEON GLOW + 3D DEPTH SYSTEM
   ═══════════════════════════════════════════════════════ */

/* --- 1. NEON TEXT GLOW CLASSES --- */
/* Subtle single-layer glow on light theme */

/* Neon text — magenta FITAL */
.neon-mag {
  color: var(--mag);
  text-shadow: 0 0 20px var(--mag-glow);
}

/* Neon text — verde (green) */
.neon-green {
  color: var(--verde);
  text-shadow: 0 0 20px var(--verde-glow);
}

/* Neon text — azul (cyan) */
.neon-cyan {
  color: var(--azul);
  text-shadow: 0 0 20px var(--azul-glow);
}

/* Neon text — rosa */
.neon-rosa {
  color: var(--rosa);
  text-shadow: 0 0 20px var(--rosa-glow);
}

/* Neon text — naranja */
.neon-nar {
  color: var(--nar);
  text-shadow: 0 0 20px rgba(255,112,67,0.15);
}

/* Neon text — amarillo/gold */
.neon-amar {
  color: var(--amar);
  text-shadow: 0 0 20px var(--amar-glow);
}

/* Animated neon flicker */
.neon-flicker {
  animation: neonFlicker 3s ease-in-out infinite;
}
@keyframes neonFlicker {
  0%, 100% { opacity: 1; text-shadow: 0 0 20px var(--mag-glow); }
  8% { opacity: 0.85; }
  12% { opacity: 1; }
  50% { text-shadow: 0 0 30px rgba(255,0,255,0.2), 0 0 60px rgba(255,0,255,0.1); }
}

/* Neon text pulse — intensifies and dims */
.neon-pulse {
  animation: neonPulse 2s ease-in-out infinite;
}
@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 7px currentColor, 0 0 20px currentColor; filter: brightness(1); }
  50% { text-shadow: 0 0 14px currentColor, 0 0 40px currentColor, 0 0 80px currentColor; filter: brightness(1.1); }
}

/* --- 2. NEON BORDER GLOW --- */

/* Neon border — magenta */
.neon-border-mag {
  border: 2px solid var(--mag);
  box-shadow: 0 0 16px var(--mag-glow);
}
.neon-border-mag:hover {
  box-shadow: 0 0 24px rgba(255,0,255,0.20);
}

/* Neon border — verde */
.neon-border-green {
  border: 2px solid var(--verde);
  box-shadow: 0 0 16px var(--verde-glow);
}

/* Neon border — azul */
.neon-border-cyan {
  border: 2px solid var(--azul);
  box-shadow: 0 0 16px var(--azul-glow);
}

/* Neon border animated pulse */
.neon-border-pulse {
  animation: neonBorderPulse 3s ease-in-out infinite;
}
@keyframes neonBorderPulse {
  0%, 100% { box-shadow: 0 0 16px var(--mag-glow); }
  50% { box-shadow: 0 0 32px rgba(255,0,255,0.20); }
}

/* --- 3. 3D CARD DEPTH SYSTEM --- */

/* 3D elevated card — subtle floating above the page */
.card-3d {
  transform: perspective(1000px) rotateX(2deg) translateZ(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-3d:hover {
  transform: perspective(1000px) rotateX(0deg) translateZ(20px) translateY(-8px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.10),
    0 0 40px var(--mag-glow);
}

/* 3D pop — element pops toward viewer on scroll reveal */
.card-3d-pop {
  transform: perspective(800px) translateZ(-40px) scale(0.95);
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-3d-pop.visible {
  transform: perspective(800px) translateZ(0) scale(1);
  opacity: 1;
}

/* 3D float — continuous subtle floating animation */
.float-3d {
  animation: float3d 6s ease-in-out infinite;
}
@keyframes float3d {
  0%, 100% { transform: perspective(1000px) rotateX(2deg) rotateY(-1deg) translateY(0); }
  25% { transform: perspective(1000px) rotateX(-1deg) rotateY(2deg) translateY(-5px); }
  50% { transform: perspective(1000px) rotateX(1deg) rotateY(-2deg) translateY(-8px); }
  75% { transform: perspective(1000px) rotateX(-2deg) rotateY(1deg) translateY(-3px); }
}

/* --- 4. NEON SECTION ACCENTS --- */

/* Neon line at top of section — subtle magenta gradient */
.section-neon-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mag), transparent);
  box-shadow: 0 0 10px var(--mag-glow);
  z-index: 2;
}

/* Neon accent glow behind section headers */
.neon-heading {
  position: relative;
}
.neon-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--mag), transparent);
  box-shadow: 0 0 10px var(--mag-glow);
  border-radius: 2px;
}
.text-center .neon-heading::after,
.neon-heading.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* --- 5. NEON HERO ROTATOR --- */

.hero-rotator {
  text-shadow: none;
}

/* --- 6. NEON STAT VALUES --- */

.hero-stat-value {
  text-shadow: none;
}

/* --- 7. NEON CALCULATOR RESULTS --- */

.calc-result-value {
  text-shadow: none;
}
.calc-result-savings .calc-result-value {
  text-shadow: none;
}

/* --- 8. NEON PRICING --- */

.pricing-rate {
  text-shadow: 0 0 20px var(--mag-glow) !important;
  filter: none;
  animation: neonPricePulse 3s ease-in-out infinite;
}
@keyframes neonPricePulse {
  0%, 100% { filter: none; }
  50% { text-shadow: 0 0 30px rgba(255,0,255,0.2) !important; }
}

/* --- 9. NEON FAQ OPEN STATE --- */

.faq-item[open] {
  border-color: rgba(255,0,255,0.15);
  box-shadow: 0 0 15px rgba(255,0,255,0.04);
}
.faq-item[open] summary {
  color: var(--mag);
  text-shadow: none;
}

/* --- 10. NEON BUTTONS --- */

.btn-primary {
  box-shadow:
    0 4px 16px var(--mag-glow) !important;
}
.btn-primary:hover {
  box-shadow:
    0 8px 32px rgba(255,0,255,0.25) !important;
}
.btn-whatsapp {
  box-shadow:
    0 4px 16px var(--verde-glow) !important;
}
.btn-whatsapp:hover {
  box-shadow:
    0 8px 32px rgba(0,201,167,0.25) !important;
}

/* --- 11. NEON STEP NUMBERS --- */

.step-num {
  box-shadow: 0 4px 16px var(--mag-glow);
}
.step-num-1 { box-shadow: 0 4px 16px var(--mag-glow); }
.step-num-2 { box-shadow: 0 4px 16px var(--azul-glow); }
.step-num-3 { box-shadow: 0 4px 16px var(--verde-glow); }
.step-num-4 { box-shadow: 0 4px 16px var(--amar-glow); }

/* --- 12. NEON URGENCY BAR --- */

.urgency-bar {
  box-shadow: 0 0 20px rgba(255,112,67,0.15), 0 4px 30px rgba(255,184,0,0.1);
  text-shadow: none;
}

/* --- 13. NEON FLOATING WHATSAPP --- */

.wa-float {
  box-shadow:
    0 4px 16px rgba(0,201,167,0.4) !important;
}

/* --- 14. NEON BADGE --- */

.badge {
  text-shadow: none;
  box-shadow: none;
}


/* ═══════════════════════════════════════
   Pain Cards — Emotional impact design
   ═══════════════════════════════════════ */
.pain-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-card-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pain-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}
.pain-period {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  opacity: 0.6;
}
.pain-visual {
  margin: 8px 0;
}
.pain-illustration {
  max-width: 100%;
  height: auto;
}

/* Falling shred animation for pain card 1 */
@keyframes painFall {
  0% { transform: translateY(0); opacity: 0.3; }
  100% { transform: translateY(8px); opacity: 0.05; }
}
.fp-fall-1 { animation: painFall 2s ease-in-out 0s infinite alternate; }
.fp-fall-2 { animation: painFall 2s ease-in-out 0.3s infinite alternate; }
.fp-fall-3 { animation: painFall 2s ease-in-out 0.6s infinite alternate; }
.fp-fall-4 { animation: painFall 2s ease-in-out 0.2s infinite alternate; }
.fp-fall-5 { animation: painFall 2s ease-in-out 0.5s infinite alternate; }
.fp-fall-6 { animation: painFall 2s ease-in-out 0.8s infinite alternate; }

/* Neon border gold */
.neon-border-amar {
  border: 2px solid var(--amar);
  box-shadow: 0 0 16px var(--amar-glow);
}
.neon-border-amar:hover {
  box-shadow: 0 0 24px rgba(255,184,0,0.20);
}

/* FitalPay row glow in comparison table */
.compare-fital-row {
  background: linear-gradient(90deg, rgba(0,201,167,0.06), rgba(0,201,167,0.04)) !important;
  box-shadow: inset 3px 0 0 var(--turq);
}

/* ═══════════════════════════════════════
   How It Works — Timeline design
   ═══════════════════════════════════════ */
.how-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.how-step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(28,43,42,0.02);
  border: 1px solid rgba(28,43,42,0.04);
  transition: all 0.4s var(--ease-out);
}
.how-step:hover {
  background: rgba(255,0,255,0.02);
  border-color: rgba(255,0,255,0.1);
  box-shadow: 0 8px 32px rgba(28,43,42,0.06);
}
.how-step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.how-step-icon {
  max-width: 100px;
  height: auto;
}
.how-step-content h3 {
  margin-bottom: 6px;
  text-align: center;
}
.how-step-content p {
  text-align: center;
  font-size: 0.9rem;
}
.how-connector {
  display: flex;
  align-items: center;
  padding: 0 4px;
  align-self: center;
  margin-top: 60px;
}

/* Mobile: stack vertically, rotate connectors */
@media (max-width: 768px) {
  .how-timeline {
    flex-direction: column;
    align-items: center;
  }
  .how-step {
    max-width: 100%;
    width: 100%;
  }
  .how-connector {
    transform: rotate(90deg);
    margin: -8px 0;
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fp-fall-1, .fp-fall-2, .fp-fall-3, .fp-fall-4, .fp-fall-5, .fp-fall-6 {
    animation: none !important;
  }
}


/* ═══════════════════════════════════════════════════════
   46. REDUCED MOTION — Accessibility
   ═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }

  .animate-in {
    opacity: 1;
    transform: none;
  }

  .animate-scale-in {
    opacity: 1;
    transform: none;
  }

  .reveal-text {
    clip-path: none;
  }

  .reveal-line > * {
    transform: none;
  }

  .stagger > * {
    opacity: 1;
    transform: none;
  }

  .hero-rotator {
    transition: none;
  }

  .card:hover,
  .card-dark:hover,
  .card-glass:hover,
  .testimonial-card:hover,
  .pricing-card:hover,
  .btn:hover {
    transform: none;
  }

  .animate-float {
    animation: none;
  }

  .wa-float {
    animation: none;
  }

  .cursor-glow {
    display: none;
  }

  .scroll-progress {
    display: none;
  }

  .pricing-card::after {
    animation: none;
  }

  .announcement {
    animation: none;
  }

  .urgency-bar::before {
    animation: none;
  }

  /* Neon glow + 3D system — disable for reduced motion */
  .neon-flicker,
  .neon-pulse,
  .neon-border-pulse,
  .float-3d {
    animation: none !important;
  }

  .neon-mag,
  .neon-green,
  .neon-cyan,
  .neon-rosa,
  .neon-nar,
  .neon-amar,
  .hero-rotator,
  .hero-stat-value,
  .calc-result-value,
  .pricing-rate,
  .neon-heading::after {
    text-shadow: none !important;
  }

  .card-3d-pop {
    transform: none;
    opacity: 1;
  }
}


/* ═══════════════════════════════════════════════════════
   47. HIGH CONTRAST MODE
   ═══════════════════════════════════════════════════════ */
@media (prefers-contrast: high) {
  :root {
    --glass-border: rgba(28, 43, 42, 0.3);
    --glass-border-hover: rgba(28, 43, 42, 0.5);
  }

  .card {
    border-color: rgba(28, 43, 42, 0.2);
  }

  .card-dark,
  .card-glass,
  .testimonial-card {
    border-color: rgba(28, 43, 42, 0.2);
  }

  .badge {
    border-color: var(--coral);
  }

  body::after {
    opacity: 0;
  }
}


/* ═══════════════════════════════════════════════════════
   48. DARK MODE PREFERENCE (future-ready)
   ═══════════════════════════════════════════════════════ */
@media (prefers-color-scheme: dark) {
  /* Light sections adapt for users with dark OS preference */
  .section:not(.section-dark):not(.section-alt) {
    background-color: var(--bg);
  }
}


/* ═══════════════════════════════════════════════════════
   49. TESTIMONIAL ENHANCED COMPONENTS
   ═══════════════════════════════════════════════════════ */
.testimonial-corridor {
  margin-bottom: 12px;
}
.testimonial-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.testimonial-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.testimonial-stat-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.6;
}
.testimonial-stars {
  color: #FFB800;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(255,184,0,0.3);
}
.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.5;
}
.testimonial-avatar svg {
  width: 48px;
  height: 48px;
}

/* ══ LAYER ADDITIONS: Identifiers, Empathizers, Use Cases ════════════ */

/* ══ Identifiers ══════════════════════════════════════════════════════ */

.hero-qualifier {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--turq-dark);
  background: rgba(0, 201, 167, 0.08);
  border: 1px solid rgba(0, 201, 167, 0.25);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.identify-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .identify-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .identify-grid {
    grid-template-columns: 1fr;
  }
}

.identify-card {
  background: #FFFFFF;
  border: 1px solid rgba(28,43,42,0.08);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.identify-card:hover {
  border-color: var(--mag);
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--mag-glow), 0 4px 12px rgba(0,0,0,0.06);
}
.identify-card-featured {
  border-left: 3px solid var(--mag);
  background: var(--bg-alt);
}
.identify-card-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}
.identify-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.identify-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ══ Empathizers ══════════════════════════════════════════════════════ */

.empathy-monday {
  max-width: 720px;
  margin: 0 auto 48px;
}
.empathy-quote {
  border-left: 4px solid var(--pink);
  padding: 20px 24px;
  background: rgba(255, 45, 107, 0.04);
  border-radius: 0 12px 12px 0;
  margin: 0 0 16px 0;
}
.empathy-quote p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin: 0;
}
.empathy-resolution {
  font-size: 14px;
  color: var(--text-secondary);
  font-family: 'IBM Plex Mono', monospace;
  text-align: right;
  margin: 0;
  padding-right: 8px;
}

.friction-strip {
  padding: 40px 0;
  background: #F0FEFB;
  overflow: hidden;
}
.friction-headline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--pink);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.friction-scroll {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.friction-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: frictionScroll 28s linear infinite;
}
.friction-track:hover {
  animation-play-state: paused;
  cursor: default;
}
@keyframes frictionScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .friction-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.friction-item {
  display: inline-block;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  background: #FFFFFF;
  border: 1px solid rgba(28,43,42,0.08);
  border-radius: 100px;
  padding: 8px 18px;
  font-style: italic;
  flex-shrink: 0;
}
.friction-resolution {
  font-size: 13px;
  color: var(--turq-dark);
  font-family: 'IBM Plex Mono', monospace;
  text-align: center;
  margin-top: 20px;
  letter-spacing: 0.04em;
}

.urgency-banner {
  background: rgba(255, 184, 0, 0.10);
  border-top: 1px solid rgba(255, 184, 0, 0.30);
  border-bottom: 1px solid rgba(255, 184, 0, 0.30);
  padding: 16px 0;
  text-align: center;
}
.urgency-banner p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--gold-dark);
  margin: 0;
  letter-spacing: 0.02em;
  text-shadow: none;
}

/* ══ Use Cases ════════════════════════════════════════════════════════ */

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .cases-grid { grid-template-columns: 1fr; }
}

.case-card {
  background: #FFFFFF;
  border: 1px solid rgba(28,43,42,0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  background: var(--bg-alt);
  padding: 10px 16px;
  border-bottom: 1px solid rgba(28,43,42,0.06);
}
.case-block {
  padding: 16px;
  border-bottom: 1px solid rgba(28,43,42,0.06);
}
.case-block:last-child { border-bottom: none; }
.case-block-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}
.case-before .case-block-label { color: var(--pink); }
.case-solution .case-block-label { color: var(--sky); }
.case-result .case-block-label { color: var(--turq-dark); }

.case-block p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
.case-result p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

/* ══ Logo Treatment ══════════════════════════════════════════════════ */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.nav-logo-img:hover {
  opacity: 0.85;
}

/* Logo naranja — visible on all bgs */
.section-dark .nav-logo-img,
.nav-dark .nav-logo-img,
.section-light .nav-logo-img,
.nav-light .nav-logo-img,
#main-nav.transparent .nav-logo-img,
#main-nav:not(.scrolled) .nav-logo-img {
  opacity: 1;
  filter: none;
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}
.footer-logo-img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .nav-logo-img { height: 28px; }
  .footer-logo-img { height: 24px; }
}

.lang-toggled {
  transform: scale(1.18);
  transition: transform 0.15s cubic-bezier(0.34,1.56,0.64,1);
}

/* ══ Thanks App Download ═════════════════════════════════════ */
.thanks-app-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(28,43,42,0.08);
  text-align: center;
}
.thanks-app-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  touch-action: manipulation;
  border: 1px solid rgba(28,43,42,0.15);
}
.btn-ios { background: #000; color: #fff; }
.btn-android { background: #1A0A2E; color: #fff; border-color: var(--coral); }
.btn-store:hover { transform: translateY(-2px); box-shadow: 0 4px 20px var(--mag-glow); }
@media (max-width: 480px) {
  .thanks-app-buttons { gap: 8px; }
  .btn-store { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════
   50. SECTION-SPECIFIC BACKGROUND TINTS
   ═══════════════════════════════════════════════════════ */
#hero { background: var(--bg); }
#problem { background: var(--bg-alt); }
#friction { background: var(--bg); }
#pricing { background: var(--bg-alt); }
#final-cta {
  background: var(--bg-dark);
}
#final-cta h2,
#final-cta p,
#final-cta .section-title { color: var(--text-on-dark); }


/* ═══════════════════════════════════════════════════════
   51. PERSONA CARDS — Testimonials with photos
   ═══════════════════════════════════════════════════════ */
.persona-card {
  background: #FFFFFF;
  border: 1px solid rgba(28, 43, 42, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 0, 255, 0.15);
}

.persona-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.persona-body {
  padding: 20px;
}

.persona-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.688rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}
.persona-tag-coral {
  color: var(--coral-dark);
  background: rgba(255, 0, 255, 0.08);
  border: 1px solid rgba(255, 0, 255, 0.20);
}
.persona-tag-turq {
  color: var(--turq-dark);
  background: rgba(0, 201, 167, 0.10);
  border: 1px solid rgba(0, 201, 167, 0.25);
}
.persona-tag-gold {
  color: var(--gold-dark);
  background: rgba(255, 184, 0, 0.10);
  border: 1px solid rgba(255, 184, 0, 0.25);
}

.persona-name {
  font-family: var(--font-display);
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.persona-role {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.persona-quote {
  font-size: 0.938rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: italic;
  padding-left: 12px;
  margin-bottom: 16px;
}
.persona-quote-coral {
  border-left: 3px solid var(--coral);
}
.persona-quote-turq {
  border-left: 3px solid var(--turq);
}
.persona-quote-gold {
  border-left: 3px solid var(--gold);
}

.persona-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.persona-ba-box {
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.ba-box-before {
  background: rgba(255, 45, 107, 0.05);
  border: 1px solid rgba(255, 45, 107, 0.15);
  text-align: center;
  color: var(--pink);
}
.ba-box-before .ba-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink);
  display: block;
  margin-bottom: 4px;
}
.ba-box-before .ba-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pink);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 45, 107, 0.4);
}

.ba-box-after {
  background: rgba(0, 201, 167, 0.05);
  border: 1px solid rgba(0, 201, 167, 0.15);
  text-align: center;
  color: var(--turq-dark);
}
.ba-box-after .ba-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--turq-dark);
  display: block;
  margin-bottom: 4px;
}
.ba-box-after .ba-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--turq-dark);
}

.persona-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(28, 43, 42, 0.06);
}

.persona-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.688rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.persona-result-badge-coral,
.badge-coral {
  background: rgba(255, 0, 255, 0.08);
  color: var(--coral-dark);
}
.persona-result-badge-turq,
.badge-turq {
  background: rgba(0, 201, 167, 0.10);
  color: var(--turq-dark);
}
.persona-result-badge-gold,
.badge-gold {
  background: rgba(255, 184, 0, 0.10);
  color: var(--gold-dark);
}

@media (max-width: 768px) {
  .persona-photo {
    height: 180px;
  }
}

/* ================================================================
   52. Social Proof Bar
   ================================================================ */
.social-proof-bar {
  padding: 2rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}

.social-proof-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.social-proof-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-proof-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.social-proof-count {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--coral);
}

.social-proof-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: #1d1d1d;
}

.social-proof-icons svg {
  width: 36px;
  height: 36px;
  transition: color 0.3s, transform 0.3s;
}

.social-proof-icons svg:hover {
  color: #333;
  transform: scale(1.1);
}

.social-proof-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.social-proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.social-proof-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.social-proof-stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-proof-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--glass-border);
}

@media (max-width: 640px) {
  .social-proof-stats {
    gap: 1rem;
  }
  .social-proof-stat-value {
    font-size: 1rem;
  }
  .social-proof-count {
    font-size: 1.25rem;
  }
}

/* ================================================================
   53. Trust Seal Image
   ================================================================ */
.trust-seal-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 201, 167, 0.15)) drop-shadow(0 0 40px rgba(255, 0, 255, 0.1));
  transition: filter var(--transition-slow);
}

.trust-seal-img:hover {
  filter: drop-shadow(0 0 30px rgba(0, 201, 167, 0.25)) drop-shadow(0 0 60px rgba(255, 0, 255, 0.15));
}

/* ================================================================
   54. Pain Illustration Images
   ================================================================ */
.pain-card .pain-illustration {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  opacity: 0.9;
  transition: opacity var(--transition), transform var(--transition);
}

.pain-card:hover .pain-illustration {
  opacity: 1;
  transform: scale(1.03);
}

/* ================================================================
   55. Testimonial Photo Enhancement
   ================================================================ */
.persona-photo {
  transition: transform var(--transition-slow);
}

.persona-card:hover .persona-photo {
  transform: scale(1.03);
}

/* ================================================================
   56. Enhanced WhatsApp Float (pulse + response time)
   ================================================================ */
@keyframes wa-pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wa-float {
  animation: wa-pulse-ring 2.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

/* ================================================================
   57. Inline Form Validation
   ================================================================ */
.form-group {
  position: relative;
}

.form-input:valid:not(:placeholder-shown),
.form-select:valid {
  border-color: var(--turq);
  box-shadow: 0 0 0 3px var(--turq-dim);
}

.form-input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 107, 0.08);
}

.form-group .form-check {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--turq);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.form-input:valid:not(:placeholder-shown) ~ .form-check {
  opacity: 1;
}

/* Shake animation for invalid submit */
@keyframes formShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.form-shake {
  animation: formShake 0.4s ease-out;
}

/* ================================================================
   58. Form Success State
   ================================================================ */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success-icon {
  margin-bottom: 1.5rem;
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes successCheck {
  0% { stroke-dashoffset: 40; }
  100% { stroke-dashoffset: 0; }
}

.form-success-icon svg circle {
  animation: successPop 0.5s ease-out forwards;
}

.form-success-icon svg polyline {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: successCheck 0.4s ease-out 0.3s forwards;
}

.form-success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--turq);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 0.4s ease-out 0.5s forwards;
}

.form-success-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  opacity: 0;
  animation: fadeInUp 0.4s ease-out 0.7s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   59. WhatsApp Float Badge
   ================================================================ */

.wa-float-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--turq);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 201, 167, 0.4);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 640px) {
  .wa-float-badge {
    font-size: 0.55rem;
    top: -6px;
    right: -6px;
    padding: 1px 5px;
  }
}

/* ================================================================
   60. Count-Up Animation for Social Proof
   ================================================================ */
.social-proof-stat-value {
  transition: color var(--transition);
}

.social-proof-stat-value.counting {
  color: var(--coral);
}

/* Glow effect disabled */
.social-proof-stat-value.count-done {
  text-shadow: none;
}

/* ================================================================
   61. Hero Image (replaces SVG)
   ================================================================ */
.svg-hero {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

img.svg-hero {
  filter: drop-shadow(0 8px 32px rgba(255, 0, 255, 0.10)) drop-shadow(0 0 60px rgba(255, 0, 255, 0.08));
  transition: filter var(--transition-slow), transform var(--transition-slow);
}

img.svg-hero:hover {
  filter: drop-shadow(0 12px 40px rgba(255, 0, 255, 0.15)) drop-shadow(0 0 80px rgba(255, 0, 255, 0.12));
  transform: scale(1.02);
}

/* ================================================================
   62. Hero Dashboard "Comes Alive" — Option C
   Image loads first (fast LCP), SVG revealed on hover/scroll-back
   ================================================================ */
.hero-dashboard-wrap {
  position: relative;
  max-width: 500px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

/* Layer 1: Static image — visible by default */
.hero-dash-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  transition: opacity 0.8s ease;
  filter: drop-shadow(0 8px 32px rgba(255, 0, 255, 0.10));
}

/* Layer 2: Animated SVG — underneath, always rendering */
.hero-dash-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 1;
}

/* On hover: image fades out, revealing the live SVG beneath */
.hero-dashboard-wrap:hover .hero-dash-img,
.hero-dashboard-wrap.alive .hero-dash-img {
  opacity: 0;
}

/* Glowing border when alive */
.hero-dashboard-wrap:hover,
.hero-dashboard-wrap.alive {
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.15), 0 0 60px rgba(0, 180, 232, 0.10), 0 0 90px rgba(255, 0, 255, 0.05);
}

/* Respect reduced motion: no crossfade, just show image */
@media (prefers-reduced-motion: reduce) {
  .hero-dashboard-wrap:hover .hero-dash-img,
  .hero-dashboard-wrap.alive .hero-dash-img {
    opacity: 1;
  }
  .hero-dash-svg {
    display: none;
  }
}

/* Mobile: keep image only (SVG too heavy for mobile DOM) */
@media (max-width: 640px) {
  .hero-dash-svg {
    display: none;
  }
  .hero-dashboard-wrap:hover .hero-dash-img {
    opacity: 1;
  }
}


/* ═══════════════════════════════════════════════════════
   63. NEW COMPONENT CLASSES — FITAL Premium Light Theme
   ═══════════════════════════════════════════════════════ */

/* Use case tabs */
.case-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.case-tab { padding: 12px 24px; border-radius: 12px; border: 2px solid var(--glass-border); background: var(--bg-card); cursor: pointer; font-weight: 600; transition: all 0.3s var(--ease-out); font-family: var(--font-body); font-size: 0.938rem; }
.case-tab.active { border-color: var(--mag); color: var(--mag); background: var(--mag-glow); }
.case-tab:hover:not(.active) { border-color: var(--text-light); }
.case-content { display: none; }
.case-content.active { display: block; }

/* Timeline table for use cases */
.timeline-table { width: 100%; border-collapse: separate; border-spacing: 0 8px; }
.timeline-table td { padding: 12px 16px; background: var(--bg-card); vertical-align: top; }
.timeline-table td:first-child { border-radius: 12px 0 0 12px; font-weight: 700; color: var(--mag); white-space: nowrap; width: 100px; }
.timeline-table td:last-child { border-radius: 0 12px 12px 0; }
.timeline-table .event-col { font-weight: 600; color: var(--text); }
.timeline-table .fital-col { color: var(--text-secondary); }
.timeline-highlight td { background: linear-gradient(135deg, var(--mag-glow), rgba(255,0,255,0.05)); }

/* Strategy slider */
.strategy-slider-wrap { background: var(--bg-card); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-lg); max-width: 800px; margin: 0 auto 40px; }
.strategy-result-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.strategy-result-card { background: var(--bg-alt); border-radius: 12px; padding: 20px; text-align: center; }
.strategy-result-card .value { font-size: 2rem; font-weight: 800; color: var(--mag); font-family: var(--font-mono); }
.strategy-result-card .label { font-size: 0.875rem; color: var(--text-light); margin-top: 4px; }

/* Strategy mini cards */
.strategy-tips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 768px) { .strategy-tips { grid-template-columns: 1fr; } }
.strategy-tip { background: var(--bg-card); border-radius: 12px; padding: 20px; border-left: 3px solid var(--mag); }
.strategy-tip .tip-icon { font-size: 1.5rem; margin-bottom: 8px; }
.strategy-tip .tip-title { font-weight: 700; margin-bottom: 4px; }
.strategy-tip .tip-text { font-size: 0.875rem; color: var(--text-secondary); }

/* Cards section (tarjetas FITAL) */
.card-visual { max-width: 420px; margin: 0 auto 40px; }
.card-fital { background: linear-gradient(135deg, #1C2B2A, #2D3E3D); border-radius: 16px; padding: 32px; color: white; aspect-ratio: 1.586/1; display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow-lg); }
.card-fital .card-chip { width: 48px; height: 36px; background: linear-gradient(135deg, #FFB800, #FF7043); border-radius: 6px; }
.card-fital .card-number { font-family: var(--font-mono); font-size: 1.1rem; letter-spacing: 3px; opacity: 0.7; }
.card-fital .card-name { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.card-fital .card-logo { font-weight: 900; color: var(--mag); font-size: 1.2rem; }
.card-examples { display: flex; flex-direction: column; gap: 12px; max-width: 500px; margin: 0 auto; }
.card-example { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--bg-card); border-radius: 12px; font-size: 0.9rem; box-shadow: var(--shadow); }
.card-example .arrow { color: var(--mag); font-weight: 700; }

/* Dashboard preview section */
.dash-preview { background: var(--bg-dark); border-radius: 16px; padding: 4px; max-width: 900px; margin: 0 auto; box-shadow: var(--shadow-lg); }
.dash-preview-inner { background: #0F1A19; border-radius: 12px; padding: 24px; color: var(--text-on-dark); }
.dash-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 16px; }
@media (max-width: 768px) { .dash-grid { grid-template-columns: 1fr; } }
.dash-widget { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 16px; }
.dash-widget .widget-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.dash-widget .widget-value { font-size: 1.5rem; font-weight: 800; font-family: var(--font-mono); color: var(--mag); }

/* How it works steps — horizontal line */
.steps-line { display: flex; align-items: flex-start; gap: 0; position: relative; }
@media (max-width: 768px) { .steps-line { flex-direction: column; gap: 0; } }
.step-card { flex: 1; text-align: center; padding: 24px 16px; position: relative; }
.step-card::after { content: ''; position: absolute; top: 36px; right: -24px; width: 48px; height: 2px; background: var(--glass-border); }
.step-card:last-child::after { display: none; }
@media (max-width: 768px) { .step-card::after { display: none; } }
.step-number { width: 48px; height: 48px; border-radius: 50%; background: var(--mag-glow); color: var(--mag); font-weight: 800; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 2px solid var(--mag); }
.step-title { font-weight: 700; margin-bottom: 8px; }
.step-text { font-size: 0.875rem; color: var(--text-secondary); }

/* Pricing table */
.pricing-table { width: 100%; max-width: 800px; margin: 0 auto; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--glass-border); }
.pricing-row:last-child { border-bottom: none; }
.pricing-name { font-weight: 500; color: var(--text); }
.pricing-value { font-weight: 700; font-family: var(--font-mono); }
.pricing-value.free { color: var(--verde); }
.pricing-value.included { color: var(--verde); }
.pricing-value.flat { color: var(--mag); font-size: 1.25rem; }
.pricing-value.quote { color: var(--azul); }
