/* ═══════════════════════════════════════════════
   NAVEL — Design System CSS
   Obsidian Azure · Inter + JetBrains Mono
═══════════════════════════════════════════════ */

/* ── Variables & Reset ── */
:root {
  --base: #090A0F;
  --cards: #0E1018;
  --surface: #151820;
  --border-azul: #1E2230;
  --border-neutro: #3A3F50;
  --text: #F0F2F8;
  --gris: #6A7A9A;
  --azure: #4A78DC;
  --azure-light: #7AACEF;
  --azure-deep: #0C2860;
  --azure-featured: #0D1A35;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}
*, *::before, *::after { box-sizing: border-box; }
#app { min-height: 100vh; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--base);
  color: var(--text);
  font-family: var(--font-sans);
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}
::selection { background: rgba(74,120,220,0.35); color: var(--text); }
h1,h2,h3,h4 { font-weight: 600; letter-spacing: -0.02em; margin: 0; color: var(--text); }
h1 { font-size: clamp(48px,6.5vw,88px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 600; }
h2 { font-size: clamp(36px,4vw,56px); line-height: 1.05; letter-spacing: -0.03em; }
h3 { font-size: 22px; line-height: 1.3; letter-spacing: -0.01em; }
p { color: var(--gris); margin: 0; }
a { text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--base); }
::-webkit-scrollbar-thumb { background: var(--border-azul); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-neutro); }

/* ── Ambient ── */
.ambient-glow {
  position: fixed; top: -200px; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 800px;
  background: radial-gradient(ellipse at center, rgba(12,40,96,0.55) 0%, rgba(74,120,220,0.08) 35%, transparent 65%);
  pointer-events: none; z-index: 0; filter: blur(20px);
}
.ambient-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(74,120,220,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(74,120,220,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 0%, transparent 75%);
}
body > * { position: relative; z-index: 1; }

/* ── Utilities ── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 120px 0; }
section { position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--azure-light); padding: 6px 12px; border: 1px solid var(--border-azul);
  border-radius: 999px; background: rgba(13,26,53,0.5);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--azure); box-shadow: 0 0 8px rgba(74,120,220,0.6);
}
.text-azure { color: var(--azure-light); }
.text-grad {
  background: linear-gradient(180deg,#FFFFFF 0%,#B5C2DD 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 20px; border-radius: 10px;
  font-size: 14px; font-weight: 500; font-family: var(--font-sans);
  cursor: pointer; border: 1px solid transparent;
  transition: all 0.18s ease; text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--azure); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 8px 24px -8px rgba(74,120,220,0.6);
}
.btn-primary:hover { background: #5A86E4; transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 14px 32px -10px rgba(74,120,220,0.75); }
.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border-azul); }
.btn-secondary:hover { background: #1B1F2A; border-color: var(--border-neutro); }
.btn-ghost { background: transparent; color: var(--azure-light); border-color: var(--border-azul); }
.btn-ghost:hover { background: rgba(74,120,220,0.08); border-color: var(--azure); }

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 14px 0;
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.nav-scrolled {
  padding: 10px 0;
  background: rgba(9,10,15,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border-azul);
}
.nav-inner {
  width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: inline-flex; align-items: baseline; gap: 8px;
  color: var(--text); text-decoration: none; font-weight: 600; font-size: 17px; letter-spacing: -0.02em;
}
.nav-logo img { transform: translateY(4px); }
.nav-logo-dot { color: var(--azure); }
.nav-links {
  display: flex; gap: 4px; padding: 4px;
  background: rgba(14,16,24,0.5); border: 1px solid var(--border-azul); border-radius: 999px;
}
.nav-link {
  color: var(--gris); font-size: 13.5px; font-weight: 500;
  padding: 8px 14px; border-radius: 999px; text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--text); background: var(--surface); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { height: 40px; padding: 0 16px; font-size: 13.5px; }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero { padding: 160px 0 80px; min-height: 100vh; position: relative; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center;
}
.hero-text { max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 8px 6px 12px; background: rgba(13,26,53,0.5);
  border: 1px solid var(--border-azul); border-radius: 999px;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--gris); margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--azure-light); box-shadow: 0 0 8px rgba(122,172,239,0.7);
}
.hero-badge-label { color: var(--text); font-size: 11.5px; }
.hero-title { margin-bottom: 24px; font-weight: 600; font-size: 66px; }
.hero-title-accent {
  background: linear-gradient(180deg,#7AACEF 0%,#4A78DC 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 18px; line-height: 1.55; color: var(--gris); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 56px; }
.hero-meta {
  display: flex; align-items: center; gap: 28px;
  padding-top: 28px; border-top: 1px solid var(--border-azul);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta-num { font-size: 28px; font-weight: 600; letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.hero-meta-num-pct { font-size: 14px; color: var(--gris); margin-left: 2px; font-weight: 500; }
.hero-meta-lbl { font-size: 11.5px; color: var(--gris); line-height: 1.3; }
.hero-meta-divider { width: 1px; height: 32px; background: var(--border-azul); }
.hero-visual-wrap { position: relative; }
.hero-visual {
  position: relative; width: 100%; aspect-ratio: 1/1; max-width: 620px; margin: 0 auto;
}

/* Hero cards */
.hv-card {
  position: absolute;
  background: linear-gradient(180deg,rgba(14,16,24,0.96),rgba(14,16,24,0.88));
  border: 1px solid var(--border-azul); border-radius: 14px;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6), 0 0 0 1px rgba(74,120,220,0.04) inset;
  z-index: 3;
}
.hv-metric { top: 8%; left: -6%; padding: 16px; width: 240px; animation: float-a 6s ease-in-out infinite; }
.hv-metric-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.hv-metric-label { font-size: 11px; color: var(--gris); letter-spacing: 0.04em; }
.hv-metric-value { font-size: 32px; font-weight: 600; color: var(--text); letter-spacing: -0.03em; line-height: 1.05; }
.hv-metric-unit { font-size: 16px; color: var(--gris); margin-left: 4px; font-weight: 500; }
.hv-metric-foot { font-size: 10.5px; color: var(--gris); margin-top: 4px; font-family: var(--font-mono); }
.hv-spark { margin: 6px -2px 4px; }
.hv-pill {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10.5px; font-weight: 500; padding: 3px 8px; border-radius: 999px; font-family: var(--font-mono);
}
.hv-pill-up { background: rgba(74,120,220,0.12); color: var(--azure-light); border: 1px solid rgba(74,120,220,0.3); }
.hv-pill-quiet { background: var(--surface); color: var(--gris); border: 1px solid var(--border-azul); }
.hv-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ADC8E; box-shadow: 0 0 8px rgba(74,220,142,0.6);
  animation: pulse-green 1.6s ease-in-out infinite; display: inline-block;
}
/* Main panel */
.hv-panel {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,#0E1018 0%,#0B0D14 100%);
  border: 1px solid var(--border-azul); border-radius: 16px; overflow: hidden;
  box-shadow: 0 60px 80px -40px rgba(0,0,0,0.7), 0 0 0 1px rgba(74,120,220,0.05) inset, 0 0 80px -20px rgba(74,120,220,0.15);
  z-index: 2; animation: float-b 8s ease-in-out infinite;
}
.hv-panel-head {
  height: 38px; padding: 0 12px;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--border-azul); background: rgba(21,24,32,0.5);
}
.hv-tlights { display: flex; gap: 6px; }
.hv-tlights span { width: 9px; height: 9px; border-radius: 50%; background: #2A2F3D; }
.hv-tabs { display: flex; gap: 4px; flex: 1; }
.hv-tab { font-family: var(--font-mono); font-size: 11px; color: var(--gris); padding: 4px 10px; border-radius: 6px; }
.hv-tab-active { color: var(--text); background: var(--surface); border: 1px solid var(--border-azul); }
.hv-panel-body { display: flex; height: calc(100% - 38px); }
.hv-side {
  width: 130px; padding: 14px 10px;
  border-right: 1px solid var(--border-azul); background: rgba(9,10,15,0.4); font-size: 11px;
}
.hv-side-section { margin-bottom: 18px; }
.hv-side-label {
  font-family: var(--font-mono); font-size: 9.5px; color: var(--gris);
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0 8px 6px;
}
.hv-side-item, .hv-side-conn {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px; color: var(--gris); border-radius: 6px; font-size: 11.5px;
}
.hv-side-item-active { background: var(--surface); color: var(--text); border: 1px solid var(--border-azul); }
.hv-conn-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ADC8E; box-shadow: 0 0 6px rgba(74,220,142,0.5); display: inline-block; }
.hv-conn-dot-warn { background: #DCB54A; box-shadow: 0 0 6px rgba(220,181,74,0.5); }
.hv-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.hv-main-head { display: flex; justify-content: space-between; align-items: flex-end; }
.hv-h-eyebrow { font-family: var(--font-mono); font-size: 9.5px; color: var(--azure-light); letter-spacing: 0.14em; text-transform: uppercase; }
.hv-h-title { font-size: 16px; font-weight: 600; color: var(--text); margin-top: 2px; }
.hv-h-actions { display: flex; gap: 6px; }
.hv-mini-btn {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10.5px; padding: 4px 8px; border-radius: 6px;
  background: var(--surface); color: var(--gris); border: 1px solid var(--border-azul); font-family: var(--font-mono);
}
.hv-mini-btn-primary { background: var(--azure); color: white; border-color: rgba(255,255,255,0.18); }
.hv-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.hv-kpi { background: var(--surface); border: 1px solid var(--border-azul); border-radius: 8px; padding: 10px; }
.hv-kpi-label { font-size: 10px; color: var(--gris); margin-bottom: 4px; letter-spacing: 0.04em; }
.hv-kpi-val { font-size: 22px; font-weight: 600; color: var(--text); letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; }
.hv-kpi-unit { font-size: 12px; color: var(--gris); font-weight: 500; margin-left: 2px; }
.hv-kpi-bar { height: 4px; border-radius: 2px; background: rgba(74,120,220,0.1); overflow: hidden; }
.hv-kpi-bar span { display: block; height: 100%; background: linear-gradient(90deg,var(--azure),var(--azure-light)); border-radius: 2px; transition: width 0.6s ease; }
.hv-kpi-bar-quiet { background: rgba(106,122,154,0.1); }
.hv-kpi-bar-quiet span { background: var(--gris); }
.hv-flow { background: var(--surface); border: 1px solid var(--border-azul); border-radius: 8px; padding: 12px; }
.hv-flow-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.hv-flow-title { font-size: 12px; font-weight: 600; color: var(--text); }
.hv-flow-meta { font-family: var(--font-mono); font-size: 10px; color: var(--gris); }
.hv-flow-steps { display: flex; flex-direction: column; gap: 4px; }
.hv-step { display: flex; align-items: center; gap: 8px; padding: 6px 8px; font-size: 11px; border-radius: 6px; color: var(--gris); }
.hv-step-num {
  width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 9.5px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-azul); border-radius: 4px; color: var(--gris);
}
.hv-step-label { flex: 1; }
.hv-step-mark { width: 16px; display: inline-flex; align-items: center; justify-content: center; }
.hv-step-done { color: #B5C2DD; }
.hv-step-done .hv-step-num { background: rgba(74,120,220,0.12); border-color: rgba(74,120,220,0.4); color: var(--azure-light); }
.hv-step-done .hv-step-mark { color: var(--azure-light); }
.hv-step-live { color: var(--text); background: rgba(74,120,220,0.06); border: 1px solid rgba(74,120,220,0.24); }
.hv-step-live .hv-step-num { background: var(--azure); color: #fff; border-color: rgba(255,255,255,0.2); }
.hv-pulse {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block;
  background: var(--azure-light); box-shadow: 0 0 0 0 rgba(122,172,239,0.7);
  animation: pulse-az 1.4s ease-out infinite;
}
/* Integrations float card */
.hv-integ { right: -6%; bottom: 6%; padding: 14px; width: 252px; animation: float-c 7s ease-in-out infinite; }
.hv-integ-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.hv-integ-title { font-size: 11.5px; font-weight: 600; color: var(--text); }
.hv-integ-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.hv-integ-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 4px; border-radius: 6px;
  background: rgba(21,24,32,0.6); border: 1px solid var(--border-azul);
  opacity: 0; animation: fade-in 0.5s ease forwards;
}
.hv-integ-logo {
  width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,rgba(74,120,220,0.18),rgba(74,120,220,0.04));
  border: 1px solid rgba(74,120,220,0.3); border-radius: 6px;
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600; color: var(--azure-light);
}
.hv-integ-name { font-size: 9.5px; color: var(--gris); letter-spacing: 0.02em; }
/* Marquee */
.hero-stack-strip { margin-top: 100px; padding: 36px 0; border-top: 1px solid var(--border-azul); border-bottom: 1px solid var(--border-azul); }
.hero-stack-label {
  display: flex; align-items: center; gap: 16px;
  max-width: 1240px; margin: 0 auto 20px; padding: 0 32px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--gris); text-transform: uppercase;
}
.hero-stack-line { flex: 1; height: 1px; background: var(--border-azul); }
.hero-marquee {
  position: relative; overflow: hidden; max-width: 100%; margin: 0 auto;
  -webkit-mask-image: linear-gradient(90deg,transparent 0,black 8%,black 92%,transparent 100%);
  mask-image: linear-gradient(90deg,transparent 0,black 8%,black 92%,transparent 100%);
}
.hero-marquee-track { display: flex; width: max-content; animation: marquee-scroll 40s linear infinite; }
.hero-marquee-row { display: flex; gap: 10px; padding: 0 5px; flex-shrink: 0; }
.hero-marquee:hover .hero-marquee-track { animation-play-state: paused; }
.hero-stack-chip {
  font-family: var(--font-mono); font-size: 12px; color: var(--gris);
  padding: 8px 14px; border: 1px solid var(--border-azul); border-radius: 999px;
  background: rgba(14,16,24,0.5); transition: all 0.18s; white-space: nowrap;
}
.hero-stack-chip:hover { color: var(--text); border-color: rgba(74,120,220,0.5); background: rgba(74,120,220,0.08); }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services { position: relative; }
.svc-head {
  max-width: 720px; margin: 0 auto 64px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.svc-head h2 { font-weight: 600; }
.svc-head-sub { font-size: 17px; line-height: 1.55; max-width: 580px; }
.svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.svc-card {
  position: relative; background: var(--cards); border: 1px solid var(--border-azul);
  border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.25s, transform 0.25s, background 0.25s; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right,rgba(74,120,220,0.08),transparent 60%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.svc-card:hover { border-color: rgba(74,120,220,0.4); transform: translateY(-3px); }
.svc-card:hover::before { opacity: 1; }
.svc-card-featured {
  background: linear-gradient(180deg,#0D1A35 0%,#0E1018 60%);
  border-color: rgba(74,120,220,0.35);
}
.svc-card-featured::after {
  content: 'Más demandado'; position: absolute; top: 16px; right: 16px;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--azure-light); padding: 4px 10px;
  background: rgba(74,120,220,0.12); border: 1px solid rgba(74,120,220,0.4); border-radius: 999px;
}
.svc-icon-wrap {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border-azul); border-radius: 10px;
  color: var(--azure-light); margin-bottom: 4px;
}
.svc-card-featured .svc-icon-wrap {
  background: rgba(74,120,220,0.15); border-color: rgba(74,120,220,0.4);
  box-shadow: 0 0 24px -8px rgba(74,120,220,0.5);
}
.svc-eyebrow { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; color: var(--gris); text-transform: uppercase; }
.svc-title { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; max-width: 360px; }
.svc-desc { font-size: 14.5px; line-height: 1.6; max-width: 460px; }
.svc-bullets { margin: 8px 0 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 8px 16px; }
.svc-bullets li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gris); font-family: var(--font-mono); }
.svc-bullets li svg { flex-shrink: 0; color: var(--azure-light); }
.svc-foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border-azul); }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--azure-light); font-weight: 500; cursor: pointer; transition: gap 0.2s;
}
.svc-card:hover .svc-link { gap: 10px; }

/* ═══════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════ */
.process { position: relative; }
.proc-head {
  max-width: 720px; margin: 0 auto 80px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.proc-head-sub { font-size: 17px; line-height: 1.55; max-width: 520px; }
.proc-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: flex-start; position: relative; }
.proc-steps { display: flex; flex-direction: column; gap: 0; }
.proc-step {
  position: relative; min-height: 70vh; padding: 8vh 0;
  opacity: 0.45; transition: opacity 0.4s;
  display: flex; flex-direction: column; justify-content: center;
}
.proc-step:first-child { padding-top: 0; min-height: 60vh; }
.proc-step:last-child { padding-bottom: 0; min-height: 60vh; }
.proc-step-active { opacity: 1; }
.proc-step-line {
  position: absolute; left: -12px; top: 56px; bottom: 0; width: 1px;
  background: linear-gradient(180deg,var(--border-azul),transparent);
}
.proc-step:last-child .proc-step-line { display: none; }
.proc-step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.proc-step-icon {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border-azul); border-radius: 10px;
  color: var(--gris); transition: all 0.3s;
}
.proc-step-active .proc-step-icon {
  background: rgba(74,120,220,0.12); border-color: rgba(74,120,220,0.4); color: var(--azure-light);
  box-shadow: 0 0 24px -8px rgba(74,120,220,0.5);
}
.proc-step-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--gris); }
.proc-step-active .proc-step-num { color: var(--azure-light); }
.proc-step-title { font-size: 32px; font-weight: 600; letter-spacing: -0.025em; margin-bottom: 8px; }
.proc-step-short { font-size: 17px; color: var(--text); font-weight: 500; margin-bottom: 12px; letter-spacing: -0.01em; }
.proc-step-desc { font-size: 14.5px; line-height: 1.6; margin-bottom: 20px; max-width: 460px; }
.proc-step-deliv {
  padding: 14px 16px; background: rgba(14,16,24,0.5);
  border: 1px solid var(--border-azul); border-radius: 10px; max-width: 380px;
}
.proc-step-deliv-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gris); margin-bottom: 8px;
}
.proc-step-deliv ul { display: flex; flex-direction: column; gap: 6px; }
.proc-step-deliv li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); }
.proc-step-deliv li svg { color: var(--azure-light); flex-shrink: 0; }
.proc-visual { position: relative; align-self: stretch; }
.proc-visual-sticky {
  position: sticky; top: 8vh; height: 88vh; display: flex; gap: 16px;
}
.proc-visual-frame { flex: 1; height: 100%; max-height: 88vh; position: relative; overflow: hidden; }
.proc-visual-track {
  width: 4px; background: var(--border-azul); border-radius: 4px;
  display: flex; flex-direction: column; padding: 4px 0; gap: 4px;
}
.pvt-dot { flex: 1; background: transparent; border-radius: 4px; transition: background 0.3s; }
.pvt-dot-on { background: var(--azure); box-shadow: 0 0 12px rgba(74,120,220,0.6); }

/* Pipeline visual */
.pipe {
  width: 100%; height: 100%; position: relative;
  display: flex; flex-direction: column; justify-content: space-between; padding: 8px 0; overflow: hidden;
}
.pipe-spine {
  position: absolute; left: 50%; top: 30px; bottom: 30px; width: 1px;
  background: rgba(74,120,220,0.08); transform: translateX(-50%);
}
.pipe-spine-fill {
  position: absolute; left: 0; top: 0; right: 0;
  background: linear-gradient(180deg,rgba(122,172,239,0.5) 0%,rgba(74,120,220,0.15) 100%);
  transition: height 0.7s cubic-bezier(.6,.05,.3,1);
}
.pipe-stage {
  position: relative; z-index: 1;
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s, transform 0.7s cubic-bezier(.5,.05,.3,1);
}
.pipe-stage.on { opacity: 1; transform: translateY(0); }
.pipe-chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.pipe-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; background: rgba(14,16,24,0.7); border: 1px solid var(--border-azul);
  border-radius: 999px; font-size: 12px; color: var(--text); backdrop-filter: blur(6px);
}
.pipe-chip svg { color: var(--gris); }
.pipe-stub { width: 1px; height: 28px; background: linear-gradient(180deg,transparent,rgba(122,172,239,0.4)); }
.pipe-card {
  width: min(420px,88%); background: rgba(14,16,24,0.78);
  border: 1px solid var(--border-azul); border-radius: 12px; padding: 10px 14px;
  backdrop-filter: blur(8px); box-shadow: 0 12px 40px -16px rgba(0,0,0,0.5);
}
.pipe-card-sm { width: min(360px,78%); padding: 8px 12px; }
.pipe-card-pill {
  width: auto; display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.96); color: #0B0D14; border-color: transparent;
}
.pipe-card-pill .pipe-card-icon {
  width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #4A78DC; color: #fff;
}
.pipe-card-pill-text { font-size: 13px; font-weight: 500; }
.pipe-card-head { display: flex; align-items: center; gap: 9px; margin-bottom: 5px; }
.pipe-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.pipe-dot-blue { background: #7AACEF; box-shadow: 0 0 8px rgba(122,172,239,0.6); }
.pipe-dot-amber { background: #E8A35A; box-shadow: 0 0 8px rgba(232,163,90,0.5); }
.pipe-card-title { font-size: 13px; font-weight: 500; color: var(--text); }
.pipe-card-meta { margin-left: auto; font-family: 'JetBrains Mono',monospace; font-size: 10.5px; color: var(--gris); }
.pipe-card-meta i { font-style: normal; }
.pipe-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px; border-radius: 999px;
  font-family: 'JetBrains Mono',monospace; font-size: 10px; letter-spacing: 0.3px;
}
.pipe-badge-live { background: rgba(111,217,160,0.12); border: 1px solid rgba(111,217,160,0.3); color: #6FD9A0; }
.pipe-badge-connected, .pipe-badge-sent {
  background: rgba(111,217,160,0.12); border: 1px solid rgba(111,217,160,0.3); color: #6FD9A0;
  align-self: flex-end; margin-right: 22%;
}
.pipe-card-body { display: flex; flex-direction: column; gap: 8px; padding: 4px 0 6px; }
.pipe-row { display: flex; align-items: center; gap: 10px; }
.pipe-row-time { font-family: 'JetBrains Mono',monospace; font-size: 11px; color: var(--gris); min-width: 40px; }
.pipe-row-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.pipe-row-dot-blue { background: #7AACEF; }
.pipe-row-dot-green { background: #6FD9A0; }
.pipe-row-text { font-size: 12.5px; color: var(--text); }
.pipe-card-foot { padding-top: 8px; border-top: 1px solid var(--border-azul); font-family: 'JetBrains Mono',monospace; font-size: 10.5px; color: var(--gris); }
.pipe-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.pipe-tag { font-family: 'JetBrains Mono',monospace; font-size: 10px; padding: 3px 8px; border-radius: 5px; letter-spacing: 0.5px; }
.pipe-tag-blue { background: rgba(74,120,220,0.14); color: #7AACEF; border: 1px solid rgba(74,120,220,0.3); }
.pipe-tag-amber { background: rgba(232,163,90,0.14); color: #E8A35A; border: 1px solid rgba(232,163,90,0.3); }
.pipe-tag-gray { background: rgba(120,140,180,0.1); color: var(--gris); border: 1px solid var(--border-azul); }
.pipe-bar { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; }
.pipe-bar-l { font-size: 11.5px; color: var(--text); }
.pipe-bar-r { font-family: 'JetBrains Mono',monospace; font-size: 10px; color: #6FD9A0; }
.pipe-bar-track { height: 5px; background: var(--border-azul); border-radius: 999px; overflow: hidden; }
.pipe-bar-fill { height: 100%; background: linear-gradient(90deg,#4A78DC,#7AACEF); border-radius: 999px; }
.pipe-card-rows { display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.pipe-card-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--text); padding: 6px 0;
  border-bottom: 1px dashed rgba(74,120,220,0.12);
}
.pipe-card-row:last-child { border-bottom: none; }
.pipe-card-row svg { color: #6FD9A0; }
.pipe-mono { font-family: 'JetBrains Mono',monospace; color: var(--gris); font-size: 11px; }
.pipe-complete {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px;
  background: rgba(111,217,160,0.14); border: 1px solid rgba(111,217,160,0.4);
  color: #6FD9A0; font-size: 12px; font-weight: 500;
  box-shadow: 0 0 32px -8px rgba(111,217,160,0.4);
}
.pipe-complete svg { color: #6FD9A0; }

/* ═══════════════════════════════════════════════
   SHOWCASE
═══════════════════════════════════════════════ */
.showcase { position: relative; background: linear-gradient(180deg,transparent 0%,rgba(13,26,53,0.15) 50%,transparent 100%); }
.show-head { max-width: 720px; margin: 0 auto 64px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.show-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.show-cell { display: flex; flex-direction: column; gap: 12px; }
.show-cell-term { grid-row: span 2; }
.show-cell-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gris);
}
.show-cell-num { padding: 3px 8px; background: rgba(74,120,220,0.1); border: 1px solid rgba(74,120,220,0.3); border-radius: 4px; color: var(--azure-light); }
.show-cell > *:not(.show-cell-tag) { flex: 1; }
/* Terminal */
.term-card {
  background: linear-gradient(180deg,#0E1018 0%,#0A0C12 100%); border: 1px solid var(--border-azul);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 40px 60px -30px rgba(0,0,0,0.7), 0 0 80px -30px rgba(74,120,220,0.2);
  height: 100%;
}
.term-head {
  height: 36px; padding: 0 14px; display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border-azul); background: rgba(21,24,32,0.5);
}
.term-title { font-family: var(--font-mono); font-size: 11px; color: var(--text); flex: 1; }
.term-meta { font-family: var(--font-mono); font-size: 10.5px; color: var(--gris); }
.term-body { padding: 18px 16px; font-family: var(--font-mono); font-size: 12.5px; line-height: 1.85; min-height: 280px; }
.term-line { display: flex; gap: 10px; opacity: 0; animation: term-fade 0.3s ease forwards; }
.term-prompt { color: var(--azure-light); flex-shrink: 0; }
.term-text { color: var(--text); }
.term-dim { color: var(--gris); }
.term-ok { color: #6FD9A0; }
.term-warn { color: #E5C57A; }
.term-az { color: var(--azure-light); }
.term-link { color: #B5D4A0; text-decoration: underline; text-underline-offset: 2px; }
.term-cursor { color: var(--azure-light); animation: blink 1s steps(2) infinite; }
/* Integrations ring */
.ring-card {
  background: var(--cards); border: 1px solid var(--border-azul); border-radius: 14px; padding: 24px;
  height: 100%; display: flex; flex-direction: column;
}
.ring-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.ring-label { font-size: 13px; font-weight: 600; color: var(--text); }
.ring-grid { flex: 1; display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.ring-cell {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 6px; background: rgba(21,24,32,0.5); border: 1px solid var(--border-azul); border-radius: 10px;
  opacity: 0; animation: ring-in 0.4s ease forwards; transition: all 0.2s;
}
.ring-cell:hover { border-color: rgba(74,120,220,0.4); background: rgba(74,120,220,0.05); }
.ring-logo {
  width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,rgba(74,120,220,0.18),rgba(74,120,220,0.04));
  border: 1px solid rgba(74,120,220,0.3); border-radius: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--azure-light);
}
.ring-name { font-size: 10.5px; color: var(--gris); font-family: var(--font-mono); }
.ring-foot {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border-azul);
  display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--gris);
}
.ring-foot-text { color: var(--text); }
.ring-foot svg { color: var(--azure-light); }
/* Flow mini */
.flow-mini {
  background: var(--cards); border: 1px solid var(--border-azul); border-radius: 14px; padding: 20px;
  height: 100%; display: flex; flex-direction: column;
}
.flow-mini-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.flow-mini-label { font-size: 13px; font-weight: 600; color: var(--text); }
.flow-mini-row { display: flex; align-items: center; gap: 6px; flex: 1; justify-content: center; padding: 12px 0; }
.flow-node {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 12px 10px; min-width: 76px;
  background: var(--surface); border: 1px solid var(--border-azul); border-radius: 10px;
  font-family: var(--font-mono); font-size: 10.5px; color: var(--gris);
}
.flow-node svg { color: var(--gris); }
.flow-node-az {
  background: rgba(74,120,220,0.1); border-color: rgba(74,120,220,0.4); color: var(--azure-light);
  box-shadow: 0 0 24px -10px rgba(74,120,220,0.6);
}
.flow-node-az svg { color: var(--azure-light); }
.flow-arrow {
  flex: 1; height: 1px; max-width: 32px;
  background: linear-gradient(90deg,var(--border-azul),var(--azure),var(--border-azul));
  background-size: 200% 100%; animation: arrow-slide 2s linear infinite;
}
.flow-mini-meta { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border-azul); display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.flow-mini-stat { display: flex; flex-direction: column; gap: 2px; }
.flow-mini-stat-num { font-size: 20px; font-weight: 600; color: var(--text); letter-spacing: -0.02em; }
.flow-mini-stat-lbl { font-size: 10.5px; color: var(--gris); font-family: var(--font-mono); }

/* ═══════════════════════════════════════════════
   CASES
═══════════════════════════════════════════════ */
.cases { position: relative; }
.cases-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 32px; }
.cases-list { display: flex; flex-direction: column; border-top: 1px solid var(--border-azul); }
.case-row {
  display: grid; grid-template-columns: 200px 1.4fr 1fr; gap: 32px;
  padding: 36px 8px; border-bottom: 1px solid var(--border-azul);
  align-items: center; transition: background 0.25s, padding 0.25s; position: relative;
}
.case-row:hover { background: linear-gradient(90deg,transparent,rgba(74,120,220,0.04),transparent); padding: 36px 16px; }
.case-row::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%) scaleY(0);
  width: 2px; height: 60%; background: var(--azure); transition: transform 0.25s ease; transform-origin: center;
}
.case-row:hover::before { transform: translateY(-50%) scaleY(1); }
.case-meta { display: flex; flex-direction: column; gap: 8px; }
.case-num { font-family: var(--font-mono); font-size: 32px; color: var(--gris); letter-spacing: -0.02em; line-height: 1; }
.case-tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gris); }
.case-main { display: flex; gap: 14px; align-items: flex-start; }
.case-icon {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border-azul); border-radius: 10px;
  color: var(--azure-light); flex-shrink: 0;
}
.case-text { flex: 1; }
.case-title { font-size: 22px; font-weight: 600; line-height: 1.3; margin-bottom: 8px; letter-spacing: -0.015em; }
.case-desc { font-size: 14px; line-height: 1.55; max-width: 480px; }
.case-metrics {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  padding: 16px; background: rgba(14,16,24,0.5); border: 1px solid var(--border-azul); border-radius: 10px;
}
.case-metric { display: flex; flex-direction: column; gap: 2px; }
.case-metric-v { font-size: 20px; font-weight: 600; color: var(--text); letter-spacing: -0.02em; }
.case-metric-l { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gris); }

/* ═══════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════ */
.cta { padding-bottom: 40px; }
.cta-card {
  position: relative; border: 1px solid var(--border-azul); border-radius: 24px; overflow: hidden;
  background: linear-gradient(180deg,#0D1A35 0%,#0E1018 80%); padding: 80px 64px;
}
.cta-bg { position: absolute; inset: 0; opacity: 0.7; pointer-events: none; }
.cta-bg svg { width: 100%; height: 100%; }
.cta-content {
  position: relative; max-width: 720px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.cta-title { font-size: clamp(32px,5vw,48px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; color: var(--text); }
.cta-title-accent { background: linear-gradient(180deg,#7AACEF 0%,#4A78DC 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-sub { font-size: 17px; line-height: 1.6; max-width: 540px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin: 8px 0 16px; }
.cta-btn-big { height: 52px; padding: 0 28px; font-size: 15px; }
.cta-or { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gris); }
.cta-mail { display: inline-flex; align-items: center; gap: 6px; color: var(--azure-light); text-decoration: none; font-family: var(--font-mono); }
.cta-mail:hover { color: var(--text); }
.cta-promise {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  width: 100%; max-width: 720px; margin-top: 24px; padding-top: 32px; border-top: 1px solid var(--border-azul);
}
.cta-promise-item { display: flex; gap: 12px; align-items: flex-start; text-align: left; }
.cta-promise-item svg { color: var(--azure-light); flex-shrink: 0; margin-top: 2px; }
.cta-promise-t { font-size: 13px; color: var(--text); font-weight: 500; }
.cta-promise-d { font-size: 11.5px; color: var(--gris); font-family: var(--font-mono); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  position: relative; padding: 100px 0 0;
  border-top: 1px solid var(--border-azul);
  background: linear-gradient(180deg,transparent 0%,rgba(13,26,53,0.2) 100%); overflow: hidden;
}
.foot-manifest { max-width: 820px; margin: 0 auto 80px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.foot-manifest-text { font-size: clamp(20px,2.4vw,28px); line-height: 1.4; font-weight: 500; color: var(--gris); letter-spacing: -0.015em; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid var(--border-azul); }
.foot-brand { max-width: 320px; }
.foot-logo { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;}
.foot-logo img { display: block; height: 100px;}
.foot-brand-desc { font-size: 13.5px; line-height: 1.6; margin-bottom: 20px; }
.foot-social { display: flex; gap: 8px; }
.foot-soc {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border-azul); border-radius: 8px;
  color: var(--gris); text-decoration: none; transition: all 0.2s;
}
.foot-soc:hover { color: var(--azure-light); border-color: rgba(74,120,220,0.4); background: rgba(74,120,220,0.08); }
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-col-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 4px; }
.foot-col a { color: var(--gris); text-decoration: none; font-size: 13.5px; transition: color 0.15s; }
.foot-col a:hover { color: var(--text); }
.foot-bot { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--gris); font-family: var(--font-mono); }
.foot-bot-right { display: flex; align-items: center; gap: 12px; }
.foot-bot a { color: var(--gris); text-decoration: none; }
.foot-bot a:hover { color: var(--text); }
.foot-bot-divider { opacity: 0.5; }
.foot-status { display: inline-flex; align-items: center; gap: 6px; color: var(--text); }
.foot-mark {
  position: relative; font-size: clamp(120px,22vw,280px); font-weight: 700; letter-spacing: -0.05em;
  text-align: center; background: linear-gradient(180deg,rgba(74,120,220,0.12) 0%,transparent 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 0.9; padding: 40px 0 0; user-select: none;
}

/* ═══════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════ */
@keyframes float-a { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float-b { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes float-c { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse-green { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes pulse-az { 0% { box-shadow: 0 0 0 0 rgba(122,172,239,0.5); } 100% { box-shadow: 0 0 0 8px rgba(122,172,239,0); } }
@keyframes fade-in { to { opacity: 1; } }
@keyframes ring-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes arrow-slide { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
@keyframes term-fade { to { opacity: 1; } }
@keyframes blink { 50% { opacity: 0; } }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero { padding: 130px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { aspect-ratio: 4/3; max-width: 100%; }
  .hv-metric { left: 0; top: -5%; width: 200px; }
  .hv-integ { right: 0; bottom: -5%; width: 220px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-bullets { grid-template-columns: 1fr; }
  .proc-layout { grid-template-columns: 1fr; gap: 40px; }
  .proc-visual { order: -1; }
  .proc-visual-sticky { position: relative; top: 0; }
  .proc-visual-frame { aspect-ratio: 4/3; }
  .proc-visual-track { display: none; }
  .proc-step { padding: 40px 0; opacity: 1; }
  .proc-step-line { display: none; }
  .show-grid { grid-template-columns: 1fr; }
  .show-cell-term { grid-row: auto; }
  .case-row { grid-template-columns: 1fr; gap: 16px; }
  .cases-head { flex-direction: column; align-items: flex-start; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1/-1; }
}
@media (max-width: 700px) {
  .cta-card { padding: 48px 24px; }
  .cta-promise { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-meta { flex-wrap: wrap; gap: 20px; }
  .hero-meta-divider { display: none; }
  .hv-metric, .hv-integ { display: none; }
  .proc-visual { display: none; }
  .proc-step { min-height: auto !important; padding: 24px 0 !important; }
  .proc-step:first-child, .proc-step:last-child { min-height: auto !important; padding: 24px 0 !important; }
  .foot-bot { flex-direction: column; gap: 12px; text-align: center; }
  .container { padding: 0 20px; }
  .foot-grid { grid-template-columns: 1fr; text-align: center; }
  .foot-col { align-items: center; }
  .foot-brand { max-width: 100%; text-align: center; }
  .foot-logo { justify-content: center; }
  .foot-social { justify-content: center; }
  .foot-manifest-text { font-size: 18px; }
  .section-pad { padding: 80px 0; }
  h1 { font-size: clamp(34px,9vw,44px) !important; }
  h2 { font-size: clamp(28px,7vw,36px) !important; }
}

/* ── Misc utilities ── */
.sv-tlights { display: flex; gap: 6px; }
.sv-tlights span { width: 9px; height: 9px; border-radius: 50%; background: #2A2F3D; }
.hv-step-idle { color: var(--gris); opacity: 0.5; }

/* ── WhatsApp floating button ── */
#btn-whatsapp { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s ease, box-shadow 0.2s ease; text-decoration: none; }
#btn-whatsapp:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
