/* ═══════════════════════════════════════
   DESIGN TOKENS — idénticos al sistema LUM360
═══════════════════════════════════════ */
:root {
  --color-bg:       #050505;
  --color-surface:  #0F0F0F;
  --color-surface2: #141414;
  --color-border:   #1C1C1C;
  --color-gold:     #D4AF37;
  --color-gold-dim: #B8922A;
  --color-gold-glow:rgba(212,175,55,0.15);
  --color-text:     #FAFAFA;
  --color-muted:    #888888;
  --color-muted2:   #555555;
  --color-error:    #E53E3E;
  --color-success:  #38A169;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════ */
#cursor-dot {
  position: fixed; width: 8px; height: 8px;
  background: var(--color-gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(212,175,55,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
.cursor-hover #cursor-dot { width: 12px; height: 12px; }
.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(212,175,55,0.8); }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(5,5,5,0.85);
  border-bottom: 1px solid rgba(212,175,55,0.0);
  height: 72px; display: flex; align-items: center;
  transition: border-color 0.3s ease;
}
nav.scrolled { border-bottom-color: rgba(212,175,55,0.12); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.nav-logo { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; color: var(--color-gold); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--color-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--color-text); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  border: none; cursor: none; text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dim));
  color: #050505; transition: all 0.3s var(--ease-premium);
}
.btn-gold:hover { transform: scale(1.02); box-shadow: 0 0 32px rgba(212,175,55,0.35); }
.btn-gold:active { transform: scale(0.98); }
.btn-outline {
  background: transparent; border: 1px solid var(--color-gold); color: var(--color-gold);
  padding: 13px 32px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: none; text-transform: uppercase; transition: all 0.3s var(--ease-premium);
}
.btn-outline:hover { background: var(--color-gold-glow); }

/* ═══════════════════════════════════════
   TYPOGRAPHY & SHARED
═══════════════════════════════════════ */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-gold); opacity: 0.7; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section-pad { padding: 140px 0; }
.gold-line { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent); margin: 0; }

/* Reveal animation base */
.reveal { opacity: 0; transform: translateY(40px); }

/* ═══════════════════════════════════════
   SECTION 1 — HERO
═══════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; width: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Animated canvas background — node network */
#heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,5,5,0.45) 0%,
    rgba(5,5,5,0.15) 40%,
    rgba(5,5,5,0.65) 80%,
    rgba(5,5,5,0.98) 100%
  );
}

.hero-content {
  position: relative; z-index: 10;
  text-align: center; max-width: 960px; padding: 0 24px;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--color-gold);
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 32px; opacity: 0;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; flex: 1; max-width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}
.hero-eyebrow::after { background: linear-gradient(90deg, var(--color-gold), transparent); }

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 9vw, 120px);
  font-weight: 300; line-height: 1.0; letter-spacing: -0.02em;
  color: var(--color-text); margin-bottom: 28px; 
  opacity: 0; transform: translateY(30px); /* Optimizado para GSAP */
}
.hero-h1 em { font-style: italic; color: var(--color-gold); }

.hero-subtitle {
  font-size: clamp(15px, 1.6vw, 18px); color: var(--color-muted);
  line-height: 1.8; max-width: 680px; margin: 0 auto 48px; opacity: 0;
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; opacity: 0; flex-wrap: wrap; }

/* Stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  border-top: 1px solid rgba(212,175,55,0.12);
  background: rgba(5,5,5,0.7); backdrop-filter: blur(12px);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero-stat {
  padding: 28px 32px; border-right: 1px solid rgba(212,175,55,0.08);
  opacity: 0;
}
.hero-stat:last-child { border-right: none; }
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 300; color: var(--color-gold);
  line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 11px; color: var(--color-muted); letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.5; }

/* Scroll indicator */
.scroll-cue {
  position: absolute; bottom: 140px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted2); }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ═══════════════════════════════════════
   SECTION 2 — VENTAJA ESTRATÉGICA
═══════════════════════════════════════ */
.advantage-section { padding: 160px 0; overflow: hidden; }
.advantage-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
}
.advantage-left {}
.advantage-left h2 {
  font-size: clamp(42px, 5vw, 68px); line-height: 1.05;
  margin-bottom: 32px; letter-spacing: -0.02em;
}
.advantage-left p {
  font-size: 16px; color: var(--color-muted); line-height: 1.85;
  margin-bottom: 20px;
}
.advantage-left strong { color: var(--color-text); }

/* Signal bars — visual metaphor */
.signal-bars {
  display: flex; gap: 8px; align-items: flex-end; margin: 40px 0;
  height: 48px;
}
.signal-bar {
  width: 10px; background: var(--color-border); border-radius: 2px;
  transition: background 0.3s ease, height 0.6s var(--ease-premium);
}
.signal-bar.active { background: var(--color-gold); }

/* Google Business Profile mockup */
.gbp-card {
  background: #1a1a1a; border: 1px solid #2a2a2a;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,175,55,0.08);
  position: relative;
}
.gbp-header {
  background: linear-gradient(135deg, #1e1e1e, #141414);
  padding: 20px 20px 0; display: flex; gap: 12px; align-items: flex-start;
}
.gbp-avatar {
  width: 52px; height: 52px; border-radius: 6px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dim));
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 18px; color: #050505; font-weight: 600;
}
.gbp-meta { flex: 1; }
.gbp-name { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.gbp-category { font-size: 12px; color: #888; margin-bottom: 6px; }
.gbp-stars { display: flex; align-items: center; gap: 4px; font-size: 12px; }
.star { color: var(--color-gold); font-size: 13px; }
.gbp-image {
  width: 100%; height: 160px; object-fit: cover; display: block;
  filter: brightness(0.85);
  background: linear-gradient(135deg, #111, #1c1c10);
}
.gbp-body { padding: 16px 20px; }
.gbp-tour-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.25);
  color: var(--color-gold); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; margin-bottom: 14px;
}
.gbp-info { font-size: 12px; color: #666; line-height: 2; }
.gbp-actions {
  display: flex; gap: 1px; margin-top: 14px;
  border-top: 1px solid #222; padding-top: 14px;
}
.gbp-action {
  flex: 1; text-align: center; font-size: 12px; font-weight: 500;
  color: #4a9eff; padding: 8px 4px; cursor: none;
}
.gbp-action:hover { background: rgba(74,158,255,0.08); }

/* Ranking signal animation */
.rank-badge {
  position: absolute; top: -12px; right: 20px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dim));
  color: #050505; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 14px;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}

/* Integration pills */
.integration-list { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.integration-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border: 1px solid var(--color-border);
  background: var(--color-surface); transition: border-color 0.3s, background 0.3s;
}
.integration-item:hover { border-color: rgba(212,175,55,0.25); background: var(--color-surface2); }
.integration-dot {
  width: 8px; height: 8px; background: var(--color-gold);
  border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 8px rgba(212,175,55,0.5);
}
.integration-text { font-size: 13px; color: var(--color-muted); }
.integration-text strong { color: var(--color-text); }

/* ═══════════════════════════════════════
   SECTION 3 — MAPEO PERSONALIZADO
═══════════════════════════════════════ */
.mapping-section { padding: 160px 0; background: var(--color-surface); }
.mapping-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.mapping-header { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.mapping-header h2 { font-size: clamp(42px, 5vw, 68px); line-height: 1.05; margin-bottom: 24px; }
.mapping-header p { font-size: 16px; color: var(--color-muted); line-height: 1.85; }

/* Before/After slider */
.ba-container {
  position: relative; max-width: 900px; margin: 0 auto;
  border: 1px solid var(--color-border); overflow: hidden;
}
.ba-track { display: flex; }
.ba-panel {
  width: 100%; flex-shrink: 0;
  padding: 60px 56px;
}
.ba-panel.before {
  background: linear-gradient(135deg, #0d0d0d, #111108);
}
.ba-panel.after {
  background: linear-gradient(135deg, #0d1108, #0d1108);
  border-left: 1px solid var(--color-border);
}
.ba-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 24px; display: flex; align-items: center; gap: 8px;
}
.ba-label.before-lbl { color: #555; }
.ba-label.before-lbl::before { content: ''; width: 20px; height: 1px; background: #555; }
.ba-label.after-lbl { color: var(--color-gold); }
.ba-label.after-lbl::before { content: ''; width: 20px; height: 1px; background: var(--color-gold); }
.ba-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; margin-bottom: 20px; line-height: 1.2; }
.ba-desc { font-size: 15px; color: var(--color-muted); line-height: 1.8; margin-bottom: 28px; }
.ba-visual {
  width: 100%; height: 200px; position: relative; overflow: hidden;
  background: #0a0a0a; border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
}

/* Map grid lines */
.map-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-pin-empty {
  width: 10px; height: 10px; background: #333; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(80,80,80,0.2);
}
.map-label-empty { font-size: 11px; color: #333; margin-top: 8px; text-align: center; letter-spacing: 0.04em; }
.map-pin-active {
  width: 14px; height: 14px; background: var(--color-gold); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212,175,55,0.2), 0 0 24px rgba(212,175,55,0.4);
  animation: pinPulse 2s ease infinite;
}
@keyframes pinPulse { 0%,100% { box-shadow: 0 0 0 4px rgba(212,175,55,0.2), 0 0 24px rgba(212,175,55,0.4); } 50% { box-shadow: 0 0 0 8px rgba(212,175,55,0.1), 0 0 40px rgba(212,175,55,0.6); } }
.map-label-active { font-size: 11px; color: var(--color-gold); margin-top: 8px; text-align: center; letter-spacing: 0.04em; }

/* Slider controls */
.ba-controls {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin-top: 0; border-top: 1px solid var(--color-border);
}
.ba-btn {
  flex: 1; padding: 16px; text-align: center; cursor: none;
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-muted); border: none; background: transparent;
  transition: all 0.3s ease;
}
.ba-btn.active { color: var(--color-gold); background: rgba(212,175,55,0.06); }
.ba-btn:first-child { border-right: 1px solid var(--color-border); }

/* Mapping detail cards */
.mapping-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--color-border); margin-top: 1px;
}
.mapping-card {
  background: var(--color-surface); padding: 40px 36px;
  transition: background 0.3s;
}
.mapping-card:hover { background: var(--color-surface2); }
.mc-number {
  font-family: 'Cormorant Garamond', serif; font-size: 64px;
  font-weight: 300; color: rgba(212,175,55,0.15); line-height: 1;
  margin-bottom: 16px;
}
.mc-title { font-size: 15px; font-weight: 600; color: var(--color-text); margin-bottom: 10px; }
.mc-desc { font-size: 13px; color: var(--color-muted); line-height: 1.75; }

/* ═══════════════════════════════════════
   SECTION 4 — AUDITORÍA INTEGRAL
═══════════════════════════════════════ */
.audit-section { padding: 160px 0; }
.audit-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.audit-header { margin-bottom: 80px; max-width: 640px; }
.audit-header h2 { font-size: clamp(42px, 5vw, 64px); line-height: 1.05; margin-bottom: 24px; }
.audit-header p { font-size: 16px; color: var(--color-muted); line-height: 1.85; }

.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid var(--color-border);
}
.pillar {
  padding: 56px 48px; border-right: 1px solid var(--color-border);
  position: relative; overflow: hidden; transition: background 0.4s;
}
.pillar:last-child { border-right: none; }
.pillar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.pillar:hover { background: rgba(212,175,55,0.03); }
.pillar:hover::before { opacity: 1; }

.pillar-icon {
  width: 48px; height: 48px; border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px; transition: border-color 0.3s;
}
.pillar:hover .pillar-icon { border-color: rgba(212,175,55,0.3); }
.pillar-icon svg { stroke: var(--color-gold); }
.pillar-num {
  font-family: 'Cormorant Garamond', serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-gold);
  margin-bottom: 16px;
}
.pillar h3 { font-size: 26px; font-weight: 300; margin-bottom: 20px; line-height: 1.2; }
.pillar p { font-size: 14px; color: var(--color-muted); line-height: 1.8; margin-bottom: 16px; }
.pillar ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pillar ul li {
  font-size: 13px; color: var(--color-muted); padding-left: 16px; position: relative; line-height: 1.5;
}
.pillar ul li::before { content: '—'; position: absolute; left: 0; color: var(--color-gold); opacity: 0.6; }

/* Process line */
.process-line {
  display: flex; align-items: center; margin-top: 80px;
  border: 1px solid var(--color-border); background: var(--color-surface);
}
.process-step {
  flex: 1; padding: 36px 32px; border-right: 1px solid var(--color-border);
  display: flex; align-items: flex-start; gap: 20px;
}
.process-step:last-child { border-right: none; }
.ps-num {
  font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300;
  color: var(--color-gold); opacity: 0.4; flex-shrink: 0; line-height: 1;
}
.ps-content h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.ps-content p { font-size: 13px; color: var(--color-muted); line-height: 1.6; }

/* ═══════════════════════════════════════
   SECTION 5 — ERA IA
═══════════════════════════════════════ */
.ia-section {
  padding: 160px 0; background: var(--color-surface);
  position: relative; overflow: hidden;
}
/* Subtle grid background */
.ia-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.ia-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 1; }
.ia-top { text-align: center; margin-bottom: 80px; }
.ia-top h2 { font-size: clamp(42px, 5vw, 72px); line-height: 1.05; margin-bottom: 24px; }
.ia-top p { font-size: 16px; color: var(--color-muted); line-height: 1.85; max-width: 700px; margin: 0 auto; }

/* AI model cards */
.ai-models {
  display: flex; gap: 16px; justify-content: center; margin-bottom: 80px;
  flex-wrap: wrap;
}
.ai-model {
  border: 1px solid var(--color-border); padding: 16px 28px;
  background: rgba(255,255,255,0.02);
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--color-muted); text-transform: uppercase;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.ai-model::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--color-gold); transform: scaleX(0); transition: transform 0.3s ease;
}
.ai-model:hover { color: var(--color-text); border-color: rgba(212,175,55,0.2); background: rgba(212,175,55,0.04); }
.ai-model:hover::before { transform: scaleX(1); }

/* IA two-col layout */
.ia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ia-left h3 { font-size: 36px; font-weight: 300; margin-bottom: 24px; line-height: 1.2; }
.ia-left p { font-size: 15px; color: var(--color-muted); line-height: 1.85; margin-bottom: 20px; }

/* AI signal animation */
.ia-terminal {
  background: #0a0a0a; border: 1px solid var(--color-border);
  padding: 28px 32px; font-family: 'Courier New', monospace;
}
.term-bar {
  display: flex; gap: 6px; margin-bottom: 20px; align-items: center;
}
.term-dot { width: 10px; height: 10px; border-radius: 50%; }
.term-dot.r { background: #3a3a3a; }
.term-dot.y { background: #3a3a3a; }
.term-dot.g { background: #3a3a3a; }

/* CORRECCIÓN: Estilos base para la terminal */
.term-line {
  font-size: 13px; line-height: 2; color: #444;
  opacity: 0; transition: opacity 0.4s ease; /* Se oculta desde el inicio vía CSS para evitar flasheos */
}
.term-line.active { color: #ccc; }
.term-line.gold { color: var(--color-gold); }
.term-prompt { color: #555; }
.term-cursor {
  display: inline-block; width: 8px; height: 14px;
  background: var(--color-gold); vertical-align: middle;
  animation: blink 1.2s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.ia-facts { list-style: none; display: flex; flex-direction: column; gap: 0; }
.ia-fact {
  padding: 20px 0; border-bottom: 1px solid var(--color-border);
  display: flex; gap: 16px; align-items: flex-start;
}
.ia-fact:first-child { padding-top: 0; }
.if-num {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300;
  color: var(--color-gold); min-width: 56px; line-height: 1;
}
.if-text { font-size: 13px; color: var(--color-muted); line-height: 1.7; }
.if-text strong { color: var(--color-text); display: block; margin-bottom: 3px; font-size: 14px; }

/* ═══════════════════════════════════════
   SECTION 6 — CTA FINAL
═══════════════════════════════════════ */
.cta-section {
  padding: 180px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 10; max-width: 800px; margin: 0 auto; padding: 0 48px; }
.cta-h2 {
  font-size: clamp(40px, 6vw, 82px); line-height: 1.05;
  margin-bottom: 28px; letter-spacing: -0.02em;
}
.cta-h2 em { font-style: italic; color: var(--color-gold); }
.cta-sub {
  font-size: 16px; color: var(--color-muted); line-height: 1.85;
  max-width: 580px; margin: 0 auto 56px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface); padding: 80px 0 40px;
}
#web-particles {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
  opacity: 0.75; mix-blend-mode: screen;
}

.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--color-gold); margin-bottom: 20px; }
.footer-tagline { font-size: 13px; color: var(--color-muted); line-height: 1.8; margin-bottom: 24px; }
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--color-gold);
  border: 1px solid rgba(212,175,55,0.2); padding: 10px 16px;
  transition: background 0.3s; width: fit-content;
}
.footer-wa:hover { background: var(--color-gold-glow); }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--color-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--color-text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--color-border);
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 12px; color: var(--color-muted2); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--color-muted2); transition: color 0.2s; }
.footer-legal a:hover { color: var(--color-muted); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .advantage-grid { grid-template-columns: 1fr; gap: 60px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--color-border); }
  .pillar:last-child { border-bottom: none; }
  .ia-grid { grid-template-columns: 1fr; gap: 48px; }
  .mapping-cards { grid-template-columns: 1fr; }
  .process-line { flex-direction: column; }
  .process-step { border-right: none; border-bottom: 1px solid var(--color-border); }
  .process-step:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .container, .advantage-grid, .mapping-inner, .audit-inner, .ia-inner, .cta-inner { padding: 0 24px; }
  nav .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 100px 0; }
  .advantage-section, .mapping-section, .audit-section, .ia-section, .cta-section { padding: 100px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-h1 { font-size: 52px; }
  .ba-panel { padding: 40px 28px; }
}
