/* ═══════════════════════════════════════════════════════
   FINANZAS EJECUTIVAS — Obsidian Prism (v2)
   Space Grotesk + Cormorant Garamond
   ═══════════════════════════════════════════════════════ */
:root {
  --void: #050508;
  --void-soft: #0C0C14;
  --surface: #F7F8FC;
  --surface-2: #EEF0F8;
  --cyan: #22D3EE;
  --violet: #A78BFA;
  --gold: #FDE047;
  --text: #E8E8F0;
  --text-dark: #12121A;
  --muted: #8B8BA3;
  --muted-light: #6B7280;
  --border: rgba(255,255,255,0.08);
  --border-light: #DDE1EE;
  --font: system-ui, -apple-system, sans-serif;
  --display: Georgia, serif;
  --header-h: 72px;
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 32px 80px rgba(5, 5, 8, 0.45);
  --accent: var(--cyan);
  --emerald: var(--cyan);
  --copper: var(--violet);
  --font-head: var(--font);
  --bg: var(--surface);
  --bg-alt: var(--surface-2);
  --white: #fff;
}

html[data-fe-fonts] {
  --font: "Space Grotesk", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--void); color: var(--text); line-height: 1.6; overflow-x: hidden; }
body.nav-open { overflow: hidden; }
body.home { padding-top: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease), opacity 0.25s; }
.container, .wrap { width: min(1200px, 92%); margin-inline: auto; }

/* ─── HEADER FLOATING ─── */
.site-header, .header {
  position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 300; width: min(920px, calc(100% - 2rem));
  transition: top 0.4s var(--ease), box-shadow 0.4s;
}
.site-header.is-scrolled, .header.is-scrolled { top: 0.5rem; }
.site-header__inner, .header-row, .header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.65rem 0.65rem 0.65rem 1rem;
  background: rgba(12, 12, 20, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.logo, .brand { display: flex; align-items: center; gap: 0.65rem; font-weight: 700; color: #fff; }
.logo__glyph, .brand-badge, .brand-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: var(--void); font-weight: 800; font-size: 0.78rem; border-radius: 50%;
}
.logo__glyph.sm, .brand-badge.sm, .brand-icon.sm { width: 32px; height: 32px; font-size: 0.65rem; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; }
.logo__text span { color: var(--cyan); font-weight: 600; }
.brand-name { font-size: 0.95rem; }
.brand-name em { font-family: var(--display); font-style: italic; color: var(--violet); font-weight: 500; }

.site-nav, .nav { display: flex; align-items: center; gap: 1.25rem; }
.site-nav a, .nav a { font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 0.02em; }
.site-nav a:not(.btn):hover, .nav a:not(.btn):hover { color: #fff; }

.menu-toggle, .burger {
  display: none; width: 40px; height: 40px; border: none; border-radius: 50%;
  background: rgba(255,255,255,0.06); cursor: pointer; position: relative;
}
.menu-toggle i, .burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
.menu-toggle i:first-child, .burger span:nth-child(1) { top: 14px; }
.menu-toggle i:last-child, .burger span:nth-child(2) { top: 22px; }
.menu-toggle.is-open i:first-child, .burger.open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.menu-toggle.is-open i:last-child, .burger.open span:nth-child(2) { top: 18px; transform: rotate(-45deg); }
.burger span:nth-child(3) { display: none; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1.25rem; font-family: var(--font); font-size: 0.8125rem; font-weight: 700;
  border-radius: 999px; border: none; cursor: pointer; transition: all 0.35s var(--ease); white-space: nowrap;
}
.btn-xl { padding: 0.95rem 1.75rem; font-size: 0.9375rem; }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.75rem; }
.btn-block { width: 100%; }
.btn-primary, .btn-copper, .btn-fill {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: var(--void); box-shadow: 0 0 40px rgba(34, 211, 238, 0.25);
}
.btn-primary:hover, .btn-copper:hover, .btn-fill:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(167, 139, 250, 0.35); color: var(--void); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }
.btn-outline-dark { background: transparent; border: 2px solid var(--text-dark); color: var(--text-dark); }
.btn-outline-dark:hover { background: var(--text-dark); color: #fff; }
.btn-outline, .btn-outline-light, .btn-line { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.btn-whatsapp { margin-top: 1rem; background: #25D366; color: #fff; border-radius: var(--radius-sm); }
.btn-whatsapp:hover { color: #fff; filter: brightness(1.05); }

/* ─── MASTHEAD ─── */
.masthead {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem; overflow: hidden;
}
.masthead__bg { position: absolute; inset: 0; background: var(--void); }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; animation: drift 14s ease-in-out infinite alternate; }
.orb--1 { width: 55vw; height: 55vw; max-width: 600px; background: radial-gradient(circle, rgba(34,211,238,0.35), transparent 70%); top: -10%; left: -15%; }
.orb--2 { width: 45vw; height: 45vw; max-width: 500px; background: radial-gradient(circle, rgba(167,139,250,0.4), transparent 70%); bottom: -5%; right: -10%; animation-delay: -6s; }
@keyframes drift { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(30px,-20px) scale(1.05)} }
.grid-lines {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.masthead__content { position: relative; z-index: 2; }
.masthead__legal { font-size: 0.72rem; color: var(--muted); margin-bottom: 1.5rem; }
.masthead__legal a { color: var(--cyan); text-decoration: underline; }
.masthead__title { font-family: var(--display); font-weight: 600; margin-bottom: 1.25rem; }
.masthead__title .line { display: block; font-size: clamp(2.5rem, 8vw, 5.5rem); line-height: 0.95; letter-spacing: -0.02em; }
.masthead__title .line--accent {
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.masthead__title .line--dim { color: rgba(255,255,255,0.35); font-style: italic; }
.masthead__sub { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--muted); max-width: 540px; margin-bottom: 2rem; line-height: 1.7; }
.masthead__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }
.masthead__cards { display: grid; gap: 0.75rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); max-width: 640px; }
.mini-card {
  padding: 1.15rem; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); backdrop-filter: blur(8px); transition: transform 0.3s, border-color 0.3s;
}
.mini-card:hover { transform: translateY(-4px); border-color: rgba(34,211,238,0.4); }
.mini-card span { font-size: 0.65rem; font-weight: 800; color: var(--violet); letter-spacing: 0.1em; }
.mini-card strong { display: block; font-size: 1.1rem; margin: 0.25rem 0; color: #fff; }
.mini-card p { font-size: 0.75rem; color: var(--muted); }
.mini-card--hot { border-color: rgba(34,211,238,0.35); background: rgba(34,211,238,0.06); }
.masthead__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ─── REVEAL ─── */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible, .reveal.is-visible { opacity: 1; transform: none; }

/* ─── PILLARS ─── */
.pillars { padding: 5rem 0; background: var(--surface); color: var(--text-dark); }
.pillars__grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.pillar { padding: 2rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border-light); transition: box-shadow 0.3s; }
.pillar:hover { box-shadow: 0 20px 50px rgba(18, 18, 26, 0.08); }
.pillar__icon { font-size: 1.5rem; color: var(--violet); margin-bottom: 0.75rem; }
.pillar h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.pillar p { font-size: 0.9rem; color: var(--muted-light); }

/* ─── HSCROLL SERVICES ─── */
.hscroll-section { padding: 5rem 0; background: var(--void-soft); }
.section-head { margin-bottom: 2rem; }
.section-head.center { text-align: center; }
.section-head h2 { font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.1; color: #fff; }
.section-head h2 em { font-style: italic; color: var(--violet); }
.section-head__sub { color: var(--muted); margin-top: 0.5rem; font-size: 0.9375rem; }
.section-head__sub a { color: var(--cyan); }
.kicker { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.5rem; }
.kicker--light { color: var(--violet); }

.hscroll-wrap { position: relative; display: flex; align-items: center; gap: 0.5rem; }
.hscroll-track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding: 0.5rem 0 1rem; flex: 1;
}
.hscroll-track::-webkit-scrollbar { display: none; }
.hscroll-btn {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: rgba(255,255,255,0.05); color: #fff; cursor: pointer; font-size: 1rem; transition: 0.3s;
}
.hscroll-btn:hover { background: rgba(34,211,238,0.15); border-color: var(--cyan); }

.slide-card {
  flex: 0 0 min(300px, 85vw); scroll-snap-align: start;
  padding: 1.75rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; flex-direction: column; gap: 0.75rem; transition: 0.3s;
}
.slide-card:hover { border-color: rgba(167,139,250,0.5); background: rgba(167,139,250,0.06); }
.slide-card__top { display: flex; align-items: flex-start; gap: 1rem; }
.slide-card__top span { font-family: var(--display); font-size: 2rem; font-style: italic; color: rgba(255,255,255,0.15); line-height: 1; }
.slide-card h3 { font-size: 1.125rem; color: #fff; }
.slide-card p { font-size: 0.875rem; color: var(--muted); flex: 1; }
.slide-card footer { font-size: 0.8125rem; font-weight: 700; color: var(--cyan); padding-top: 0.75rem; border-top: 1px solid var(--border); }

/* ─── SHOWCASE ─── */
.showcase { padding: 5rem 0; background: var(--surface); color: var(--text-dark); }
.showcase__grid { display: grid; gap: 3rem; align-items: center; }
.showcase__visual { position: relative; border-radius: var(--radius); overflow: hidden; }
.showcase__visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.stat-stack { position: absolute; bottom: 1.5rem; right: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.stat-stack__item { padding: 1rem 1.25rem; background: rgba(5,5,8,0.85); backdrop-filter: blur(12px); border-radius: var(--radius-sm); color: #fff; border-left: 3px solid var(--cyan); }
.stat-stack__item strong { display: block; font-family: var(--display); font-size: 1.75rem; line-height: 1; }
.stat-stack__item span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; }
.showcase__copy h2 { font-family: var(--display); font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
.showcase__copy h2 em { font-style: italic; color: var(--violet); }
.process-v { list-style: none; display: flex; flex-direction: column; gap: 0; }
.process-v li { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border-light); }
.process-v .dot { width: 12px; height: 12px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--violet)); margin-top: 0.35rem; flex-shrink: 0; }
.process-v strong { display: block; font-size: 1rem; margin-bottom: 0.15rem; }
.process-v p { font-size: 0.875rem; color: var(--muted-light); }
.disclaimer { font-size: 0.72rem; color: var(--muted-light); font-style: italic; margin-top: 1rem; }

/* ─── PRICING LIGHT ─── */
.pricing-light { padding: 5rem 0; background: linear-gradient(180deg, var(--surface-2), var(--surface)); color: var(--text-dark); }
.pricing-cards { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.pcard {
  position: relative; padding: 2rem 1.75rem; background: var(--white);
  border: 1px solid var(--border-light); border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(18,18,26,0.1); }
.pcard--featured { border: 2px solid transparent; background: linear-gradient(#fff,#fff) padding-box, linear-gradient(135deg, var(--cyan), var(--violet)) border-box; }
.pcard__badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); padding: 0.2rem 0.85rem; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; background: linear-gradient(135deg, var(--cyan), var(--violet)); color: var(--void); border-radius: 999px; }
.pcard header h3 { font-size: 1.125rem; }
.pcard header p { font-size: 0.8125rem; color: var(--muted-light); margin-bottom: 1rem; }
.pcard__price { font-family: var(--display); font-size: 2.75rem; font-weight: 700; margin-bottom: 1.25rem; background: linear-gradient(135deg, #0891B2, #7C3AED); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pcard ul { list-style: none; margin-bottom: 1.5rem; }
.pcard li { padding: 0.35rem 0; padding-left: 1rem; position: relative; font-size: 0.875rem; color: var(--muted-light); }
.pcard li::before { content: "→"; position: absolute; left: 0; color: var(--violet); font-size: 0.75rem; }
.pricing-extra { text-align: center; margin-top: 1.5rem; font-size: 0.875rem; color: var(--muted-light); }
.pricing-legal { max-width: 640px; margin: 1rem auto 0; text-align: center; font-size: 0.8125rem; color: var(--muted-light); line-height: 1.65; }
.pricing-legal a { color: #7C3AED; text-decoration: underline; }

/* ─── VOICES ─── */
.voices { padding: 5rem 0; background: var(--void); }
.voices .section-head h2 { color: #fff; }
.voices__grid { display: grid; gap: 1rem; grid-template-columns: 1.2fr 1fr; grid-template-rows: auto auto; }
.voice { padding: 1.75rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius); }
.voice--large { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, rgba(34,211,238,0.08), rgba(167,139,250,0.08)); border-color: rgba(167,139,250,0.25); }
.voice p { font-family: var(--display); font-size: 1.25rem; font-style: italic; line-height: 1.5; margin-bottom: 1.25rem; color: rgba(255,255,255,0.9); }
.voice--large p { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
.voice footer { display: flex; align-items: center; gap: 0.75rem; }
.voice footer span { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--violet)); color: var(--void); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.75rem; }
.voice footer strong { display: block; font-size: 0.875rem; }
.voice footer em { font-size: 0.75rem; color: var(--muted); font-style: normal; }

/* ─── FAQ ─── */
.faq-block { padding: 4rem 0; background: var(--surface); color: var(--text-dark); }
.faq-block__inner { display: grid; gap: 2rem; align-items: start; }
.faq-block h2 { font-family: var(--display); font-size: 2rem; }
.faq-list details { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-sm); margin-bottom: 0.5rem; overflow: hidden; }
.faq-list summary { padding: 1rem 1.15rem; font-weight: 600; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { padding: 0 1.15rem 1rem; font-size: 0.9rem; color: var(--muted-light); }
.faq-list a { color: #7C3AED; }

/* ─── CONTACT DECK ─── */
.contact-deck { padding: 5rem 0; background: var(--void-soft); }
.contact-deck__grid { display: grid; gap: 2.5rem; }
.contact-deck h2 { font-family: var(--display); font-size: clamp(2rem, 4vw, 2.75rem); color: #fff; margin-bottom: 1.5rem; }
.contact-deck h2 em { font-style: italic; color: var(--violet); }
.contact-list { list-style: none; margin-bottom: 1rem; }
.contact-list li { padding: 0.65rem 0; font-size: 0.9375rem; color: var(--muted); border-bottom: 1px solid var(--border); }
.contact-list strong { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan); margin-bottom: 0.15rem; }
.contact-list a { color: #fff; }
.contact-list a:hover { color: var(--cyan); }
.map-box, .map-wrap { margin-top: 1.5rem; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); min-height: 220px; }
.map-box iframe, .map-wrap iframe { width: 100%; height: 220px; border: 0; }

.contact-form, .form {
  padding: 2rem; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); backdrop-filter: blur(12px);
}
.contact-form h3, .form h3 { font-family: var(--display); font-size: 1.5rem; color: #fff; margin-bottom: 0.35rem; }
.form-note, .form-hint { font-size: 0.8125rem; color: var(--muted); margin-bottom: 1.25rem; }
.field { margin-bottom: 0.85rem; }
.field label { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.35rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.85rem 1rem; font-family: var(--font); font-size: 0.9375rem;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: var(--radius-sm); color: #fff;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(34,211,238,0.15); }
.check { display: flex; gap: 0.5rem; font-size: 0.78rem; color: var(--muted); margin: 0.75rem 0; cursor: pointer; }
.check input { accent-color: var(--cyan); margin-top: 0.15rem; }
.check a { color: var(--cyan); text-decoration: underline; }
.err { display: block; font-size: 0.72rem; color: #F87171; min-height: 0.85rem; }
.ok { margin-top: 0.75rem; padding: 0.85rem; background: rgba(34,211,238,0.1); border-radius: var(--radius-sm); color: var(--cyan); font-size: 0.875rem; font-weight: 600; }

.legal-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1.25rem;
  padding: 1.5rem 2rem; background: var(--void); border-top: 1px solid var(--border);
}
.legal-strip a, .legal-strip button { font-size: 0.75rem; font-weight: 600; color: var(--muted); background: none; border: none; font-family: var(--font); cursor: pointer; letter-spacing: 0.02em; }
.legal-strip a:hover, .legal-strip button:hover { color: var(--cyan); }

/* ─── LEGAL HUB ─── */
.legal-hub { padding: 5rem 0; background: var(--surface); color: var(--text-dark); }
.legal-hub .section-head h2 { color: var(--text-dark); }
.legal-hub .section-head h2 em { color: #7C3AED; }
.legal-hub .section-head__sub { color: var(--muted-light); max-width: 560px; margin-inline: auto; }
.legal-hub__grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin-top: 2rem;
}
.legal-card {
  display: flex; flex-direction: column; gap: 0.5rem; padding: 1.5rem;
  background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-sm);
  text-align: left; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  color: var(--text-dark); cursor: pointer; font: inherit; width: 100%;
}
a.legal-card:hover, button.legal-card:hover {
  transform: translateY(-4px); box-shadow: 0 16px 40px rgba(18,18,26,0.08);
  border-color: rgba(124,58,237,0.35);
}
.legal-card__icon { font-size: 1.5rem; line-height: 1; }
.legal-card h3 { font-size: 0.9375rem; font-weight: 700; }
.legal-card p { font-size: 0.8125rem; color: var(--muted-light); line-height: 1.55; flex: 1; }
.legal-card--btn { appearance: none; -webkit-appearance: none; }

.footer-cookie-btn {
  display: block; background: none; border: none; font: inherit; font-size: 0.8125rem;
  color: var(--muted); cursor: pointer; margin-bottom: 0.35rem; text-align: left; padding: 0;
}
.footer-cookie-btn:hover { color: var(--cyan); }

/* ─── FOOTER ─── */
.site-footer, .footer { background: var(--void); border-top: 1px solid var(--border); padding-top: 3rem; color: var(--muted); }
.site-footer__grid, .foot-grid { display: grid; gap: 2rem; grid-template-columns: 2fr 1fr 1fr 1fr; padding-bottom: 2.5rem; }
.site-footer h4, .foot-grid h4 { color: #fff; font-size: 0.8rem; margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.site-footer a, .foot-grid a, .site-footer p, .foot-grid p { display: block; font-size: 0.8125rem; margin-bottom: 0.35rem; color: var(--muted); }
.site-footer a:hover, .foot-grid a:hover { color: var(--cyan); }
.site-footer__brand p, .foot-brand p { margin-top: 0.75rem; max-width: 260px; line-height: 1.6; }
.site-footer__bar, .foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1.25rem 0 2rem; border-top: 1px solid var(--border); font-size: 0.75rem; }
.site-footer__bar a, .foot-bottom a { color: var(--violet); }
.link-btn { background: none; border: none; color: var(--cyan); font: inherit; cursor: pointer; text-decoration: underline; }

.compliance-bar { padding: 0.875rem 0 1.25rem; text-align: center; font-size: 0.72rem; color: var(--muted); background: var(--void); }

/* ─── LEGAL PAGES ─── */
body:not(.home) { padding-top: calc(var(--header-h) + 2rem); background: var(--surface); color: var(--text-dark); }
body:not(.home) .site-header, body:not(.home) .header { top: 0.75rem; }
body:not(.home) .site-header__inner, body:not(.home) .header-row, body:not(.home) .header-inner {
  background: rgba(255,255,255,0.9); border-color: var(--border-light); box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
body:not(.home) .site-nav a, body:not(.home) .nav a { color: var(--muted-light); }
body:not(.home) .site-nav a:not(.btn):hover, body:not(.home) .nav a:not(.btn):hover { color: var(--text-dark); }
body:not(.home) .logo, body:not(.home) .brand { color: var(--text-dark); }
body:not(.home) .menu-toggle i, body:not(.home) .burger span { background: var(--text-dark); }
.compliance-strip { display: none; }

/* ─── RESPONSIVE ─── */
@media (min-width: 900px) {
  .showcase__grid { grid-template-columns: 1fr 1fr; }
  .contact-deck__grid { grid-template-columns: 1fr 1fr; }
  .faq-block__inner { grid-template-columns: 1fr 1.4fr; }
}

@media (max-width: 899px) {
  .voices__grid { grid-template-columns: 1fr; }
  .voice--large { grid-row: span 1; }
  .hscroll-btn { display: none; }
}

@media (max-width: 767px) {
  .menu-toggle, .burger { display: block; }
  .site-nav, .nav {
    position: fixed; inset: 0; top: 0; flex-direction: column; justify-content: center;
    background: rgba(5,5,8,0.97); backdrop-filter: blur(20px);
    transform: translateX(100%); transition: transform 0.4s var(--ease); z-index: 250; gap: 0;
  }
  .site-nav.is-open, .nav.open { transform: none; }
  .site-nav a, .nav a { padding: 1rem; font-size: 1.125rem; color: #fff !important; }
  .site-footer__grid, .foot-grid { grid-template-columns: 1fr 1fr; }
  .masthead__title .line { font-size: clamp(2rem, 11vw, 3.5rem); }
}

@media (max-width: 480px) {
  .site-footer__grid, .foot-grid { grid-template-columns: 1fr; }
}
