@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --void: #050810;
  --panel: #0f1629;
  --panel-2: #151d35;
  --border: rgba(255, 255, 255, 0.08);
  --mint: #00f5a8;
  --cyan: #22d3ee;
  --gold: #fcd34d;
  --violet: #8b5cf6;
  --text: #f8fafc;
  --muted: #94a3b8;
  --dim: #64748b;
  --glass: rgba(15, 22, 41, 0.72);
  --radius: 20px;
  --radius-sm: 12px;
  --font-ui: "Inter", system-ui, sans-serif;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --glow: 0 0 60px rgba(0, 245, 168, 0.15);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--mint); text-decoration: none; transition: color 0.2s, opacity 0.2s; }
a:hover { color: var(--cyan); }
.container { width: min(1200px, 92vw); margin: 0 auto; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--mint); color: var(--void); padding: 8px 16px; font-weight: 600;
}
.skip-link:focus { left: 8px; top: 8px; }

.top-bar {
  background: rgba(5, 8, 16, 0.95);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
  padding: 10px 4vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.tasa-bcv {
  color: var(--mint);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(5, 8, 16, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(5, 8, 16, 0.92);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.header-inner {
  width: min(1200px, 92vw); margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 16px 0;
}
.logo img { height: 38px; width: auto; }
.nav-panel {
  display: flex; gap: 32px; margin-left: auto;
  font-size: 0.9rem; font-weight: 500;
}
.nav-panel a { color: var(--muted); }
.nav-panel a.active, .nav-panel a:hover { color: var(--text); }
.nav-btn {
  display: none; background: var(--panel);
  border: 1px solid var(--border); border-radius: 10px;
  font-size: 1.3rem; cursor: pointer; color: var(--text);
  width: 44px; height: 44px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem;
  border: none; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  font-family: var(--font-ui);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  color: var(--void);
  box-shadow: 0 8px 32px rgba(0, 245, 168, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(0, 245, 168, 0.5); color: var(--void); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: var(--text); }
.btn-block { width: 100%; margin-top: 16px; }
.header-cta { margin-left: 12px; white-space: nowrap; }

.gradient-text {
  background: linear-gradient(135deg, var(--mint) 0%, var(--cyan) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--mint); margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--cyan));
  border-radius: 2px;
}

/* HERO */
.hero-vault {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  padding: 40px 0 80px; overflow: hidden;
}
.hero-aurora {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(139, 92, 246, 0.25), transparent),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 245, 168, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(34, 211, 238, 0.15), transparent),
    var(--void);
}
.hero-aurora::after {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  width: min(1200px, 92vw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: center;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em; margin-bottom: 24px;
}
.hero-lead {
  font-size: 1.1rem; color: var(--muted);
  max-width: 480px; margin-bottom: 32px; line-height: 1.7;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.hero-disclaimer {
  font-size: 0.76rem; color: var(--dim);
  max-width: 460px; line-height: 1.5;
  padding-left: 12px; border-left: 2px solid rgba(0, 245, 168, 0.3);
}

.hero-visual { position: relative; }
.glass-dashboard {
  background: var(--glass);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow), var(--glow);
  position: relative;
}
.glass-dashboard::before {
  content: "";
  position: absolute; inset: -1px; border-radius: 24px; padding: 1px;
  background: linear-gradient(135deg, rgba(0,245,168,0.4), transparent 40%, rgba(34,211,238,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.dash-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.dash-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.dash-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--mint); font-weight: 600;
}
.dash-live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint); box-shadow: 0 0 12px var(--mint);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.dash-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 20px;
}
.dash-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px; text-align: center;
}
.dash-metric strong {
  display: block; font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; color: var(--text);
}
.dash-metric span { font-size: 0.72rem; color: var(--dim); margin-top: 4px; display: block; }
.dash-chart {
  height: 80px; margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(0,245,168,0.15) 0%, transparent 100%);
  border-radius: var(--radius-sm);
  position: relative; overflow: hidden;
}
.dash-chart::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 60' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L40 35 L80 42 L120 20 L160 28 L200 10 L240 25 L280 5 L300 15 L300 60 L0 60Z' fill='%2300f5a8' fill-opacity='0.25'/%3E%3Cpath d='M0 50 L40 35 L80 42 L120 20 L160 28 L200 10 L240 25 L280 5 L300 15' fill='none' stroke='%2300f5a8' stroke-width='2'/%3E%3C/svg%3E") bottom/100% auto no-repeat;
}
.dash-photo {
  border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 16/9;
}
.dash-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; top: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), #f59e0b);
  color: var(--void); font-weight: 700;
  padding: 12px 18px; border-radius: 14px;
  font-size: 0.85rem; box-shadow: 0 12px 40px rgba(252, 211, 77, 0.35);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* KPI STRIP */
.kpi-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--panel);
  padding: 28px 0;
}
.kpi-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.kpi-item strong {
  display: block; font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  background: linear-gradient(135deg, var(--text), var(--mint));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kpi-item span { font-size: 0.82rem; color: var(--dim); }

/* SECTIONS */
.section { padding: 88px 0; position: relative; }
.section-dark { background: var(--void); }
.section-panel { background: var(--panel); }
.section-intro { margin-bottom: 48px; }
.section-intro.center { text-align: center; }
.section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-intro p { color: var(--muted); max-width: 560px; line-height: 1.7; }
.section-intro.center p { margin: 0 auto; }

/* BENTO */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.bento-card {
  grid-column: span 4;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  position: relative;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow), var(--shadow);
  border-color: rgba(0, 245, 168, 0.3);
}
.bento-card.span-7 { grid-column: span 7; }
.bento-card.span-5 { grid-column: span 5; }
.bento-card a { color: inherit; display: block; height: 100%; }
.bento-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.bento-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.bento-card:hover .bento-img img { transform: scale(1.06); }
.bento-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,8,16,0.85) 100%);
}
.bento-body { padding: 24px 28px 28px; }
.bento-sku {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--cyan); text-transform: uppercase;
}
.bento-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  margin: 8px 0 10px;
}
.bento-body p { font-size: 0.9rem; color: var(--muted); margin-bottom: 14px; }

/* VISUAL BAND */
.visual-band {
  position: relative; min-height: 420px;
  display: flex; align-items: center;
  overflow: hidden;
}
.visual-band-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.visual-band-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--void) 0%, rgba(5,8,16,0.85) 45%, rgba(5,8,16,0.4) 100%);
}
.visual-band-content {
  position: relative; z-index: 1;
  width: min(1200px, 92vw); margin: 0 auto;
  max-width: 520px;
}
.visual-band-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}
.visual-band-content p { color: var(--muted); margin-bottom: 24px; }

/* PROCESS */
.process-line {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; position: relative;
}
.process-line::before {
  content: ""; position: absolute;
  top: 28px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--cyan), var(--violet));
  opacity: 0.35; z-index: 0;
}
.proc-step {
  text-align: center; position: relative; z-index: 1;
  padding: 20px 12px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
}
.proc-step:hover {
  border-color: rgba(0, 245, 168, 0.4);
  transform: translateY(-4px);
}
.proc-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  color: var(--void); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 0.9rem;
}
.proc-step h3 { font-size: 0.95rem; margin-bottom: 6px; }
.proc-step p { font-size: 0.8rem; color: var(--dim); }

/* PILL GRID */
.pill-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.pill-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pill-card:hover {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: var(--glow);
}
.pill-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,245,168,0.15), rgba(34,211,238,0.1));
  border: 1px solid rgba(0, 245, 168, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.pill-card h3 { font-size: 1rem; margin-bottom: 8px; }
.pill-card p { font-size: 0.85rem; color: var(--muted); }

/* TESTIMONIAL */
.quote-glass {
  max-width: 720px; margin: 0 auto;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 56px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-glass::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 6rem; line-height: 0.5;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: absolute; top: 24px; left: 32px; opacity: 0.4;
}
.quote-glass blockquote {
  font-size: 1.3rem; line-height: 1.6;
  color: var(--text); margin-bottom: 20px;
  position: relative; z-index: 1;
}
.quote-glass cite { font-size: 0.88rem; color: var(--dim); font-style: normal; }

/* FAQ */
.faq-grid { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: var(--panel-2);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(0, 245, 168, 0.35); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 24px; font-size: 1rem; font-weight: 600;
  cursor: pointer; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-ui);
}
.faq-q::after {
  content: "+"; font-size: 1.4rem; color: var(--mint);
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 0.92rem; color: var(--muted);
  padding: 0 24px;
  transition: max-height 0.35s, padding 0.35s;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* CTA */
.cta-prism {
  text-align: center; padding: 64px 48px;
  border-radius: 28px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-prism::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,245,168,0.12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(139,92,246,0.15), transparent 50%);
  pointer-events: none;
}
.cta-prism h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 14px; position: relative;
}
.cta-prism p {
  color: var(--muted); margin-bottom: 28px;
  max-width: 480px; margin-left: auto; margin-right: auto;
  position: relative;
}

/* CONTACT */
.contact-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-list { list-style: none; margin: 24px 0; }
.contact-list li {
  padding: 12px 0; color: var(--muted);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.contact-list a { color: var(--mint); font-weight: 500; }
.map-frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  min-height: 300px; box-shadow: var(--shadow);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 300px; border: 0; }

/* PRICING */
.precio-line strong { display: block; color: var(--text); font-size: 1rem; }
.precio-line span { font-size: 0.82rem; color: var(--dim); }
.precio-note { font-size: 0.75rem; color: var(--cyan); margin-top: 4px; }

/* CATALOG */
.catalog-hero {
  padding: 72px 4vw 56px; text-align: center;
  position: relative; overflow: hidden;
}
.catalog-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,245,168,0.1), transparent),
    var(--void);
}
.catalog-hero > * { position: relative; z-index: 1; }
.catalog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800; margin-bottom: 16px;
}

.chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px; justify-content: center;
}
.chip {
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel-2); font-size: 0.85rem;
  color: var(--muted); cursor: pointer;
  transition: all 0.25s; font-family: var(--font-ui);
}
.chip.active, .chip:hover {
  background: linear-gradient(135deg, rgba(0,245,168,0.15), rgba(34,211,238,0.1));
  border-color: rgba(0, 245, 168, 0.4);
  color: var(--text);
}

.product-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.product-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow), var(--shadow);
  border-color: rgba(0, 245, 168, 0.3);
}
.product-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,8,16,0.6) 100%);
}
.product-body { padding: 28px; }
.product-body h2 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600; margin: 10px 0;
}
.product-body p { font-size: 0.92rem; color: var(--muted); margin-bottom: 14px; }
.sku {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--cyan); text-transform: uppercase;
}
.feat-tags {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 14px;
}
.feat-tags li {
  font-size: 0.75rem; padding: 5px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 999px; color: var(--muted);
}
.modalidad-tag {
  display: inline-block; font-size: 0.78rem;
  color: var(--mint); font-weight: 600; margin-bottom: 12px;
}

/* LEGAL */
.legal-page {
  width: min(760px, 92vw); margin: 0 auto;
  padding: 56px 0 72px;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.2rem; margin-bottom: 8px;
}
.legal-page .fecha { color: var(--dim); font-size: 0.88rem; margin-bottom: 28px; }
.legal-page h2 { font-size: 1.15rem; margin: 32px 0 12px; color: var(--mint); }
.legal-page p, .legal-page li { margin-bottom: 10px; color: var(--muted); font-size: 0.95rem; }
.legal-page ul { padding-left: 20px; margin-bottom: 16px; }
.legal-page code {
  background: var(--panel-2); padding: 2px 8px;
  border-radius: 6px; font-size: 0.88rem;
}

.legal-strip {
  background: var(--panel);
  border-top: 1px solid var(--border);
  text-align: center; padding: 14px 4vw;
  font-size: 0.82rem; color: var(--muted);
}
.legal-strip a { color: var(--mint); }

.site-footer {
  background: var(--void);
  border-top: 1px solid var(--border);
  padding: 56px 4vw 28px;
}
.footer-grid {
  width: min(1200px, 92vw); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-grid h4 {
  font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 16px; color: var(--text);
}
.footer-grid a {
  display: block; color: var(--dim);
  font-size: 0.88rem; margin-bottom: 10px;
}
.footer-grid a:hover { color: var(--mint); }
.footer-base {
  width: min(1200px, 92vw); margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px; text-align: center;
  font-size: 0.82rem; color: var(--dim);
}
.footer-legal { margin-top: 10px; font-size: 0.75rem; }

.fab-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  filter: drop-shadow(0 8px 24px rgba(37, 211, 102, 0.45));
  transition: transform 0.25s;
}
.fab-wa:hover { transform: scale(1.08); }

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--panel);
  border-top: 1px solid var(--border);
  padding: 20px 4vw;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(20px);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  width: min(1200px, 92vw); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 20px;
}
.cookie-inner p { font-size: 0.88rem; color: var(--muted); max-width: 640px; }
.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-vault { min-height: auto; padding-top: 32px; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .bento-card, .bento-card.span-7, .bento-card.span-5 { grid-column: span 12; }
  .process-line { grid-template-columns: 1fr 1fr; }
  .process-line::before { display: none; }
  .pill-grid { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-panel {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(300px, 88vw);
    background: var(--panel);
    border-left: 1px solid var(--border);
    flex-direction: column; padding: 88px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.35s;
    margin-left: 0; gap: 20px;
  }
  .nav-panel.open { transform: translateX(0); }
  .nav-btn { display: flex; align-items: center; justify-content: center; margin-left: auto; }
  .header-cta { display: none; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .process-line { grid-template-columns: 1fr; }
  .pill-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .quote-glass { padding: 36px 28px; }
  .cta-prism { padding: 48px 24px; }
  .dash-metrics { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-float, .dash-live::before { animation: none; }
}
