/* ══════════════════════════════════════════════════════════════
   DUDUAUTO VENEZUELA — DESIGN SYSTEM
   White Premium · Barlow Condensed · v2.0 · 2026
   ══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* ── Light Theme Colors ── */
  --c-bg:          #ffffff;          /* main white sections */
  --c-bg-2:        #f5f5f7;          /* alternate gray sections (Apple-style) */
  --c-bg-card:     rgba(0,0,0,0.03);
  --c-bg-card-h:   rgba(0,0,0,0.055);
  --c-dark:        #06070c;          /* hero / showcase / footer stay dark */
  --c-dark-2:      #0a0c14;

  /* ── Accent Colors (adjusted for light bg) ── */
  --c-blue:        #0066ff;
  --c-blue-dim:    rgba(0,102,255,0.07);
  --c-blue-mid:    rgba(0,102,255,0.14);
  --c-blue-glow:   rgba(0,102,255,0.22);
  --c-gold:        #e08b00;
  --c-gold-dim:    rgba(224,139,0,0.09);
  --c-purple:      #6d28d9;
  --c-purple-dim:  rgba(109,40,217,0.09);

  /* ── Text Colors ── */
  --c-white:       #0a0a0a;          /* primary text (was white, now near-black) */
  --c-off-white:   #1d1d1f;          /* Apple's main text dark */
  --c-muted:       #6e6e73;          /* Apple's secondary gray */
  --c-muted-light: #86868b;

  /* ── Borders ── */
  --c-border:      rgba(0,0,0,0.08);
  --c-border-glow: rgba(0,102,255,0.2);

  /* ── Dark-section text (hero/showcase) ── */
  --c-dark-text:       #ffffff;
  --c-dark-muted:      #8892a4;
  --c-dark-border:     rgba(255,255,255,0.07);
  --c-dark-card:       #0e1018;

  /* Fonts */
  --f-head:  'Barlow Condensed', system-ui, sans-serif;
  --f-body:  'Inter', system-ui, sans-serif;
  --f-mono:  'Space Mono', monospace;

  /* Sizing */
  --radius:    14px;
  --radius-sm: 8px;
  --radius-xs: 5px;

  /* Spacing */
  --section-gap: clamp(80px, 10vw, 140px);
  --container:   1240px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1.0);
  --t-fast: 0.2s;
  --t-mid:  0.4s;
  --t-slow: 0.7s;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-off-white);
  line-height: 1.6;
  overflow-x: clip;   /* clip ≠ hidden — does NOT break position:sticky */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Sections that alternate gray */
#stats, #catalogo, #galeria { background: var(--c-bg-2); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
em { font-style: italic; color: var(--c-blue); }

/* ─── REVEAL ANIMATION ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Safety: if JS fails, content must still be visible */
.reveal[data-split] { opacity: 1; transform: none; }

/* ─── CONTAINER ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ─── SECTION COMMON ─────────────────────────────────────────── */
section { padding: var(--section-gap) 0; position: relative; overflow: hidden; }
/* Showcase needs visible overflow so position:sticky works */
#showcase { overflow: visible; padding: 0; background: var(--c-dark); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--c-blue);
}

.section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2, .section-head .reveal { margin-bottom: 12px; }
.section-sub {
  color: var(--c-muted-light);
  font-size: clamp(15px, 1.8vw, 18px);
  max-width: 520px;
}
.text-center { text-align: center; }
.text-center .section-tag { justify-content: center; margin: 0 auto 16px; }
.text-center .section-sub { margin: 0 auto; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-head);
  line-height: 1.1;
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
h2 { font-size: clamp(32px, 5vw, 62px); font-weight: 800; }
h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; margin-bottom: 10px; }
p  { color: var(--c-muted); font-size: clamp(14px, 1.6vw, 16px); }
.muted { color: var(--c-muted); }

/* Dark sections restore light text */
#showcase h1, #showcase h2, #showcase h3, #showcase h4,
footer h1, footer h2, footer h3, footer h4 {
  color: var(--c-dark-text);
}
#showcase p { color: var(--c-dark-muted); }
/* Hero is now light — use dark text */
#hero h1, #hero h2, #hero h3, #hero h4 { color: #0a1628; }
#hero p { color: var(--c-muted); }

/* em (accent words) stay brand-blue */
em { font-style: normal; color: var(--c-blue); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--t-mid) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
}
.btn--primary {
  background: var(--c-blue);
  color: var(--c-bg);
}
.btn--primary::after {
  background: rgba(255,255,255,0.15);
}
.btn--primary:hover::after { opacity: 1; }
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--c-off-white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover {
  border-color: var(--c-blue);
  color: var(--c-blue);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  padding: 16px 32px;
  font-size: 16px;
}
.btn--whatsapp .wa-icon { width: 22px; height: 22px; }
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  background: #20bf5a;
}

/* ─── VIDEO INTRO SPLASH ─────────────────────────────────────── */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#splash.splash--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.spl-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 900px;
  max-height: 80vh;
}
.spl-skip-btn {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.18);
  color: #888;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: splashFadeIn 0.4s ease forwards 1.0s;
  transition: color 0.2s, border-color 0.2s;
}
.spl-skip-btn:hover { color: #333; border-color: rgba(0,0,0,0.4); }

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

/* ─── NAVIGATION ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--t-mid) var(--ease), padding var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease), backdrop-filter var(--t-mid) var(--ease);
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom-color: var(--c-border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo-du   { color: var(--c-blue); }
.logo-auto { color: var(--c-white); }
.logo-region {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--c-muted);
  margin-left: 6px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted-light);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--c-white); background: rgba(0,0,0,0.05); }
.nav-cta-link {
  background: var(--c-blue-dim) !important;
  color: var(--c-blue) !important;
  border: 1px solid var(--c-border-glow) !important;
}
.nav-cta-link:hover {
  background: var(--c-blue) !important;
  color: #ffffff !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-off-white);
  border-radius: 2px;
  transition: all var(--t-mid) var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ───────────────────────────────────────────────────── */
/* Hero stays cinematic dark — the contrast punch before white sections */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
  background: #ffffff;
  color: #0a1628;
}
#hero .hero-sub       { color: #4a5568; }
#hero .hero-eyebrow   { border-color: rgba(0,102,255,0.25); background: rgba(0,102,255,0.07); color: var(--c-blue); }
#hero .btn--ghost     { border-color: rgba(10,22,40,0.22); color: #0a1628; }
#hero .btn--ghost:hover { border-color: var(--c-blue); color: var(--c-blue); }
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
}
/* ─── Ambient orbs on white ─── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 9s ease-in-out infinite alternate;
}
.orb--blue  {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,102,255,0.13) 0%, rgba(0,102,255,0.04) 60%, transparent 100%);
  top: -160px; right: -160px;
  animation-delay: 0s;
}
.orb--purple {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(109,40,217,0.1) 0%, rgba(109,40,217,0.03) 60%, transparent 100%);
  bottom: -120px; left: -120px;
  animation-delay: -3.5s;
}
.orb--gold {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(0,212,255,0.09) 0%, rgba(0,212,255,0.02) 60%, transparent 100%);
  top: 38%; left: 38%;
  animation-delay: -6s;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(35px, 25px) scale(1.08); }
}
/* ─── Owl watermark (fondo tech de marca) ─── */
.hero-owl {
  position: absolute;
  top: 46%;
  left: -6%;
  transform: translateY(-50%);
  width: clamp(420px, 46vw, 760px);
  height: auto;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  filter: blur(0.5px);
  animation: owlFloat 12s ease-in-out infinite alternate;
}
@keyframes owlFloat {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-54%) rotate(-3deg); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-content { max-width: 540px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 20px;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--c-border-glow);
  border-radius: 100px;
  background: var(--c-blue-dim);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-blue);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.hero-h1 {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* "Pantallas" — kicker en tipografía heading */
.hero-kicker {
  font-family: var(--f-head);
  font-size: clamp(30px, 4.6vw, 58px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
  color: #0a1628;
  text-transform: uppercase;
}
/* "DuduAuto" — wordmark de marca, tipografía Chakra Petch azul */
.hero-brand {
  font-family: 'Chakra Petch', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(42px, 7.4vw, 96px);
  line-height: 0.9;
  letter-spacing: 0.003em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(118deg, #1e5fd8 0%, #3b8dff 45%, #6cb2ff 70%, #1e5fd8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 6px 24px rgba(37,99,235,0.18));
}
.hero-tagline {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  color: #1a2433;
  line-height: 1.45;
  margin-bottom: 14px;
}
.tag-accent {
  color: var(--c-blue);
  font-weight: 600;
}
.hero-sub {
  font-size: clamp(14px, 1.7vw, 17px);
  color: #5a6678;
  line-height: 1.7;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero product mockup */
.hero-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hm-unit {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  animation: hmFloat 6s ease-in-out infinite;
}
@keyframes hmFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Knobs */
.hm-knob {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a2d3a, #12141c);
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}
.hm-knob-ring {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,212,255,0.25);
  position: absolute;
}
.hm-knob-center {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--c-muted);
  z-index: 1;
}

/* Screen */
.hm-screen-wrap {
  width: clamp(360px, 50vw, 640px);
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(0,102,255,0.3);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12),
              0 0 60px rgba(0,102,255,0.2),
              0 30px 80px rgba(0,0,0,0.22),
              inset 0 0 0 1px rgba(255,255,255,0.06);
  z-index: 1;
}
.hm-screen-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hm-statusbar {
  background: #050710;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hm-time {
  font-family: var(--f-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.6);
}
.hm-statusicons { display: flex; gap: 4px; align-items: center; }
.hm-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.hm-dot--on { background: var(--c-blue); box-shadow: 0 0 4px var(--c-blue); }
.hm-content {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  overflow: hidden;
}
.hm-maps {
  background: #0d1520;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.hm-map-road {
  position: absolute;
  width: 200%;
  height: 2px;
  background: rgba(0,212,255,0.3);
  top: 45%;
  left: -20%;
  transform: rotate(-12deg);
}
.hm-map-road--2 {
  background: rgba(255,255,255,0.12);
  top: 60%;
  transform: rotate(-5deg);
}
.hm-map-pin {
  position: absolute;
  top: 35%; left: 42%;
  width: 10px; height: 10px;
}
.hm-map-pin::before {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50% 50% 50% 0;
  background: var(--c-blue);
  top: 0; left: 50%;
  transform: rotate(-45deg) translateX(-50%);
  box-shadow: 0 0 8px var(--c-blue);
}
.hm-pin-pulse {
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--c-blue);
  top: -5px; left: -5px;
  animation: pinPulse 2s ease-out infinite;
  opacity: 0.5;
}
@keyframes pinPulse {
  0%   { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}
.hm-map-label {
  position: absolute;
  bottom: 4px; left: 6px;
  font-family: var(--f-mono);
  font-size: 7px;
  color: rgba(255,255,255,0.4);
}
.hm-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hm-video-frame {
  flex: 1;
  background: #151825;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.hm-video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1f30, #0d1020);
}
.hm-play-btn {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hm-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent rgba(255,255,255,0.7);
  margin-left: 2px;
}
.hm-music {
  flex: 1;
  background: #0f1220;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
}
.hm-album-art {
  width: 24px; height: 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-purple));
  flex-shrink: 0;
}
.hm-song-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.hm-song-bar {
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  width: 100%;
}
.hm-song-bar--short { width: 60%; background: var(--c-blue); opacity: 0.5; }
.hm-taskbar {
  background: #050610;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hm-tb-btn {
  font-size: 8px;
  color: rgba(255,255,255,0.4);
  padding: 4px;
  border-radius: 3px;
  transition: color 0.2s;
  cursor: default;
}
.hm-tb-btn--home { color: rgba(255,255,255,0.6); }
.hm-tb-sep {
  flex: 1;
}
.hm-tb-app {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
}
.hm-tb-app--active { background: var(--c-blue); opacity: 0.4; }
.hm-scanline {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.15), transparent);
  animation: scanline 4s linear infinite;
  pointer-events: none;
}
@keyframes scanline {
  from { top: 0; }
  to   { top: 100%; }
}

/* Glow + reflection */
.hm-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hm-reflection {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.18), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}
.hm-badge {
  position: absolute;
  top: -12px;
  right: 60px;
  background: var(--c-gold);
  color: var(--c-bg);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  color: var(--c-muted);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: splashFadeIn 0.8s ease forwards 3.2s;
}
.scroll-line {
  width: 1px; height: 50px;
  background: rgba(0,102,255,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  position: absolute;
  top: -8px;
  left: -2px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-blue);
  animation: scrollDot 2s ease-in-out infinite 3.5s;
  box-shadow: 0 0 6px var(--c-blue);
}
@keyframes scrollDot {
  0%   { top: -8px; opacity: 1; }
  80%  { top: 50px; opacity: 1; }
  100% { top: 50px; opacity: 0; }
}

/* ─── STATS ──────────────────────────────────────────────────── */
#stats {
  padding: 40px 0;
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  overflow: visible;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
}
.stat-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}
.stat-num {
  font-family: var(--f-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-suffix, .stat-text {
  font-family: var(--f-head);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--c-blue);
  letter-spacing: -0.02em;
}
.stat-text { color: var(--c-gold); }
.stat-badge-text {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  border-radius: 100px;
  padding: 4px 12px;
}
.stat-label {
  font-size: 12px;
  color: var(--c-muted);
  font-family: var(--f-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--c-border);
}

/* ─── SOBRE ──────────────────────────────────────────────────── */
#sobre {
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
#sobre .section-head { max-width: 720px; }
#sobre .features-grid { margin-bottom: clamp(28px, 4vw, 48px); }

/* ─── Franja de garantías de marca ─── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
  background: linear-gradient(135deg, rgba(0,102,255,0.05), rgba(109,40,217,0.04));
  border: 1px solid var(--c-border-glow);
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.trust-ic {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--c-blue-dim);
  border: 1px solid var(--c-border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
}
.trust-ic svg { width: 22px; height: 22px; }
.trust-tx { display: flex; flex-direction: column; gap: 3px; }
.trust-tx strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-dark);
  letter-spacing: -0.01em;
}
.trust-tx span {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--c-muted-light);
}
.sobre-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

/* ─── Búhos flotantes ─── */
.float-owl {
  position: absolute;
  width: 50px;
  height: auto;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.float-owl--1 {
  top: 8%; left: 4%;
  width: 44px;
  animation: floatOwlA 9s ease-in-out infinite;
}
.float-owl--2 {
  top: 34%; right: 5%;
  width: 66px; opacity: 0.09;
  animation: floatOwlB 13s ease-in-out infinite;
}
.float-owl--3 {
  bottom: 12%; left: 9%;
  width: 36px; opacity: 0.14;
  animation: floatOwlA 7.5s ease-in-out infinite reverse;
}
@keyframes floatOwlA {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-26px) rotate(6deg); }
}
@keyframes floatOwlB {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50%      { transform: translateY(-34px) rotate(-5deg); }
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.sobre-text h2 { margin-bottom: 16px; }
.sobre-text > p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
  color: var(--c-muted-light);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--c-muted-light);
}
.fl-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,212,255,0.1);
  color: var(--c-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}
.sobre-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ── Vertical video embed ── */
.sobre-video-wrap {
  width: clamp(220px, 22vw, 300px);
  aspect-ratio: 9 / 16;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0,102,255,0.25);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 50px rgba(0,102,255,0.22),
    0 30px 80px rgba(0,0,0,0.18);
  animation: hmFloat 7s ease-in-out infinite;
}
.sobre-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.sobre-screen {
  /* kept for legacy but hidden — replaced by video */
  display: none;
}
.sobre-screen-header {
  background: #080a10;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--c-border);
}
.sobre-screen-logo {
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-white);
}
.sobre-screen-badge {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--c-bg);
  background: var(--c-gold);
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 700;
}
.sobre-screen-body {
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-around;
}
.sobre-screen-stat { text-align: center; }
.s-num {
  display: block;
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-blue);
  margin-bottom: 2px;
}
.s-lbl {
  font-family: var(--f-mono);
  font-size: 8px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sobre-screen-bar {
  height: 3px;
  background: rgba(255,255,255,0.05);
  margin: 0 14px;
  border-radius: 2px;
  overflow: hidden;
}
.sobre-bar-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--c-blue), var(--c-purple));
  border-radius: 2px;
}
.sobre-screen-tagline {
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 7px;
  letter-spacing: 0.2em;
  color: var(--c-muted);
  text-transform: uppercase;
  border-top: 1px solid var(--c-border);
}
.sobre-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── FEATURES ───────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color var(--t-mid) var(--ease),
              transform var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-purple));
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
}
.feature-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,102,255,0.1);
}
.feature-card:hover::before { opacity: 1; }
.fc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--c-blue-dim);
  border: 1px solid var(--c-border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--t-mid), border-color var(--t-mid);
}
.feature-card:hover .fc-icon-wrap {
  background: var(--c-blue-mid);
  border-color: rgba(0,212,255,0.4);
}
.fc-icon {
  width: 26px; height: 26px;
  color: var(--c-blue);
}
.feature-card h3 { margin-bottom: 10px; font-size: 18px; }
.feature-card p { font-size: 14px; line-height: 1.65; }

/* ─── CATÁLOGO ───────────────────────────────────────────────── */
#catalogo { background: var(--c-bg); }
.catalog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted-light);
  border: 1px solid var(--c-border);
  background: transparent;
  transition: all var(--t-fast);
}
.filter-btn:hover {
  border-color: var(--c-border-glow);
  color: var(--c-white);
}
.filter-btn.active {
  background: var(--c-blue);
  color: var(--c-bg);
  border-color: var(--c-blue);
  font-weight: 600;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}

/* Product Card */
.product-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t-mid) var(--ease),
              transform var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
  display: flex;
  flex-direction: column;
  animation: cardFadeIn 0.4s ease forwards;
  opacity: 0;
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,102,255,0.08);
}

/* Mini screen mockup inside card */
/* ── Product card — real image wrapper ──────────────────────── */
.pc-img-wrap {
  position: relative;
  background: #f5f5f7;
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}
.pc-prod-img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s var(--ease);
}
.product-card:hover .pc-prod-img {
  transform: scale(1.04);
}
.pc-prod-placeholder {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #0a1020 0%, #0d1530 100%);
}
.pc-prod-placeholder span {
  font-family: var(--f-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--c-blue);
}
/* Badge overlaid on image */
.pc-top-badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 1;
  font-family: var(--f-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--c-blue);
  padding: 3px 8px;
  border-radius: 100px;
}

/* Card body */
.pc-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pc-name {
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.pc-vehicle {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.pc-specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.pc-spec {
  font-family: var(--f-mono);
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid var(--c-border);
  color: var(--c-muted-light);
  background: rgba(255,255,255,0.03);
}
.pc-spec--ram    { border-color: rgba(0,212,255,0.25);  color: var(--c-blue); }
.pc-spec--360    { border-color: rgba(124,58,237,0.3);  color: #a78bfa; }
.pc-spec--no360  { border-color: rgba(148,163,184,0.25); color: #94a3b8; }
.pc-spec--top    { border-color: rgba(245,166,35,0.3);  color: var(--c-gold); }
.pc-spec--vehicle { border-color: rgba(34,197,94,0.3); color: #86efac; }
.pc-spec--bezel  { border-color: rgba(203,213,225,0.2); color: #cbd5e1; }
.pc-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
}
.pc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-blue);
  transition: gap var(--t-fast), color var(--t-fast);
  font-family: var(--f-head);
}
.pc-cta::after { content: '→'; transition: transform var(--t-fast); }
.product-card:hover .pc-cta { gap: 10px; }
.product-card:hover .pc-cta::after { transform: translateX(2px); }

/* ─── VEHICLES ───────────────────────────────────────────────── */
#vehiculos { background: var(--c-bg-2); }
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 14px;
}
.vehicle-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 16px 24px;
  text-align: center;
  cursor: default;
  transition: border-color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
  position: relative;
  overflow: hidden;
}
.vehicle-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,212,255,0.05), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-mid);
}
.vehicle-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.vehicle-card:hover::after { opacity: 1; }
.vehicle-card--universal {
  border-color: rgba(245,166,35,0.2);
}
.vehicle-card--universal:hover {
  border-color: rgba(245,166,35,0.4);
  box-shadow: 0 12px 30px rgba(245,166,35,0.1);
}
.vc-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--c-blue);
  background: var(--c-blue-dim);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 2px 7px;
  border-radius: 100px;
}
.vc-badge--gold {
  color: var(--c-gold);
  background: var(--c-gold-dim);
  border-color: rgba(245,166,35,0.2);
}
.vc-icon {
  margin: 0 auto 16px;
  width: 80%;
  max-width: 80px;
  color: var(--c-muted);
  transition: color var(--t-mid);
}
.vehicle-card:hover .vc-icon { color: var(--c-blue); }
.vehicle-card--universal:hover .vc-icon { color: var(--c-gold); }
.vc-name {
  display: block;
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 4px;
}
.vc-sub {
  display: block;
  font-size: 11px;
  color: var(--c-muted);
  font-family: var(--f-mono);
}

/* ─── GALLERY ────────────────────────────────────────────────── */
#galeria { background: var(--c-bg-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-bottom: 24px;
}
.gi { border-radius: var(--radius); overflow: hidden; }
.gi--tall { grid-row: span 2; }
.gi--wide { grid-column: span 2; }
.gi-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-slow) var(--ease);
  cursor: pointer;
}
.gi--tall .gi-img { min-height: 460px; }
.gi--wide .gi-img { min-height: 220px; }
.gi:hover .gi-img { transform: scale(1.03); }

/* Gallery image placeholders — premium vivid gradients */
.gi-img--1 { background: linear-gradient(140deg, #001d3d 0%, #003566 40%, #0a3d6e 70%, #001529 100%); }
.gi-img--2 { background: linear-gradient(140deg, #10002b 0%, #3c096c 45%, #240046 75%, #10002b 100%); }
.gi-img--3 { background: linear-gradient(140deg, #012a36 0%, #014f6e 40%, #013a52 70%, #00171f 100%); }
.gi-img--4 { background: linear-gradient(140deg, #001529 0%, #003566 35%, #0077b6 60%, #001d3d 100%); }
.gi-img--5 { background: linear-gradient(140deg, #1a0a00 0%, #7c3a00 45%, #4d2600 75%, #1a0a00 100%); }
.gi-img--6 { background: linear-gradient(140deg, #001029 0%, #002855 45%, #001f40 75%, #000d1a 100%); }

/* Glow accent per tile */
.gi-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(0,150,255,0.22), transparent 65%);
  pointer-events: none;
}
.gi-img--2::before { background: radial-gradient(ellipse at 50% 20%, rgba(140,60,240,0.28), transparent 65%); }
.gi-img--3::before { background: radial-gradient(ellipse at 50% 20%, rgba(0,200,220,0.22), transparent 65%); }
.gi-img--5::before { background: radial-gradient(ellipse at 50% 20%, rgba(255,140,0,0.22), transparent 65%); }
.gi-img--6::before { background: radial-gradient(ellipse at 50% 20%, rgba(0,120,255,0.2), transparent 65%); }

/* Screen mockup inside each tile */
.gi-img::after {
  content: '';
  position: absolute;
  top: 44%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  aspect-ratio: 16/9;
  border: 1px solid rgba(0,180,255,0.35);
  border-radius: 8px;
  background: rgba(0,30,60,0.55);
  box-shadow: 0 0 32px rgba(0,150,255,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.gi-img--2::after { border-color: rgba(160,80,255,0.35); background: rgba(30,0,60,0.55); box-shadow: 0 0 32px rgba(140,60,240,0.2), inset 0 1px 0 rgba(255,255,255,0.06); }
.gi-img--3::after { border-color: rgba(0,200,220,0.35); background: rgba(0,30,40,0.55); box-shadow: 0 0 32px rgba(0,200,220,0.18), inset 0 1px 0 rgba(255,255,255,0.06); }
.gi-img--5::after { border-color: rgba(255,140,0,0.35);  background: rgba(40,20,0,0.55);  box-shadow: 0 0 32px rgba(255,140,0,0.18),  inset 0 1px 0 rgba(255,255,255,0.06); }
.gi-img--6::after { border-color: rgba(0,160,255,0.35);  background: rgba(0,20,50,0.55);  box-shadow: 0 0 32px rgba(0,160,255,0.2),   inset 0 1px 0 rgba(255,255,255,0.06); }

.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  opacity: 0.85;
  transition: opacity var(--t-mid) var(--ease);
}
.gi:hover .gi-overlay { opacity: 1; }
.gi-overlay span {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.gallery-note {
  font-size: 15px;
  color: var(--c-muted-light);
}
.gallery-note a {
  color: var(--c-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.gallery-note a:hover { color: var(--c-white); }

/* ─── CONTACT ────────────────────────────────────────────────── */
#contacto {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.contact-text h2 { margin-bottom: 16px; }
.contact-desc {
  font-size: 16px;
  color: var(--c-muted-light);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-actions { margin-bottom: 32px; }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ci-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-muted-light);
}
.ci-icon { font-size: 16px; }

/* Contact card */
.contact-visual { position: relative; }
.contact-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-glow);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-purple), var(--c-gold));
}
.cc-logo {
  font-family: var(--f-head);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.cc-du   { color: var(--c-blue); }
.cc-auto { color: var(--c-white); }
.cc-sub {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  display: block;
  margin-bottom: 20px;
}
.cc-divider {
  height: 1px;
  background: var(--c-border);
  margin-bottom: 20px;
}
.cc-headline {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 4px;
}
.cc-region {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--c-gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.cc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.cc-tags span {
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--c-border-glow);
  color: var(--c-blue);
  background: var(--c-blue-dim);
}
.cc-footer {
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}
.cc-available {
  font-size: 12px;
  color: #4ade80;
  font-family: var(--f-mono);
}
.contact-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.08), transparent 70%);
  pointer-events: none;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
#footer {
  background: var(--c-dark);           /* footer stays dark */
  padding: 60px 0 30px;
  color: var(--c-dark-muted);
  position: relative;
}
/* Difuminado: contacto gris → footer oscuro */
#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14vh;
  background: linear-gradient(to bottom,
    var(--c-bg-2) 0%,
    rgba(6,7,12,0) 100%);
  pointer-events: none;
  z-index: 1;
}
#footer > .container { position: relative; z-index: 2; }
#footer .footer-brand p  { color: rgba(255,255,255,0.45); }
#footer .footer-col h4   { color: rgba(255,255,255,0.35); }
#footer .footer-col a    { color: rgba(255,255,255,0.5); }
#footer .footer-col a:hover { color: var(--c-blue); }
#footer .footer-bottom   {
  border-top-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.3);
}
#footer .nav-logo-img    { filter: brightness(0) invert(1); }
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--c-muted);
  font-size: 13px;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-logo { margin-bottom: 4px; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 16px;
  font-family: var(--f-mono);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: var(--c-muted-light);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--c-blue); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--c-muted);
  font-family: var(--f-mono);
}

/* ─── WHATSAPP FLOAT (dos vendedores) ───────────────────────── */
.whatsapp-float-group {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.whatsapp-float {
  position: relative;          /* override old fixed — group handles position */
  width: auto;
  height: 52px;
  border-radius: 50px;
  background: #25d366;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 0 14px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
  text-decoration: none;
  color: #fff;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.whatsapp-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.wf-label { line-height: 1; }
.whatsapp-float:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
/* Second button slightly muted to let Pablo lead */
.wf-carlos {
  opacity: 0.88;
  background: #1da851;
}
.wf-carlos:hover { opacity: 1; }
.wa-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50px;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ─── CONTACT WA GROUP (sección contacto) ────────────────────── */
.contact-wa-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn--whatsapp-sec {
  background: rgba(37,211,102,0.12) !important;
  color: #25d366 !important;
  border: 1px solid rgba(37,211,102,0.35) !important;
}
.btn--whatsapp-sec:hover {
  background: rgba(37,211,102,0.2) !important;
}
/* Instagram link in contact */
.ci-item a {
  color: var(--c-blue);
  text-decoration: none;
  transition: color 0.2s;
}
.ci-item a:hover { color: #fff; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .vehicles-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .vehicles-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-eyebrow { justify-content: center; width: fit-content; margin: 0 auto 20px; }
  .hero-ctas { justify-content: center; }
  .hero-mockup { order: -1; margin: 0 auto; }
  .hm-unit { transform: scale(0.85); }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-visual { order: -1; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gi--tall { grid-row: span 1; }
  .gi--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,7,12,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-mid) var(--ease);
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { font-size: 22px; padding: 12px 24px; }
  .nav-hamburger { display: flex; position: relative; z-index: 1001; }
  .stat-divider { display: none; }
  .stats-grid { gap: 4px; }
  .stat-item { padding: 14px 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gi--tall, .gi--wide { grid-row: span 1; grid-column: span 1; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .hm-unit { transform: scale(0.7); transform-origin: center; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(32px, 10vw, 48px); }
  .vehicles-grid { grid-template-columns: 1fr 1fr; }
  .contact-card { padding: 24px 20px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .hero-mockup { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   SCROLLYTELLING SHOWCASE  — Nitto-style pinned section
   ══════════════════════════════════════════════════════════════ */

/* Outer section: tall enough for 4 scroll steps */
#showcase {
  height: 500vh;
  position: relative;
  background: var(--c-dark);   /* showcase stays cinematic dark */
  color: var(--c-dark-text);
}
/* ─── Difuminado en las uniones (blanco→oscuro / oscuro→gris) ─── */
#showcase::before,
#showcase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 18vh;
  z-index: 5;
  pointer-events: none;
}
/* Unión superior: hero blanco → showcase oscuro */
#showcase::before {
  top: 0;
  background: linear-gradient(to bottom,
    var(--c-bg) 0%,
    rgba(6,7,12,0) 100%);
}
/* Unión inferior: showcase oscuro → stats gris claro */
#showcase::after {
  bottom: 0;
  background: linear-gradient(to top,
    var(--c-bg-2) 0%,
    rgba(6,7,12,0) 100%);
}

/* The sticky container — always 100vh, pinned to top */
.sc-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  grid-template-rows: 1fr;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* ─── BACKGROUND ─────────────────────────────────────────── */
.sc-bg {
  position: absolute;
  inset: 0;
  background: var(--c-dark);
  transition: background 1s var(--ease);
  z-index: 0;
}
/* Subtle color accents on dark — replace c-bg references with c-dark */
.sc-bg.s1 { background: radial-gradient(ellipse 80% 70% at 65% 55%, rgba(124,58,237,0.18) 0%, var(--c-dark) 70%); }
.sc-bg.s2 { background: radial-gradient(ellipse 80% 70% at 65% 55%, rgba(245,166,35,0.14) 0%, var(--c-dark) 70%); }
.sc-bg.s3 { background: radial-gradient(ellipse 80% 70% at 65% 55%, rgba(239,68,68,0.14) 0%, var(--c-dark) 70%); }

/* Top floating label */
.sc-header {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.sc-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ─── LEFT PANEL — FEATURE TEXT ──────────────────────────── */
.sc-left {
  position: relative;
  z-index: 2;
  padding: 0 40px 0 clamp(24px, 5vw, 80px);
  height: 100%;
  display: flex;
  align-items: center;
}

.sc-step {
  position: absolute;
  left: clamp(24px, 5vw, 80px);
  right: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
}
.sc-step.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sc-step-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--c-blue);
  margin-bottom: 20px;
  opacity: 0.7;
}

.sc-step-title {
  font-family: var(--f-head);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--c-white);
  margin-bottom: 22px;
}

.sc-step-desc {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--c-muted-light);
  line-height: 1.72;
  max-width: 420px;
  margin-bottom: 28px;
}

.sc-step-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 380px;
}
.sc-step-chips span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1px solid rgba(0,212,255,0.22);
  color: var(--c-blue);
  background: rgba(0,212,255,0.06);
}
/* "y mucho más" special chip */
.sc-step-chips .chip--more {
  border-style: dashed;
  border-color: rgba(0,212,255,0.35);
  color: rgba(0,212,255,0.65);
  background: transparent;
  font-style: italic;
}

/* Accent colors per step */
.sc-step[data-step="1"] .sc-step-num,
.sc-step[data-step="1"] .sc-step-chips span { color: #a78bfa; border-color: rgba(124,58,237,0.3); background: rgba(124,58,237,0.07); }
.sc-step[data-step="2"] .sc-step-num,
.sc-step[data-step="2"] .sc-step-chips span { color: var(--c-gold); border-color: rgba(245,166,35,0.3); background: rgba(245,166,35,0.07); }
.sc-step[data-step="3"] .sc-step-num,
.sc-step[data-step="3"] .sc-step-chips span { color: #86efac; border-color: rgba(74,222,128,0.3); background: rgba(74,222,128,0.06); }

/* ─── CENTER PANEL — PRODUCT ─────────────────────────────── */
.sc-center {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.sc-product {
  display: flex;
  align-items: center;
  position: relative;
  animation: scFloat 6s ease-in-out infinite;
}
@keyframes scFloat {
  0%, 100% { transform: translateY(0px) rotateX(0deg); }
  50%       { transform: translateY(-14px) rotateX(1deg); }
}

/* Knobs */
.sc-knob {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #252835, #0e1020);
  border: 2px solid rgba(255,255,255,0.09);
  box-shadow: 0 6px 24px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.sc-knob-ring {
  position: absolute;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.18);
}
.sc-knob-center {
  font-family: var(--f-mono);
  font-size: 8px;
  color: var(--c-muted);
  z-index: 1;
}

/* Screen */
.sc-screen-wrap {
  width: clamp(320px, 40vw, 580px);
  height: clamp(200px, 25vw, 363px);
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(0,212,255,0.28);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6),
              0 0 50px rgba(0,212,255,0.14),
              0 30px 80px rgba(0,0,0,0.7);
  transition: border-color 0.7s var(--ease), box-shadow 0.7s var(--ease);
}
.sc-screen-wrap.s1 {
  border-color: rgba(124,58,237,0.3);
  box-shadow: 0 0 50px rgba(124,58,237,0.14), 0 30px 80px rgba(0,0,0,0.7);
}
.sc-screen-wrap.s2 {
  border-color: rgba(245,166,35,0.3);
  box-shadow: 0 0 50px rgba(245,166,35,0.14), 0 30px 80px rgba(0,0,0,0.7);
}
.sc-screen-wrap.s3 {
  border-color: rgba(239,68,68,0.3);
  box-shadow: 0 0 50px rgba(239,68,68,0.16), 0 30px 80px rgba(0,0,0,0.7);
}

.sc-screen {
  width: 100%; height: 100%;
  background: #060810;
  position: relative;
  overflow: hidden;
}

/* States */
.sc-state {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s var(--ease);
}
.sc-state.active { opacity: 1; }

/* — STATE 0: Android home — */
.sc-state--0 {
  display: grid;
  grid-template-rows: 22px 1fr 28px;
}
.scs-bar {
  background: #040610;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.scs-time {
  font-family: var(--f-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.55);
}
.scs-dots { display: flex; gap: 4px; align-items: center; }
.scs-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.scs-dot-on { background: var(--c-blue) !important; box-shadow: 0 0 5px var(--c-blue); }
.scs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
}
.scs-app {
  aspect-ratio: 1;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.scs-app--maps    { background: linear-gradient(135deg, #0b6820, #18a030); }
.scs-app--yt      { background: linear-gradient(135deg, #b50000, #ff0000); }
.scs-app--spotify { background: linear-gradient(135deg, #0d5c1e, #1db954); font-size: 16px; }
.scs-app--phone   { background: linear-gradient(135deg, #0a5a10, #0e9016); font-size: 15px; }
.scs-app--waze    { background: linear-gradient(135deg, #4a0c88, #7c1fcc); }
.scs-app--bt      { background: linear-gradient(135deg, #004d7a, #0078b4); font-size: 15px; }
.scs-taskbar {
  background: #040610;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  gap: 22px;
  font-size: 10px;
  color: rgba(255,255,255,0.38);
}
.scs-home { color: rgba(255,255,255,0.62); }

/* — STATE 1: 360 camera — */
.sc-state--1 { background: #050810; }
.scs-cam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 1px;
  background: rgba(255,255,255,0.04);
}
.scs-cam {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}
.scs-cam--f { background: linear-gradient(150deg, #091522, #0e1e32); }
.scs-cam--r { background: linear-gradient(150deg, #0a1220, #0e1828); }
.scs-cam--l { background: linear-gradient(150deg, #090f1e, #0c162a); }
.scs-cam--b { background: linear-gradient(150deg, #060d18, #0a1422); }
.scs-crosshair {
  position: absolute;
  top: 50%; left: 50%;
  width: 24px; height: 24px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0,212,255,0.5);
}
.scs-crosshair::before, .scs-crosshair::after {
  content: '';
  position: absolute;
  background: rgba(0,212,255,0.45);
}
.scs-crosshair::before { width: 1px; height: 34px; left: 50%; top: -5px; }
.scs-crosshair::after  { height: 1px; width: 34px; top: 50%; left: -5px; }
.scs-cam-label {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  color: rgba(124,58,237,0.8);
  white-space: nowrap;
}

/* — STATE 2: 2K / product spin — */
.sc-state--2 {
  background: #06080f;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scs-spin-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.scs-2k-badge {
  position: absolute;
  top: 10px; right: 12px;
  font-family: var(--f-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: -0.03em;
  text-shadow: 0 0 16px rgba(245,166,35,0.6), 0 0 32px rgba(245,166,35,0.25);
  z-index: 2;
}

/* — STATE 3: DVR recording — */
.sc-state--3 {
  background: #0a0608;
  position: relative;
  overflow: hidden;
}
.scs-dvr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 1px;
  background: rgba(239,68,68,0.06);
}
.scs-dvr-cam {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 6px 8px;
  overflow: hidden;
}
.scs-dvr-cam:nth-child(1) { background: linear-gradient(150deg, #1a0e10, #241318); }
.scs-dvr-cam:nth-child(2) { background: linear-gradient(150deg, #170d10, #1f1116); }
.scs-dvr-cam:nth-child(3) { background: linear-gradient(150deg, #150c0f, #1d1014); }
.scs-dvr-cam:nth-child(4) { background: linear-gradient(150deg, #130b0e, #1b0f13); }
.scs-dvr-cam span {
  font-family: var(--f-mono);
  font-size: 7px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
}
/* sutil barrido de escaneo por cámara */
.scs-dvr-cam::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px);
}
.scs-dvr-rec {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 3px 8px;
  border-radius: 100px;
  z-index: 2;
}
.scs-rec-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: recBlink 1.3s ease-in-out infinite;
}
@keyframes recBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}
.scs-dvr-time {
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.45);
  padding: 3px 8px;
  border-radius: 5px;
  z-index: 2;
}
.scs-dvr-foot {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: rgba(248,113,113,0.85);
  white-space: nowrap;
  z-index: 2;
}

/* Always-on scanline sweep */
.sc-scanline {
  position: absolute;
  left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.1), transparent);
  animation: scanline 4s linear infinite;
  pointer-events: none; z-index: 10;
}

/* ─── CALLOUT BADGE ──────────────────────────────────────── */
.sc-callout {
  position: absolute;
  top: 12%;
  right: 8%;
  padding: 8px 16px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(0,212,255,0.35);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-blue);
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 0.5s, border-color 0.5s, transform 0.5s var(--ease);
  opacity: 0;
  transform: translateY(-8px) scale(0.95);
  z-index: 5;
}
.sc-callout.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.sc-callout.s1 { color: #a78bfa; border-color: rgba(124,58,237,0.4); }
.sc-callout.s2 { color: var(--c-gold); border-color: rgba(245,166,35,0.4); }
.sc-callout.s3 { color: #f87171; border-color: rgba(239,68,68,0.4); }

/* ─── GLOW BEHIND PRODUCT ────────────────────────────────── */
.sc-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  transition: background 0.8s var(--ease);
}

/* ─── PROGRESS TRACK (left edge) ─────────────────────────── */
.sc-progress-wrap {
  position: absolute;
  left: clamp(14px, 2.5vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.sc-progress-track {
  width: 2px;
  height: 180px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}
.sc-progress-fill {
  width: 100%;
  height: 0%;
  background: var(--c-blue);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--c-blue);
  transition: background 0.6s;
}

/* ─── DOTS NAV ───────────────────────────────────────────── */
.sc-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.sc-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.sc-dot.active {
  background: var(--c-blue);
  border-color: var(--c-blue);
  box-shadow: 0 0 10px var(--c-blue);
  transform: scale(1.3);
}
.sc-dot:hover:not(.active) {
  border-color: rgba(255,255,255,0.6);
  transform: scale(1.1);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .sc-sticky {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .sc-left {
    padding: 80px 24px 0;
    height: auto;
    align-items: flex-start;
  }
  .sc-step { position: relative; left: 0; right: 0; }
  .sc-center {
    padding-bottom: 60px;
  }
  .sc-progress-wrap { display: none; }
  .sc-product { transform: scale(0.8); }
  @keyframes scFloat {
    0%, 100% { transform: scale(0.8) translateY(0); }
    50%       { transform: scale(0.8) translateY(-8px); }
  }
}
@media (max-width: 600px) {
  #showcase { height: 450vh; }
  .sc-knob { width: 36px; height: 36px; }
  .sc-knob-ring { width: 28px; height: 28px; }
  .sc-step-title { font-size: 36px; }
  .sc-product { transform: scale(0.72); }
}

/* ─── HERO PARALLAX SUPPORT ──────────────────────────────── */
.hero-content,
.hero-mockup { will-change: transform; }

/* ══════════════════════════════════════════════════════════
   NAV LOGO IMAGE
   ══════════════════════════════════════════════════════════ */
.nav-logo-img {
  height: 34px;
  width: auto;
  display: block;
  /* logo.png is black on transparent — invert to white for dark bg */
  filter: brightness(0) invert(1);
  transition: filter 0.3s var(--ease);
}
.nav-logo:hover .nav-logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0,212,255,0.6));
}
/* Footer reuses same class — keep consistent */
.footer-logo .nav-logo-img { height: 30px; }

/* ══════════════════════════════════════════════════════════
   PRODUCTOS EN ACCIÓN  (#productos-foto)
   ══════════════════════════════════════════════════════════ */
#productos-foto {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--c-bg);
  overflow: visible;
}

/* ── Section header ── */
.pf-header {
  text-align: center;
  margin-bottom: clamp(64px, 8vw, 100px);
}
.pf-header h2 em {
  font-style: normal;
  color: var(--c-blue);
}
.pf-header .section-sub {
  max-width: 560px;
  margin: 0 auto;
}

/* ── Each photo row ── */
.pf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  max-width: 1200px;
  margin: 0 auto clamp(80px, 12vw, 140px);
  padding: 0 clamp(20px, 5vw, 60px);
  /* GSAP will animate from translateX(±80px) + opacity:0 */
  will-change: transform, opacity;
}
/* Reversed rows: caption left, image right */
.pf-row--rev .pf-caption { order: 1; }
.pf-row--rev .pf-img-wrap { order: 2; }

/* ── Image wrapper ── */
.pf-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.pf-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.7s var(--ease);
}
.pf-img-wrap:hover img {
  transform: scale(1.04);
}

/* Glow behind each image */
.pf-img-glow {
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.13) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
}
.pf-img-glow--purple {
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 65%);
}
.pf-img-glow--gold {
  background: radial-gradient(circle, rgba(245,166,35,0.13) 0%, transparent 65%);
}
.pf-img-glow--green {
  background: radial-gradient(circle, rgba(74,222,128,0.12) 0%, transparent 65%);
}

/* ── Caption block ── */
.pf-caption {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pf-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-blue);
  border: 1px solid rgba(0,212,255,0.28);
  border-radius: 4px;
  padding: 4px 12px;
  width: fit-content;
}
.pf-row--rev .pf-tag { color: #a78bfa; border-color: rgba(124,58,237,0.3); }
.pf-row:nth-child(3) .pf-tag { color: var(--c-gold); border-color: rgba(245,166,35,0.3); }
.pf-row:nth-child(5) .pf-tag { color: #86efac; border-color: rgba(74,222,128,0.3); }

.pf-caption h3 {
  font-family: var(--f-head);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-white);
  margin: 0;
}
.pf-caption p {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 440px;
  margin: 0;
}

/* ── Spec pills ── */
.pf-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.pf-specs span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
  white-space: nowrap;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .pf-row,
  .pf-row--rev {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pf-row--rev .pf-caption { order: 2; }
  .pf-row--rev .pf-img-wrap { order: 1; }
  .pf-caption p { max-width: 100%; }
}

