/**
 * FITAL Card Funnel — Design System v2.0
 * tarjeta.fitalmx.com
 * Theme: "Arctic Neon" — SKY/CYAN accent — 2026 Edition
 *
 * LIGHT theme with sky blue primary accent
 * Gradient mesh, glassmorphism 2.0, noise texture,
 * scroll-driven animations, bento grids, magnetic buttons
 *
 * Performance: GPU-only animations (transform, opacity)
 * Accessibility: respects prefers-reduced-motion
 * No external dependencies — pure CSS
 */

/* ═══════════════════════════════════════════════════════
   1. CUSTOM PROPERTIES — Design Tokens (Arctic Neon SKY)
   ═══════════════════════════════════════════════════════ */
:root {
  /* Brand palette — Arctic Neon SKY */
  --sky: #00B4E8;
  --sky-dark: #008FBA;
  --sky-glow: rgba(0, 180, 232, 0.25);
  --turq: #00C9A7;
  --turq-dark: #00997F;
  --turq-glow: rgba(0, 201, 167, 0.2);
  --coral: #FF4D2E;
  --coral-dark: #CC3D25;
  --pink: #FF2D6B;
  --pink-dark: #CC2456;
  --gold: #FFB800;
  --gold-dark: #CC9300;

  /* Aliases — sky is primary, mapped to mag/amar for design system compat */
  --mag: var(--sky);
  --mag-dark: var(--sky-dark);
  --mag-glow: var(--sky-glow);
  --amar: var(--sky);
  --amar-light: #4DC9F6;
  --amar-glow: rgba(0, 180, 232, 0.25);
  --amar-dim: rgba(0, 180, 232, 0.10);
  --amar-deep: rgba(0, 180, 232, 0.06);
  --verde: var(--turq);
  --verde-dark: var(--turq-dark);
  --verde-glow: var(--turq-glow);
  --azul: var(--sky);
  --azul-dark: var(--sky-dark);
  --rosa: var(--pink);
  --rosa-dark: var(--pink-dark);
  --nar: var(--coral);
  --nar-light: #FF7A5C;

  /* Surfaces — LIGHT theme with cool undertone */
  --bg: #F8FCFF;
  --bg-alt: #F0F8FF;
  --bg-dark: #F8FCFF;
  --bg-dark-alt: #EBF3F8;
  --bg-dark-card: #FFFFFF;

  /* Text hierarchy — dark navy on light */
  --text: #0F2133;
  --text-secondary: #3A5A6E;
  --text-light: #5E7F8E;
  --text-on-dark: #0F2133;
  --text-on-dark-secondary: #3A5A6E;

  /* Glass tokens — dark-alpha for light backgrounds */
  --glass: rgba(15, 33, 51, 0.03);
  --glass-hover: rgba(15, 33, 51, 0.06);
  --glass-border: rgba(15, 33, 51, 0.08);
  --glass-border-hover: rgba(15, 33, 51, 0.14);
  --glass-blur: 24px;
  --glass-saturate: 1.5;

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

  /* Shadows — layered depth system (dark navy base) */
  --shadow: 0 4px 24px rgba(15, 33, 51, 0.06);
  --shadow-lg: 0 8px 48px rgba(15, 33, 51, 0.09);
  --shadow-xl: 0 24px 64px rgba(15, 33, 51, 0.12);
  --shadow-glow: 0 0 40px rgba(0, 180, 232, 0.12);
  --shadow-glow-lg: 0 0 80px rgba(0, 180, 232, 0.16);
  --shadow-glow-gold: 0 0 40px rgba(0, 180, 232, 0.15);
  --shadow-glow-gold-lg: 0 0 80px rgba(0, 180, 232, 0.2);
  --shadow-card: 0 2px 12px rgba(15, 33, 51, 0.05);
  --shadow-card-hover:
    0 0 0 1px rgba(0, 180, 232, 0.12),
    0 16px 48px rgba(15, 33, 51, 0.1);
  --shadow-glass:
    0 0 0 1px rgba(15, 33, 51, 0.04),
    0 8px 32px rgba(15, 33, 51, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  --shadow-glass-hover:
    0 0 0 1px rgba(0, 180, 232, 0.12),
    0 16px 48px rgba(15, 33, 51, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  /* 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;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}


/* ═══════════════════════════════════════════════════════
   3. NOISE TEXTURE 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 — Sky→Turq→Pink→Gold gradient
   ═══════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--turq), var(--pink), var(--gold));
  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(0, 180, 232, 0.04) 0%,
    rgba(0, 180, 232, 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(--gold), var(--coral), var(--pink));
  -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(--gold),
    var(--coral),
    var(--pink),
    var(--turq),
    var(--sky),
    var(--gold)
  );
  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%; }
}

/* Rotator color classes (F2 patrimonio) */
.rotator-1 { color: var(--gold); }
.rotator-2 { color: var(--turq); }
.rotator-3 { color: var(--coral); }


/* ═══════════════════════════════════════════════════════
   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 — now works on LIGHT backgrounds */
.section-dark {
  background-color: var(--bg);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

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

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

/* Floating particle dots — reduced opacity for light bg */
.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,184,0,0.12) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(0,201,167,0.08) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 10%, rgba(0,180,232,0.08) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(255,77,46,0.06) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 40%, rgba(255,45,107,0.08) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 15% 70%, rgba(255,184,0,0.08) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 35%, rgba(0,180,232,0.06) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 55%, rgba(0,201,167,0.06) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 15%, rgba(255,184,0,0.08) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 25% 90%, rgba(0,201,167,0.08) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 75%, rgba(255,184,0,0.06) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 25%, rgba(0,180,232,0.04) 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);
}

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

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

/* Subtle gradient mesh on light sections too */
.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 10% 50%, rgba(255, 184, 0, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 30%, rgba(0, 180, 232, 0.02) 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, 184, 0, 0.2), rgba(0, 180, 232, 0.1), 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);
}

/* Section-specific background tints */
#hero { background: linear-gradient(135deg, #FFFBF0, #F0FEFB); }
#problem { background: #FFFBF0; }
#projects { background: #FFFFFF; }
#calculator-section { background: #FFFBF0; }
#use-cases { background: #F0FEFB; }
#trust { background: #FFFFFF; }
#faq { background: #FFFFFF; }
#final-cta { background: linear-gradient(135deg, var(--gold), var(--coral) 60%, var(--pink)); }
#final-cta h2,
#final-cta p,
#final-cta .section-title { color: #FFFFFF !important; }


/* ═══════════════════════════════════════════════════════
   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.06);
  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, 184, 0, 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, 184, 0, 0.15);
  transform: translateY(-2px);
}

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


/* ═══════════════════════════════════════════════════════
   9. BADGE — Section labels (gold for light theme)
   ═══════════════════════════════════════════════════════ */
.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(--gold-dark);
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-out);
}

.badge:hover {
  background: rgba(255, 184, 0, 0.14);
  border-color: rgba(255, 184, 0, 0.35);
}

.section-dark .badge {
  background: rgba(255, 184, 0, 0.08);
  border-color: rgba(255, 184, 0, 0.2);
  color: var(--gold-dark);
}


/* ═══════════════════════════════════════════════════════
   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 — gold→coral gradient with dark text */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: #1C2B2A;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(255, 184, 0, 0.25),
    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.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.btn-primary:hover {
  box-shadow:
    0 8px 40px rgba(255, 184, 0, 0.4),
    0 2px 0 rgba(255, 255, 255, 0.2) inset;
  transform: translateY(-2px);
}

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

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

/* Secondary — glass on light bg */
.btn-secondary {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  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: var(--glass-hover);
  border-color: var(--glass-border-hover);
  box-shadow: 0 4px 16px rgba(28, 43, 42, 0.08);
}

/* Outline */
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  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, 184, 0, 0.06);
  box-shadow: 0 0 24px rgba(255, 184, 0, 0.1);
}

/* WhatsApp — signature green with pulse */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  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 — Light theme with subtle borders
   ═══════════════════════════════════════════════════════ */

/* Light card */
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(28, 43, 42, 0.06);
  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, 184, 0, 0.04) 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(28, 43, 42, 0.08),
    0 0 0 1px rgba(255, 184, 0, 0.1);
}

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

/* Dark card — now light glass on light bg */
.card-dark {
  background: rgba(28, 43, 42, 0.02);
  border: 1px solid rgba(28, 43, 42, 0.06);
  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-glass);
}

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

.card-dark:hover {
  background: rgba(28, 43, 42, 0.04);
  border-color: rgba(255, 184, 0, 0.18);
  box-shadow: var(--shadow-glass-hover);
  transform: translateY(-4px);
}

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

/* Glass card — multi-layer depth */
.card-glass {
  background: rgba(28, 43, 42, 0.02);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(28, 43, 42, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-glass);
  position: relative;
  overflow: hidden;
}

.card-glass:hover {
  border-color: rgba(255, 184, 0, 0.2);
  background: rgba(28, 43, 42, 0.04);
  box-shadow: var(--shadow-glass-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, 184, 0, 0.1), rgba(255, 77, 46, 0.08));
  border: 1px solid rgba(255, 184, 0, 0.1);
  transition: all 0.3s var(--ease-out);
}

.card:hover .card-icon,
.card-dark:hover .card-icon {
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.15), rgba(255, 77, 46, 0.12));
  border-color: rgba(255, 184, 0, 0.2);
  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;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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, 184, 0, 0.03);
}

.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, 184, 0, 0.04);
}

.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);
}


/* ═══════════════════════════════════════════════════════
   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: linear-gradient(135deg, var(--gold), var(--coral));
  color: #fff;
  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 rgba(255, 184, 0, 0.25);
  transition: all 0.3s var(--ease-out);
}

.step:hover .step-number {
  box-shadow: 0 6px 24px rgba(255, 184, 0, 0.35);
  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(--gold), transparent);
  opacity: 0.3;
}

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

/* Step numbers — 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 {
  background: linear-gradient(135deg, var(--gold), #CC9300);
  box-shadow: 0 4px 16px rgba(255, 184, 0, 0.2);
}
.step-num-1::after { background: linear-gradient(135deg, var(--gold), #CC9300); }

.step-num-2 {
  background: linear-gradient(135deg, var(--sky), #0091EA);
  box-shadow: 0 4px 16px rgba(0, 180, 232, 0.2);
}
.step-num-2::after { background: linear-gradient(135deg, var(--sky), #0091EA); }

.step-num-3 {
  background: linear-gradient(135deg, var(--turq), #00997F);
  box-shadow: 0 4px 16px rgba(0, 201, 167, 0.2);
}
.step-num-3::after { background: linear-gradient(135deg, var(--turq), #00997F); }

.step-num-4 {
  background: linear-gradient(135deg, var(--coral), #CC3D25);
  box-shadow: 0 4px 16px rgba(255, 77, 46, 0.2);
}
.step-num-4::after { background: linear-gradient(135deg, var(--coral), #CC3D25); }


/* ═══════════════════════════════════════════════════════
   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;
  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, 184, 0, 0.25);
  box-shadow: 0 4px 16px rgba(255, 184, 0, 0.06);
}

.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, 184, 0, 0.03);
}

.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='%236B7F7E' 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.01);
}

.section-dark .faq-item[open] {
  border-color: rgba(255, 184, 0, 0.2);
  background: rgba(28, 43, 42, 0.02);
}

.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='%234A5A59' 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);
}


/* ═══════════════════════════════════════════════════════
   16. PRICING CARD — Spotlight rotation + premium feel
   ═══════════════════════════════════════════════════════ */
.pricing-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255, 184, 0, 0.15);
  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(--gold), var(--coral), 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, 184, 0, 0.03),
    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, 184, 0, 0.3);
  box-shadow:
    0 24px 64px rgba(28, 43, 42, 0.1),
    0 0 60px rgba(255, 184, 0, 0.08);
  transform: translateY(-4px);
}

.pricing-rate {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0 4px;
  text-shadow: none;
}

.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 — on light bg now */
.section-dark .pricing-card {
  background: #FFFFFF;
  border-color: rgba(255, 184, 0, 0.18);
  box-shadow:
    0 24px 64px rgba(28, 43, 42, 0.08),
    0 0 40px rgba(255, 184, 0, 0.05);
}

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


/* ═══════════════════════════════════════════════════════
   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, 184, 0, 0.03) 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.06),
    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;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  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(--gold), var(--coral), var(--turq));
  cursor: pointer;
  touch-action: pan-x;
  transition: box-shadow 0.3s var(--ease-out);
}

.calc-slider:focus {
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.15);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  box-shadow: 0 2px 8px rgba(255, 184, 0, 0.3);
  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, 184, 0, 0.5);
  transform: scale(1.1);
}

.calc-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  box-shadow: 0 2px 8px rgba(255, 184, 0, 0.3);
  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.06) 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);
}

.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);
}

.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(--gold);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

.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: 2px solid rgba(28, 43, 42, 0.08);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  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(--gold);
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.08);
}

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

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

/* Form inputs on dark sections — still 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: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(28, 43, 42, 0.12);
  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(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.1);
}
.section-dark .form-input::placeholder,
.card-glass .form-input::placeholder {
  color: rgba(28, 43, 42, 0.35);
}
.section-dark .form-select option,
.card-glass .form-select option {
  background: #fff;
  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 rgba(255, 184, 0, 0.12);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 184, 0, 0.2);
  }
}

@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 */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.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);
}


/* ═══════════════════════════════════════════════════════
   21. NAVIGATION — Light bg with dark text
   ═══════════════════════════════════════════════════════ */
.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.9);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  padding: 10px 0;
  box-shadow: 0 1px 12px rgba(28, 43, 42, 0.06);
  border-bottom: 1px solid rgba(28, 43, 42, 0.06);
}

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

.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;
}

.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(--gold), var(--coral));
  border-radius: 1px;
  transition: width 0.3s var(--ease-out);
}

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

.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(--gold-dark);
  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);
}


/* ═══════════════════════════════════════════════════════
   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(--gold-dark);
  border-color: var(--gold);
  background: rgba(255, 184, 0, 0.04);
}

.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(--gold-dark);
  border-color: var(--gold);
  background: rgba(255, 184, 0, 0.06);
}


/* ═══════════════════════════════════════════════════════
   23. ANNOUNCEMENT BAR — Gradient with shimmer
   ═══════════════════════════════════════════════════════ */
.announcement {
  position: relative;
  z-index: var(--z-announcement);
  background: linear-gradient(90deg, var(--gold), var(--coral), var(--gold));
  background-size: 200% 100%;
  animation: gradient-x 4s ease infinite;
  color: #1C2B2A;
  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(28, 43, 42, 0.5);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s, transform 0.2s;
}

.announcement-dismiss:hover {
  color: #1C2B2A;
  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(--gold);
  transition: opacity 0.3s ease, transform 0.3s ease;
  min-width: 200px;
}

.section-dark .hero-rotator {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  -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: rgba(28, 43, 42, 0.02);
  border: 1px solid rgba(28, 43, 42, 0.06);
  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-glass);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--gold);
  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.14;
  transform: scale(1.05);
}

.testimonial-card:hover {
  border-color: rgba(255, 184, 0, 0.18);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glass-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(--coral), 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 — Stays DARK (#1C2B2A) — conventional
   ═══════════════════════════════════════════════════════ */
.footer {
  background: #1C2B2A;
  color: rgba(255, 255, 255, 0.6);
  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, 184, 0, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(0, 180, 232, 0.03) 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: #FFFFFF;
  margin-bottom: 12px;
}

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

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

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

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

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

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

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


/* ═══════════════════════════════════════════════════════
   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, 184, 0, 0.08));
}

.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(--gold);
  color: #1C2B2A;
  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;
  }

  /* 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-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(--gold); }
.text-verde { color: var(--turq); }
.text-azul { color: var(--sky); }
.text-rosa { color: var(--pink); }
.text-nar { color: var(--coral); }
.text-amar { color: var(--gold); }
.text-error { color: #ff5252; }
.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(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

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

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


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

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


/* ═══════════════════════════════════════════════════════
   40. SCROLL SNAP HINTS — Smooth section snapping
   ═══════════════════════════════════════════════════════ */
@media (min-height: 700px) and (min-width: 1024px) {
  html {
    scroll-snap-type: y proximity;
  }

  .section {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }
}


/* ═══════════════════════════════════════════════════════
   41. LOADING / SKELETON STATES
   ═══════════════════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 184, 0, 0.04) 25%,
    rgba(255, 184, 0, 0.08) 50%,
    rgba(255, 184, 0, 0.04) 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 (adapted for light theme)
   ═══════════════════════════════════════════════════════ */

/* --- 1. NEON TEXT GLOW CLASSES --- */

/* Neon text — gold (was magenta) */
.neon-mag {
  text-shadow:
    0 0 7px rgba(255,184,0,0.5),
    0 0 20px rgba(255,184,0,0.3),
    0 0 40px rgba(255,184,0,0.15),
    0 0 80px rgba(255,184,0,0.07);
}

/* Neon text — green/turq */
.neon-green {
  text-shadow:
    0 0 7px rgba(0,201,167,0.5),
    0 0 20px rgba(0,201,167,0.3),
    0 0 40px rgba(0,201,167,0.15),
    0 0 80px rgba(0,201,167,0.07);
}

/* Neon text — sky/cyan */
.neon-cyan {
  text-shadow:
    0 0 7px rgba(0,180,232,0.5),
    0 0 20px rgba(0,180,232,0.3),
    0 0 40px rgba(0,180,232,0.15),
    0 0 80px rgba(0,180,232,0.07);
}

/* Neon text — rosa/pink */
.neon-rosa {
  text-shadow:
    0 0 7px rgba(255,45,107,0.5),
    0 0 20px rgba(255,45,107,0.3),
    0 0 40px rgba(255,45,107,0.15);
}

/* Neon text — orange/coral */
.neon-nar {
  text-shadow:
    0 0 7px rgba(255,77,46,0.5),
    0 0 20px rgba(255,77,46,0.3),
    0 0 40px rgba(255,77,46,0.15);
}

/* Neon text — yellow/gold */
.neon-amar {
  text-shadow:
    0 0 7px rgba(255,184,0,0.5),
    0 0 20px rgba(255,184,0,0.3),
    0 0 40px rgba(255,184,0,0.15);
}

/* Animated neon flicker */
.neon-flicker {
  animation: neonFlicker 3s ease-in-out infinite;
}
@keyframes neonFlicker {
  0%, 100% { opacity: 1; text-shadow: 0 0 7px rgba(255,184,0,0.5), 0 0 20px rgba(255,184,0,0.3), 0 0 40px rgba(255,184,0,0.15), 0 0 80px rgba(255,184,0,0.07); }
  8% { opacity: 0.85; }
  12% { opacity: 1; }
  50% { text-shadow: 0 0 10px rgba(255,184,0,0.7), 0 0 30px rgba(255,184,0,0.4), 0 0 60px rgba(255,184,0,0.2), 0 0 100px rgba(255,184,0,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.2); }
}

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

/* Neon border — gold (was magenta) */
.neon-border-mag {
  border: 1px solid rgba(255,184,0,0.3);
  box-shadow:
    0 0 10px rgba(255,184,0,0.08),
    0 0 30px rgba(255,184,0,0.04),
    inset 0 0 10px rgba(255,184,0,0.02);
}
.neon-border-mag:hover {
  border-color: rgba(255,184,0,0.5);
  box-shadow:
    0 0 15px rgba(255,184,0,0.15),
    0 0 40px rgba(255,184,0,0.08),
    inset 0 0 15px rgba(255,184,0,0.03);
}

/* Neon border — green/turq */
.neon-border-green {
  border: 1px solid rgba(0,201,167,0.3);
  box-shadow:
    0 0 10px rgba(0,201,167,0.08),
    0 0 30px rgba(0,201,167,0.04),
    inset 0 0 10px rgba(0,201,167,0.02);
}

/* Neon border — cyan/sky */
.neon-border-cyan {
  border: 1px solid rgba(0,180,232,0.3);
  box-shadow:
    0 0 10px rgba(0,180,232,0.08),
    0 0 30px rgba(0,180,232,0.04),
    inset 0 0 10px rgba(0,180,232,0.02);
}

/* Neon border animated pulse */
.neon-border-pulse {
  animation: neonBorderPulse 3s ease-in-out infinite;
}
@keyframes neonBorderPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255,184,0,0.08), 0 0 30px rgba(255,184,0,0.04); }
  50% { box-shadow: 0 0 20px rgba(255,184,0,0.18), 0 0 50px rgba(255,184,0,0.08), 0 0 80px rgba(255,184,0,0.04); }
}

/* --- 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(28,43,42,0.12),
    0 0 40px rgba(255,184,0,0.06);
}

/* 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 */
.section-neon-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--coral), var(--turq), transparent);
  box-shadow: 0 0 15px rgba(255,184,0,0.3), 0 0 30px rgba(255,184,0,0.15);
  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(--gold), transparent);
  box-shadow: 0 0 10px rgba(255,184,0,0.4), 0 0 20px rgba(255,184,0,0.2);
  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:
    0 0 10px rgba(255,184,0,0.5),
    0 0 30px rgba(255,184,0,0.3),
    0 0 60px rgba(255,184,0,0.15),
    0 0 100px rgba(255,184,0,0.07);
  filter: brightness(1.1);
}

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

.hero-stat-value {
  text-shadow: 0 0 10px currentColor, 0 0 30px currentColor;
}

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

.calc-result-value {
  text-shadow: 0 0 6px currentColor, 0 0 16px currentColor;
  transition: text-shadow 0.6s ease;
}
.calc-result-savings .calc-result-value {
  text-shadow: 0 0 8px rgba(0,201,167,0.4), 0 0 24px rgba(0,201,167,0.2), 0 0 48px rgba(0,201,167,0.1);
}

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

.pricing-rate {
  text-shadow:
    0 0 20px rgba(255,184,0,0.4),
    0 0 40px rgba(255,184,0,0.2),
    0 0 80px rgba(255,184,0,0.1),
    0 0 120px rgba(255,184,0,0.05) !important;
  filter: brightness(1.1);
  animation: neonPricePulse 3s ease-in-out infinite;
}
@keyframes neonPricePulse {
  0%, 100% { filter: brightness(1.1); }
  50% { filter: brightness(1.2); text-shadow: 0 0 30px rgba(255,184,0,0.5), 0 0 60px rgba(255,184,0,0.3), 0 0 100px rgba(255,184,0,0.15), 0 0 150px rgba(255,184,0,0.07); }
}

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

.faq-item[open] {
  border-color: rgba(255,184,0,0.3);
  box-shadow: 0 0 15px rgba(255,184,0,0.06), 0 0 30px rgba(255,184,0,0.03);
}
.faq-item[open] summary {
  color: var(--gold-dark);
  text-shadow: 0 0 10px rgba(255,184,0,0.2);
}

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

.btn-primary {
  box-shadow:
    0 0 15px rgba(255,184,0,0.2),
    0 0 30px rgba(255,184,0,0.1) !important;
}
.btn-primary:hover {
  box-shadow:
    0 0 20px rgba(255,184,0,0.35),
    0 0 40px rgba(255,184,0,0.18),
    0 0 60px rgba(255,184,0,0.08) !important;
}
.btn-whatsapp {
  box-shadow:
    0 0 15px rgba(37,211,102,0.3),
    0 0 30px rgba(37,211,102,0.15) !important;
}
.btn-whatsapp:hover {
  box-shadow:
    0 0 20px rgba(37,211,102,0.5),
    0 0 40px rgba(37,211,102,0.25),
    0 0 60px rgba(37,211,102,0.1) !important;
}

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

.step-num {
  box-shadow: 0 0 15px rgba(255,184,0,0.2), 0 0 30px rgba(255,184,0,0.08);
}
.step-num-1 { box-shadow: 0 0 15px rgba(255,184,0,0.2), 0 0 30px rgba(255,184,0,0.08); }
.step-num-2 { box-shadow: 0 0 15px rgba(0,180,232,0.2), 0 0 30px rgba(0,180,232,0.08); }
.step-num-3 { box-shadow: 0 0 15px rgba(0,201,167,0.2), 0 0 30px rgba(0,201,167,0.08); }
.step-num-4 { box-shadow: 0 0 15px rgba(255,77,46,0.2), 0 0 30px rgba(255,77,46,0.08); }

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

.urgency-bar {
  box-shadow: 0 0 20px rgba(255,77,46,0.15), 0 4px 30px rgba(255,184,0,0.1);
  text-shadow: 0 0 10px rgba(28,43,42,0.15);
}

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

.wa-float {
  box-shadow:
    0 0 15px rgba(37,211,102,0.4),
    0 0 30px rgba(37,211,102,0.2),
    0 0 60px rgba(37,211,102,0.1) !important;
}

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

.badge {
  text-shadow: 0 0 8px rgba(255,184,0,0.2);
  box-shadow: 0 0 10px rgba(255,184,0,0.06), inset 0 0 10px rgba(255,184,0,0.02);
}


/* ═══════════════════════════════════════
   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 yellow/gold */
.neon-border-amar {
  border: 1px solid rgba(255,184,0,0.3);
  box-shadow:
    0 0 10px rgba(255,184,0,0.08),
    0 0 30px rgba(255,184,0,0.04),
    inset 0 0 10px rgba(255,184,0,0.02);
}
.neon-border-amar:hover {
  border-color: rgba(255,184,0,0.5);
  box-shadow:
    0 0 15px rgba(255,184,0,0.15),
    0 0 40px rgba(255,184,0,0.08),
    inset 0 0 15px rgba(255,184,0,0.03);
}

/* FitalPay row glow in comparison table */
.compare-fital-row {
  background: linear-gradient(90deg, rgba(0,201,167,0.06), rgba(0,201,167,0.03)) !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,184,0,0.03);
  border-color: rgba(255,184,0,0.12);
  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(--gold);
  }

  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: var(--gold);
  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);
  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(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 184, 0, 0.08), 0 4px 12px rgba(28,43,42,0.06);
}
.identify-card-featured {
  border-left: 3px solid var(--gold);
  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: rgba(255, 184, 0, 0.04);
  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);
  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);
  font-family: 'IBM Plex Mono', monospace;
  text-align: center;
  margin-top: 20px;
  letter-spacing: 0.04em;
}

.urgency-banner {
  background: rgba(255, 184, 0, 0.08);
  border-top: 1px solid rgba(255, 184, 0, 0.25);
  border-bottom: 1px solid rgba(255, 184, 0, 0.25);
  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: 0 0 12px rgba(255, 184, 0, 0.2);
}

/* ══ 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(--gold-dark);
  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); }

.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 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;
}
.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(--gold); }
.btn-store:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(255,184,0,0.2); }
@media (max-width: 480px) {
  .thanks-app-buttons { gap: 8px; }
  .btn-store { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════════════
   F2 PATRIMONIO — EXCLUSIVE COMPONENTS
   patrimonio.fitalmx.com — Gold accent, real estate investment funnel
   ═══════════════════════════════════════════════════════════════════════ */

/* ── 1. Project Cards (F2 exclusive) ─────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .projects-grid { grid-template-columns: 1fr; }
}

.project-card {
  background: #FFFFFF;
  border: 1px solid rgba(28, 43, 42, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  position: relative;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(255, 184, 0, 0.12);
  border-color: rgba(255, 184, 0, 0.3);
}
.project-card-header {
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(28, 43, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.project-apy {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-dark);
}
.project-body { padding: 12px 16px 16px; }
.project-status {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 4px;
  display: block;
}
.project-location {
  font-size: 13px;
  color: var(--turq);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.project-min { font-size: 12px; color: var(--text-secondary); }
.project-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(255, 184, 0, 0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(255, 184, 0, 0.3);
}
.project-badge.badge-top {
  background: rgba(255, 45, 107, 0.08);
  color: var(--pink);
  border-color: rgba(255, 45, 107, 0.25);
}
.project-cta-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.btn-project {
  flex: 1;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  touch-action: manipulation;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-project-wa {
  background: rgba(37, 211, 102, 0.08);
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.25);
}
.btn-project-wa:hover {
  background: rgba(37, 211, 102, 0.15);
}
.btn-project-info {
  background: rgba(255, 184, 0, 0.06);
  color: var(--gold-dark);
  border-color: rgba(255, 184, 0, 0.2);
}
.btn-project-info:hover {
  background: rgba(255, 184, 0, 0.12);
}

/* ── 1b. Project Photo Card Styles ───────────────────────────────────── */
.project-photo-wrap {
  overflow: hidden;
  height: 180px;
  position: relative;
}
.project-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.project-card:hover .project-photo {
  transform: scale(1.04);
}
.project-verify-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  color: var(--turq-dark);
  padding: 3px 10px;
}
.btn-project-verify {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--sky);
  background: rgba(0,180,232,0.08);
  border: 1px solid rgba(0,180,232,0.22);
  border-radius: 9999px;
  padding: 4px 12px;
  text-decoration: none;
}


/* ── 2. Yield Timeline (F2 calculator bar chart) ─────────────────────── */
.yield-timeline {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 80px;
  margin: 20px 0;
  padding: 0 4px;
}
.yield-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--gold), var(--coral));
  opacity: 0.8;
  transition: opacity 0.2s, height 0.4s var(--ease-out);
  min-height: 4px;
  position: relative;
}
.yield-bar:hover {
  opacity: 1;
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.25);
}


/* ── 3. Projects Legal Note ──────────────────────────────────────────── */
.projects-legal {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-light);
  opacity: 0.5;
  text-align: center;
  margin-top: 20px;
  padding: 0 16px;
  line-height: 1.6;
}


/* ── 4. F2 Identify Section (enhanced persona cards) ─────────────────── */
.f2-identify-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .f2-identify-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .f2-identify-grid { grid-template-columns: 1fr; }
}

.f2-identify-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: rgba(28, 43, 42, 0.02);
  border: 1px solid rgba(28, 43, 42, 0.06);
  transition: all 0.3s var(--ease-out);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.f2-identify-card:hover {
  border-color: rgba(255, 184, 0, 0.2);
  background: rgba(28, 43, 42, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255, 184, 0, 0.06);
}
.f2-identify-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.f2-identify-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}
.f2-identify-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Gold-accented identify cards for patrimonio funnel */
body[data-funnel="patrimonio"] .identify-card:hover {
  border-color: rgba(255, 184, 0, 0.2);
  box-shadow: 0 0 20px rgba(255, 184, 0, 0.08), 0 4px 12px rgba(28,43,42,0.06);
}
body[data-funnel="patrimonio"] .identify-card-featured {
  border-left-color: var(--gold);
}
.identify-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}


/* ── 5. Sky Announcement Bar Override ───────────────────────────────── */
.announcement-gold,
.announcement-sky {
  background: rgba(0, 180, 232, 0.06);
  border-bottom: 1px solid rgba(0, 180, 232, 0.2);
}
.announcement-gold a,
.announcement-sky a {
  color: var(--sky-dark);
}


/* ── 6. Form Divider (between calculator and inline form) ────────────── */
.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.2), transparent);
}


/* ── 7. Empathy Block (F2 Monday story) ──────────────────────────────── */
.empathy-block {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 32px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 184, 0, 0.03);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
/* F2 gold empathy resolution override */
body[data-funnel="patrimonio"] .empathy-resolution {
  text-align: center;
  font-style: normal;
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: 24px;
  font-size: 1.1rem;
}


/* ── 8. Gold Primary Button Variant ──────────────────────────────────── */
.btn-primary-gold {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: #1C2B2A;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(255, 184, 0, 0.25), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.btn-primary-gold:hover {
  box-shadow: 0 8px 40px rgba(255, 184, 0, 0.4), 0 2px 0 rgba(255,255,255,0.2) inset;
  transform: translateY(-2px);
}


/* ── 9. Consultation CTA Card ────────────────────────────────────────── */
.consult-card {
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.06), rgba(255, 77, 46, 0.04));
  border: 1px solid rgba(255, 184, 0, 0.18);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.consult-card h3 {
  color: var(--gold-dark);
  margin-bottom: 8px;
}


/* ═══════════════════════════════════════════════════════════════════════
   PERSONA TESTIMONIAL CARD STYLES (F2 Patrimonio)
   ═══════════════════════════════════════════════════════════════════════ */

.persona-card {
  background: #FFFFFF;
  border: 1px solid rgba(28, 43, 42, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  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(28, 43, 42, 0.08);
  border-color: rgba(255, 184, 0, 0.2);
}

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

.persona-body {
  padding: 24px;
}

.persona-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 12px;
}
.persona-tag-gold {
  color: var(--gold-dark);
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.25);
}
.persona-tag-turq {
  color: var(--turq-dark);
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.25);
}
.persona-tag-coral {
  color: var(--coral-dark);
  background: rgba(255, 77, 46, 0.1);
  border: 1px solid rgba(255, 77, 46, 0.25);
}

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

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

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

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

.ba-box-before,
.ba-box-after {
  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);
  color: var(--pink);
}
.ba-box-after {
  background: rgba(0, 201, 167, 0.05);
  border: 1px solid rgba(0, 201, 167, 0.15);
  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: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
}
.persona-result-badge-gold {
  background: rgba(255, 184, 0, 0.1);
  color: var(--gold-dark);
}
.persona-result-badge-turq {
  background: rgba(0, 201, 167, 0.1);
  color: var(--turq-dark);
}
.persona-result-badge-coral {
  background: rgba(255, 77, 46, 0.1);
  color: var(--coral-dark);
}

/* ═══════════════════════════════════════════════════════
   PATRIMONIO MAGIC PATCH v2
   All changes are appended here — does not modify CSS above
   ═══════════════════════════════════════════════════════ */

/* ── 1. SECTION RHYTHM — Alternating backgrounds ─── */
#hero { background: linear-gradient(150deg, #FFF8F5 0%, #FFFBF0 50%, #F0FEFB 100%) !important; }
#identify { background: #FFFFFF !important; }
#problem { background: #FFFBF0 !important; }
#how-it-works { background: #FFFFFF !important; }
#projects { background: linear-gradient(180deg, #FEFCF8 0%, #F8F4EF 100%) !important; }
#calculator-section { background: #FFFBF0 !important; }
#use-cases { background: #FFFFFF !important; }
#trust { background: linear-gradient(180deg, #F0FEFB 0%, #FEFCF8 100%) !important; }
#testimonials { background: #FFFFFF !important; }
#faq { background: #FFFBF0 !important; }
#final-cta { background: linear-gradient(135deg, #00B4E8 0%, #0097C4 55%, #007DA6 100%) !important; }
#final-cta * { color: white !important; }
#final-cta .btn-whatsapp { color: white !important; }
#final-cta .btn-primary { background: white !important; color: var(--coral) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important; }
#final-cta .btn-primary:hover { background: rgba(255,255,255,0.92) !important; transform: translateY(-2px) !important; }

/* ── 2. IDENTIFY CARDS — Color-coded emoji circles ─── */
.identify-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(28,43,42,0.07) !important;
  border-radius: 18px !important;
  padding: 22px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.identify-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, var(--gold), var(--coral)) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}
.identify-card:hover::before { opacity: 1 !important; }
.identify-card:hover {
  transform: translateY(-5px) scale(1.01) !important;
  box-shadow: 0 8px 32px rgba(255,184,0,0.12), 0 2px 8px rgba(28,43,42,0.06) !important;
  border-color: rgba(255,184,0,0.30) !important;
}
.identify-card .identify-card-icon,
.identify-card .f2-identify-icon,
.identify-card > span:first-child {
  width: 46px !important; height: 46px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, rgba(255,184,0,0.12), rgba(255,77,46,0.06)) !important;
  border: 1px solid rgba(255,184,0,0.18) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  font-size: 22px !important; margin-bottom: 14px !important;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.identify-card:hover .identify-card-icon,
.identify-card:hover .f2-identify-icon,
.identify-card:hover > span:first-child {
  transform: scale(1.1) rotate(-5deg) !important;
}
.identify-card:nth-child(2) .identify-card-icon, .identify-card:nth-child(2) .f2-identify-icon, .identify-card:nth-child(2) > span:first-child { background: linear-gradient(135deg, rgba(0,201,167,0.10), rgba(0,180,232,0.05)) !important; border-color: rgba(0,201,167,0.18) !important; }
.identify-card:nth-child(3) .identify-card-icon, .identify-card:nth-child(3) .f2-identify-icon, .identify-card:nth-child(3) > span:first-child { background: linear-gradient(135deg, rgba(0,180,232,0.10), rgba(0,201,167,0.05)) !important; border-color: rgba(0,180,232,0.18) !important; }
.identify-card:nth-child(4) .identify-card-icon, .identify-card:nth-child(4) .f2-identify-icon, .identify-card:nth-child(4) > span:first-child { background: linear-gradient(135deg, rgba(255,45,107,0.08), rgba(255,77,46,0.04)) !important; border-color: rgba(255,45,107,0.15) !important; }
.identify-card:nth-child(5) .identify-card-icon, .identify-card:nth-child(5) .f2-identify-icon, .identify-card:nth-child(5) > span:first-child { background: linear-gradient(135deg, rgba(255,184,0,0.10), rgba(255,184,0,0.04)) !important; border-color: rgba(255,184,0,0.18) !important; }
.identify-card:nth-child(6) .identify-card-icon, .identify-card:nth-child(6) .f2-identify-icon, .identify-card:nth-child(6) > span:first-child { background: linear-gradient(135deg, rgba(255,77,46,0.08), rgba(255,184,0,0.04)) !important; border-color: rgba(255,77,46,0.15) !important; }

/* ── 3. PROJECT CARDS — APY hero + LIVE badge ─── */
.project-card { background: #FFFFFF !important; border: 1px solid rgba(28,43,42,0.08) !important; border-radius: 18px !important; overflow: hidden !important; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, border-color 0.35s ease !important; }
.project-card:hover { transform: translateY(-6px) !important; box-shadow: 0 20px 60px rgba(255,184,0,0.15), 0 4px 16px rgba(28,43,42,0.06) !important; border-color: rgba(255,184,0,0.35) !important; }
.project-photo-wrap { position: relative !important; height: 160px !important; overflow: hidden !important; }
.project-photo { width: 100% !important; height: 100% !important; object-fit: cover !important; transition: transform 0.5s ease !important; }
.project-card:hover .project-photo { transform: scale(1.06) !important; }
.project-photo-wrap::after { content: '' !important; position: absolute !important; inset: 0 !important; background: linear-gradient(to bottom, transparent 0%, rgba(28,43,42,0.7) 100%) !important; pointer-events: none !important; }
.project-apy-overlay { position: absolute !important; bottom: 10px !important; left: 14px !important; z-index: 2 !important; display: flex !important; align-items: baseline !important; gap: 4px !important; }
.project-apy-overlay .apy-num { font-family: var(--font-mono) !important; font-size: 28px !important; font-weight: 900 !important; color: #FFB800 !important; text-shadow: 0 0 20px rgba(255,184,0,0.6), 0 0 40px rgba(255,184,0,0.3) !important; line-height: 1 !important; }
.project-apy-overlay .apy-label { font-family: var(--font-mono) !important; font-size: 11px !important; color: rgba(255,255,255,0.8) !important; font-weight: 600 !important; margin-bottom: 2px !important; }
.project-live-badge { position: absolute !important; top: 10px !important; right: 10px !important; z-index: 2 !important; display: flex !important; align-items: center !important; gap: 5px !important; background: rgba(0,201,167,0.90) !important; backdrop-filter: blur(8px) !important; border-radius: 100px !important; padding: 3px 10px !important; font-family: var(--font-mono) !important; font-size: 9px !important; font-weight: 700 !important; color: white !important; letter-spacing: 0.06em !important; }
.project-live-badge::before { content: '' !important; width: 5px !important; height: 5px !important; background: white !important; border-radius: 50% !important; animation: livePulse 1.8s ease-in-out infinite !important; }
@keyframes livePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.3; transform: scale(0.7); } }
.project-verify-badge { position: absolute !important; top: 10px !important; left: 10px !important; z-index: 2 !important; }

/* ── 4. HOW STEPS — Connected timeline ─── */
.how-timeline { position: relative !important; }
.how-timeline::before { content: '' !important; position: absolute !important; left: 28px !important; top: 60px !important; bottom: 60px !important; width: 2px !important; background: linear-gradient(to bottom, var(--gold), var(--coral), var(--turq)) !important; opacity: 0.25 !important; z-index: 0 !important; }
@media (min-width: 768px) { .how-timeline::before { left: 50% !important; top: 0 !important; bottom: 0 !important; transform: translateX(-50%) !important; } }
.how-step { background: #FFFFFF !important; border: 1.5px solid rgba(255,184,0,0.15) !important; border-radius: 20px !important; padding: 24px !important; position: relative !important; z-index: 1 !important; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease !important; box-shadow: 0 2px 16px rgba(28,43,42,0.04) !important; }
.how-step::before { content: '' !important; position: absolute !important; left: 0 !important; top: 0 !important; bottom: 0 !important; width: 4px !important; border-radius: 4px 0 0 4px !important; background: linear-gradient(to bottom, var(--gold), var(--coral)) !important; opacity: 0.6 !important; }
.how-step:hover { transform: translateY(-4px) translateX(4px) !important; box-shadow: 0 12px 40px rgba(255,184,0,0.12), 0 4px 12px rgba(28,43,42,0.06) !important; border-color: rgba(255,184,0,0.30) !important; }
.how-step:hover::before { opacity: 1 !important; }
.step-num { width: 48px !important; height: 48px !important; border-radius: 14px !important; background: linear-gradient(135deg, var(--gold), var(--coral)) !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 20px !important; font-weight: 900 !important; color: white !important; margin-bottom: 16px !important; box-shadow: 0 4px 20px rgba(255,184,0,0.30) !important; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1) !important; }
.how-step:hover .step-num { transform: scale(1.12) rotate(-6deg) !important; }
.how-step:nth-child(2) .step-num { background: linear-gradient(135deg, var(--turq), var(--sky)) !important; box-shadow: 0 4px 20px rgba(0,201,167,0.30) !important; }
.how-step:nth-child(2)::before { background: linear-gradient(to bottom, var(--turq), var(--sky)) !important; }
.how-step:nth-child(3) .step-num { background: linear-gradient(135deg, var(--sky), var(--turq)) !important; box-shadow: 0 4px 20px rgba(0,180,232,0.30) !important; }
.how-step:nth-child(3)::before { background: linear-gradient(to bottom, var(--sky), var(--turq)) !important; }
.how-step:nth-child(4) .step-num { background: linear-gradient(135deg, var(--coral), var(--pink)) !important; box-shadow: 0 4px 20px rgba(255,77,46,0.30) !important; }
.how-step:nth-child(4)::before { background: linear-gradient(to bottom, var(--coral), var(--pink)) !important; }

/* ── 5. TRUST CARDS — Structured with icon area ─── */
#trust .card-glass, #trust .card-dark { background: #FFFFFF !important; border-radius: 20px !important; overflow: hidden !important; padding: 0 !important; box-shadow: 0 4px 24px rgba(0,201,167,0.08) !important; border: 1px solid rgba(0,201,167,0.15) !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease !important; }
#trust .card-glass:hover, #trust .card-dark:hover { transform: translateY(-5px) !important; box-shadow: 0 12px 40px rgba(0,201,167,0.14) !important; }
#trust .card-glass > svg:first-child, #trust .card-dark > svg:first-child { display: block !important; margin: 0 !important; padding: 20px !important; background: linear-gradient(135deg, rgba(0,201,167,0.08), rgba(0,180,232,0.04)) !important; width: 100% !important; height: auto !important; border-bottom: 1px solid rgba(0,201,167,0.10) !important; box-sizing: border-box !important; }
#trust .card-glass > h3, #trust .card-dark > h3 { padding: 16px 20px 4px !important; font-size: 16px !important; font-weight: 800 !important; color: var(--text) !important; margin: 0 !important; }
#trust .card-glass > p, #trust .card-dark > p { padding: 0 20px 20px !important; font-size: 13px !important; color: var(--text-secondary) !important; line-height: 1.65 !important; margin: 0 !important; }

/* ── 6. FAQ — Animated with +/× icon ─── */
.faq-item { border: 1.5px solid rgba(28,43,42,0.07) !important; border-radius: 14px !important; overflow: hidden !important; margin-bottom: 8px !important; transition: border-color 0.3s ease, box-shadow 0.3s ease !important; }
.faq-item[open] { border-color: rgba(255,184,0,0.35) !important; box-shadow: 0 4px 20px rgba(255,184,0,0.08) !important; }
.faq-item summary { padding: 18px 20px !important; cursor: pointer !important; list-style: none !important; display: flex !important; justify-content: space-between !important; align-items: center !important; font-weight: 700 !important; font-size: 15px !important; color: var(--text) !important; user-select: none !important; gap: 12px !important; }
.faq-item summary::-webkit-details-marker { display: none !important; }
.faq-item summary::after { content: '+' !important; flex-shrink: 0 !important; width: 28px !important; height: 28px !important; border-radius: 50% !important; background: rgba(28,43,42,0.05) !important; border: 1px solid rgba(28,43,42,0.10) !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 18px !important; font-weight: 400 !important; color: var(--text-light) !important; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.3s ease, color 0.3s ease !important; }
.faq-item[open] summary::after { content: '\2212' !important; transform: rotate(180deg) !important; background: rgba(255,184,0,0.12) !important; border-color: rgba(255,184,0,0.30) !important; color: var(--gold-dark) !important; }
.faq-item[open] summary { background: rgba(255,184,0,0.03) !important; border-bottom: 1px solid rgba(255,184,0,0.12) !important; }
.faq-answer { padding: 16px 20px 20px !important; font-size: 14px !important; color: var(--text-secondary) !important; line-height: 1.7 !important; animation: faqOpen 0.3s ease !important; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ── 7. CASE CARDS — Enhanced before/after ─── */
.case-card { background: #FFFFFF !important; border: 1px solid rgba(28,43,42,0.07) !important; border-radius: 20px !important; overflow: hidden !important; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease !important; }
.case-card:hover { transform: translateY(-5px) !important; box-shadow: 0 16px 48px rgba(28,43,42,0.10) !important; }
.case-tag { background: linear-gradient(90deg, var(--gold), var(--coral)) !important; color: white !important; border: none !important; padding: 8px 16px !important; font-size: 11px !important; font-weight: 700 !important; letter-spacing: 0.06em !important; border-radius: 0 !important; margin: 0 !important; display: block !important; }
.case-block { padding: 14px 16px !important; border-left: 3px solid transparent !important; margin: 0 12px !important; border-radius: 0 8px 8px 0 !important; }
.case-before { border-left-color: var(--pink) !important; background: rgba(255,45,107,0.03) !important; margin-top: 12px !important; }
.case-solution { border-left-color: var(--turq) !important; background: rgba(0,201,167,0.03) !important; }
.case-result { border-left-color: var(--gold) !important; background: rgba(255,184,0,0.04) !important; margin-bottom: 12px !important; }
.case-block-label { font-family: var(--font-mono) !important; font-size: 9px !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.10em !important; margin-bottom: 5px !important; display: block !important; }
.case-before .case-block-label { color: var(--pink) !important; }
.case-solution .case-block-label { color: var(--turq-dark) !important; }
.case-result .case-block-label { color: var(--gold-dark) !important; }
.case-result p { font-weight: 700 !important; color: var(--text) !important; }

/* ── 8. ANNOUNCEMENT — Animated gradient ─── */
.announcement-gold { background-size: 300% 100% !important; animation: announcePulse 6s ease infinite !important; }
@keyframes announcePulse { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* ── 9. SCROLL PROGRESS — Gold rainbow ─── */
.scroll-progress { background: linear-gradient(90deg, var(--gold) 0%, var(--coral) 25%, var(--pink) 50%, var(--turq) 75%, var(--sky) 100%) !important; }

@media (max-width: 768px) {
  .project-photo-wrap { height: 140px !important; }
  .project-apy-overlay .apy-num { font-size: 22px !important; }
}
