@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;0,6..72,700;1,6..72,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --void: #06090f;
  --void-2: #0d1219;
  --void-3: #151c28;
  --gold: #d4af37;
  --gold-light: #f0d78c;
  --mint: #3dffc8;
  --text: #f4f2ed;
  --muted: #8b93a8;
  --line: rgba(255,255,255,.08);
  --glass: rgba(255,255,255,.04);
  --max: 1200px;
  --font-ui: 'Space Grotesk', system-ui, sans-serif;
  --font-display: 'Newsreader', Georgia, serif;
  --radius: 18px;
  --glow: 0 0 60px rgba(212,175,55,.18);
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--void);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--mint); }
ul { list-style: none; }
.skip-link { position: absolute; left: -9999px; z-index: 10000; background: var(--gold); color: var(--void); padding: 10px 16px; }
.skip-link:focus { left: 12px; top: 12px; }

/* Top + header */
.top-bar {
  background: rgba(6,9,15,.92);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .7rem;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  letter-spacing: .04em;
}
.tasa-bcv { color: var(--mint); font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(6,9,15,.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(6,9,15,.95);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo img { height: 38px; width: auto; }
.nav-panel { display: flex; gap: 6px; margin-left: auto; }
.nav-panel a {
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .82rem;
  color: var(--muted);
  transition: all .2s;
}
.nav-panel a:hover, .nav-panel a.active {
  color: var(--text);
  background: var(--glass);
  border: 1px solid var(--line);
}
.header-cta { margin-left: 4px; }
.nav-btn {
  display: none;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  color: var(--text);
  cursor: pointer;
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform .2s, box-shadow .2s, background .2s;
  letter-spacing: .02em;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--void);
  box-shadow: var(--glow);
}
.btn-gold:hover { box-shadow: 0 0 80px rgba(212,175,55,.35); color: var(--void); }
.btn-glass {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn-glass:hover { border-color: rgba(212,175,55,.4); color: var(--gold-light); }
.btn-block { width: 100%; }

/* Hero aurora */
.hero-aurora {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 24px 80px;
}
.hero-aurora-bg {
  position: absolute;
  inset: 0;
  background: var(--void);
}
.hero-aurora-bg::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 70% 55% at 15% 35%, rgba(212,175,55,.2), transparent 55%),
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(61,255,200,.1), transparent 50%),
    radial-gradient(ellipse 50% 50% at 55% 85%, rgba(90,110,220,.12), transparent 55%);
  animation: aurora 14s ease-in-out infinite alternate;
}
.hero-aurora-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--void) 100%);
}
@keyframes aurora {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3%, -2%) scale(1.05); }
}
.hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--mint);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--gold));
}
.hero-aurora h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.gradient-text {
  background: linear-gradient(120deg, #fff 0%, var(--gold-light) 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-disclaimer {
  font-size: .74rem;
  color: rgba(139,147,168,.9);
  max-width: 480px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}

/* Hero dashboard glass */
.hero-dashboard {
  position: relative;
}
.glass-panel {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  backdrop-filter: blur(24px);
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.glass-panel-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 50%, rgba(212,175,55,.12), transparent 70%);
  z-index: -1;
  border-radius: 40px;
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: .75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.dash-live { color: var(--mint); display: flex; align-items: center; gap: 6px; }
.dash-live::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.dash-metric {
  background: rgba(0,0,0,.25);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--line);
}
.dash-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.dash-metric span { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.dash-chart {
  height: 100px;
  background: linear-gradient(180deg, rgba(61,255,200,.15) 0%, transparent 100%);
  border-radius: 12px;
  border: 1px solid var(--line);
  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 80' preserveAspectRatio='none'%3E%3Cpath d='M0 60 L40 45 L80 50 L120 25 L160 35 L200 15 L240 30 L280 10 L300 20 L300 80 L0 80Z' fill='rgba(61,255,200,.25)'/%3E%3Cpath d='M0 60 L40 45 L80 50 L120 25 L160 35 L200 15 L240 30 L280 10 L300 20' fill='none' stroke='%233dffc8' stroke-width='2'/%3E%3C/svg%3E") bottom/cover no-repeat;
}
.dash-img {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.dash-img img { width: 100%; height: 140px; object-fit: cover; opacity: .9; }

/* Marquee */
.marquee-wrap {
  border-block: 1px solid var(--line);
  background: var(--void-2);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track span em { color: var(--gold); font-style: normal; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
.section { padding: clamp(64px, 10vw, 110px) 24px; position: relative; }
.section-dark { background: var(--void); }
.section-elevated { background: var(--void-2); }
.container { max-width: var(--max); margin: 0 auto; }
.section-intro { margin-bottom: 48px; }
.section-intro.center { text-align: center; }
.section-intro.center p { margin: 0 auto; }
.eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 14px;
}
.section-intro p { color: var(--muted); max-width: 560px; font-size: 1rem; }

/* Bento services */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}
.bento-card {
  background: var(--void-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,.06), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.35);
  box-shadow: var(--glow);
}
.bento-card:hover::before { opacity: 1; }
.bento-card.span-7 { grid-column: span 7; }
.bento-card.span-5 { grid-column: span 5; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-8 { grid-column: span 8; }
.bento-card a { color: inherit; display: block; height: 100%; }
.bento-img { height: 200px; overflow: hidden; position: relative; }
.bento-card.span-7 .bento-img { height: 260px; }
.bento-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .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%, var(--void-3) 100%);
}
.bento-body { padding: 22px 24px 26px; }
.bento-sku { font-size: .68rem; font-weight: 700; color: var(--mint); letter-spacing: .1em; }
.bento-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 8px 0 10px;
  line-height: 1.25;
}
.bento-body p { font-size: .86rem; color: var(--muted); margin-bottom: 14px; }
.precio-line { font-size: .86rem; }
.precio-line strong { color: var(--gold-light); }
.precio-line span { display: block; font-size: .74rem; color: var(--muted); margin-top: 2px; }
.precio-note { font-size: .7rem; color: var(--mint); font-weight: 600; margin-top: 4px; }

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--mint), var(--gold));
  opacity: .5;
}
.tl-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.tl-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--void-2);
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow);
}
.tl-step h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.tl-step p { font-size: .8rem; color: var(--muted); }

/* Benefits pills */
.pill-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pill-card {
  padding: 28px 22px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--void-3), var(--void-2));
  border: 1px solid var(--line);
  text-align: center;
  transition: border-color .25s;
}
.pill-card:hover { border-color: rgba(61,255,200,.3); }
.pill-icon { font-size: 2rem; margin-bottom: 14px; }
.pill-card h3 { font-size: .92rem; font-weight: 700; margin-bottom: 8px; }
.pill-card p { font-size: .8rem; color: var(--muted); }

/* Quote */
.quote-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--glass);
  backdrop-filter: blur(12px);
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 16px;
}
.quote-block cite { font-size: .82rem; color: var(--gold); font-style: normal; font-weight: 600; }

/* FAQ */
.faq-grid { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 10px;
  background: var(--void-3);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: .94rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: '+'; color: var(--gold); font-size: 1.3rem; font-weight: 400; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 22px 18px; font-size: .88rem; color: var(--muted); line-height: 1.65; }
.faq-item.open .faq-a { display: block; }

/* CTA */
.cta-prism {
  text-align: center;
  padding: 72px 32px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--void-2), var(--void-2)) padding-box,
    linear-gradient(135deg, var(--gold), var(--mint), var(--gold)) border-box;
}
.cta-prism h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}
.cta-prism p { color: var(--muted); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Contact */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
  color: var(--muted);
}
.contact-list a { color: var(--gold-light); }
.map-frame iframe { width: 100%; height: 320px; border: 1px solid var(--line); border-radius: var(--radius); }

/* Footer */
.legal-strip {
  background: var(--void-2);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 14px 24px;
  font-size: .78rem;
  color: var(--muted);
}
.site-footer {
  background: var(--void);
  border-top: 1px solid var(--line);
  padding: 56px 24px 28px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
}
.footer-grid h4 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-grid a { color: var(--muted); font-size: .86rem; display: block; margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-base {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .76rem;
  color: var(--muted);
}
.footer-legal { margin-top: 8px; opacity: .7; }

/* Cookie + WA */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13,18,25,.97);
  border-top: 1px solid var(--line);
  padding: 18px 24px;
  z-index: 300;
  transform: translateY(110%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  backdrop-filter: blur(12px);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-inner p { font-size: .82rem; color: var(--muted); flex: 1; min-width: 220px; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.fab-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 250;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  transition: transform .25s;
}
.fab-wa:hover { transform: scale(1.08); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Catalog */
.catalog-hero {
  padding: 80px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.catalog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,.12), transparent);
}
.catalog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  position: relative;
  margin-bottom: 12px;
}
.catalog-hero p { color: var(--muted); max-width: 600px; margin: 0 auto; position: relative; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.chip {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  background: var(--void-3);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all .2s;
}
.chip.active, .chip:hover {
  background: linear-gradient(135deg, rgba(212,175,55,.2), rgba(61,255,200,.1));
  border-color: rgba(212,175,55,.4);
  color: var(--gold-light);
}
.svc-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: var(--void-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 22px;
  overflow: hidden;
  scroll-margin-top: 100px;
  transition: border-color .25s, box-shadow .25s;
}
.svc-row:hover { border-color: rgba(212,175,55,.3); box-shadow: var(--glow); }
.svc-row-img img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.svc-row-body { padding: 28px 32px; }
.svc-row-body .sku { font-size: .7rem; color: var(--mint); font-weight: 700; letter-spacing: .1em; }
.svc-row-body h2 { font-family: var(--font-display); font-size: 1.35rem; margin: 8px 0 12px; }
.svc-row-body p { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.feat-tags li {
  font-size: .72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(61,255,200,.08);
  border: 1px solid rgba(61,255,200,.2);
  color: var(--mint);
}
.modalidad-tag { font-size: .72rem; color: var(--gold); font-weight: 600; display: block; margin-bottom: 12px; }

.legal-page { max-width: 720px; margin: 0 auto; padding: 56px 24px 80px; }
.legal-page h1 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 8px; }
.legal-page .fecha { color: var(--muted); font-size: .86rem; margin-bottom: 28px; }
.legal-page h2 { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold-light); margin: 28px 0 10px; }
.legal-page p, .legal-page li { font-size: .9rem; color: var(--muted); margin-bottom: 10px; }
.legal-page ul { list-style: disc; padding-left: 22px; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--void-3);
  border: 1px solid var(--line);
}
.contact-card h3 { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 10px; }

.nosotros-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.nosotros-layout img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--glow); }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-dashboard { max-width: 480px; margin: 0 auto; }
  .bento-card.span-7, .bento-card.span-5, .bento-card.span-4, .bento-card.span-8 { grid-column: span 6; }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .timeline, .pill-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(6,9,15,.98);
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }
  .nav-panel.open { display: flex; }
  .nav-btn { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.span-7, .bento-card.span-5, .bento-card.span-4, .bento-card.span-8 { grid-column: span 1; }
  .pill-grid, .timeline, .contact-split, .nosotros-layout, .contact-cards, .footer-grid { grid-template-columns: 1fr; }
  .dash-metrics { grid-template-columns: 1fr; }
  .stat-ribbon-inner { grid-template-columns: 1fr 1fr; }
}
