/* ============================================================
   VECTALIS DIGITAL — style.v1.css
   Sistema de diseño: navy oscuro + naranja + cian
   Fotografía real + capa HUD. Sin frameworks.
   ============================================================ */

:root {
  --bg: #060a13;
  --bg-2: #0a101d;
  --bg-3: #0e1626;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.055);
  --text: #eef2f9;
  --text-2: #a7b3c7;
  --text-3: #66738a;
  --accent: #ff5c29;
  --accent-2: #ff8a5c;
  --cyan: #38cfd9;
  --cyan-dim: rgba(56, 207, 217, 0.14);
  --ok: #34d399;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --radius: 14px;
  --radius-sm: 9px;
  --wrap: 1180px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.65);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }

/* ---------- Tipografía ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.015em; }
.h-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.h-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--cyan); opacity: 0.7; }
.h-xl { font-size: clamp(2.5rem, 5.6vw, 4.4rem); }
.h-lg { font-size: clamp(2rem, 4vw, 3.1rem); }
.h-md { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--text-2); max-width: 640px; }
.accent { color: var(--accent-2); }
.cyan { color: var(--cyan); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6, 10, 19, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: 0.01em; }
.brand img { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; }
.brand span em { font-style: normal; color: var(--accent-2); }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a.nav-link {
  font-size: 14.5px; color: var(--text-2); font-weight: 500;
  position: relative; padding: 6px 0; transition: color 0.25s;
}
.main-nav a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--accent); transition: width 0.28s;
}
.main-nav a.nav-link:hover, .main-nav a.nav-link.active { color: var(--text); }
.main-nav a.nav-link:hover::after, .main-nav a.nav-link.active::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; width: 42px; height: 42px; cursor: pointer; color: var(--text); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #e8491d);
  color: #fff; box-shadow: 0 12px 32px -10px rgba(255, 92, 41, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(255, 92, 41, 0.65); }
.btn-ghost { border-color: var(--line); color: var(--text); background: var(--surface); }
.btn-ghost:hover { background: var(--surface-2); border-color: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; }

/* ---------- Hero fotográfico + HUD ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; isolation: isolate; }
.hero-photo {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center 38%;
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,10,19,0.62) 0%, rgba(6,10,19,0.18) 42%, rgba(6,10,19,0.94) 88%),
    radial-gradient(58% 60% at 22% 68%, rgba(6,10,19,0.72) 0%, transparent 70%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: -1; opacity: 0.5;
  background-image:
    linear-gradient(rgba(56,207,217,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,207,217,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.hero-inner { width: 100%; padding: 170px 0 120px; position: relative; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan); border: 1px solid rgba(56,207,217,0.35); border-radius: 100px;
  padding: 8px 18px; margin-bottom: 28px; background: rgba(6,10,19,0.45); backdrop-filter: blur(6px);
}
.hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 10px var(--ok); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero h1 { max-width: 780px; margin-bottom: 26px; }
.hero .lead { margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Capa HUD: retículas + etiquetas de detección + telemetría */
.hud { position: absolute; inset: 0; pointer-events: none; z-index: 1; font-family: var(--font-mono); }
.hud-corner { position: absolute; width: 42px; height: 42px; border: 1px solid rgba(56,207,217,0.5); }
.hud-corner.tl { top: 96px; left: 30px; border-right: 0; border-bottom: 0; }
.hud-corner.tr { top: 96px; right: 30px; border-left: 0; border-bottom: 0; }
.hud-corner.bl { bottom: 30px; left: 30px; border-right: 0; border-top: 0; }
.hud-corner.br { bottom: 30px; right: 30px; border-left: 0; border-top: 0; }
.hud-label {
  position: absolute; font-size: 11px; letter-spacing: 0.14em; color: var(--cyan);
  background: rgba(6,10,19,0.55); border: 1px solid rgba(56,207,217,0.3);
  padding: 6px 11px; border-radius: 4px; backdrop-filter: blur(4px);
  opacity: 0; animation: hudIn 0.9s ease forwards;
}
.hud-label::before {
  content: ""; position: absolute; left: -22px; top: 50%; width: 22px; height: 1px; background: rgba(56,207,217,0.45);
}
.hud-label .v { color: var(--text); }
@keyframes hudIn { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }
.hud-scan {
  position: absolute; left: 0; right: 0; height: 1px; top: 0;
  background: linear-gradient(90deg, transparent, rgba(56,207,217,0.35), transparent);
  animation: scan 9s linear infinite;
}
@keyframes scan { from { transform: translateY(0); } to { transform: translateY(100svh); } }
.hero-telemetry {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  border-top: 1px solid var(--line-soft);
  background: rgba(6,10,19,0.6); backdrop-filter: blur(10px);
  font-family: var(--font-mono); font-size: 12px; color: var(--text-3);
}
.telemetry-inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.telemetry-inner::-webkit-scrollbar { display: none; }
.telemetry-item {
  display: flex; align-items: center; gap: 9px; padding: 13px 26px;
  border-right: 1px solid var(--line-soft); white-space: nowrap;
}
.telemetry-item .k { color: var(--text-3); letter-spacing: 0.08em; }
.telemetry-item .v { color: var(--cyan); }
.telemetry-item .v.ok { color: var(--ok); }

/* ---------- Secciones genéricas ---------- */
.section { padding: 118px 0; position: relative; }
.section.alt { background: var(--bg-2); }
.section-head { max-width: 680px; margin-bottom: 64px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .h-eyebrow { justify-content: center; }
.section-head.center .h-eyebrow::before { display: none; }
.section-head p { margin-top: 18px; }

/* ---------- Grid de servicios ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  position: relative; border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: var(--surface); padding: 30px 26px 28px;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  overflow: hidden; display: flex; flex-direction: column; gap: 14px;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(56,207,217,0.25); background: var(--surface-2); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center;
  background: var(--cyan-dim); border: 1px solid rgba(56,207,217,0.22); color: var(--cyan);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 18.5px; }
.service-card p { font-size: 14.5px; color: var(--text-2); flex: 1; }
.service-card .card-link {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-2); display: inline-flex; align-items: center; gap: 8px; margin-top: 4px;
}
.service-card .card-link svg { width: 13px; height: 13px; transition: transform 0.25s; }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Stats ---------- */
.stats-band { border-block: 1px solid var(--line-soft); background: var(--bg-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 46px 26px; border-right: 1px solid var(--line-soft); text-align: center; }
.stat:last-child { border-right: 0; }
.stat .num {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 3.6vw, 2.9rem);
  color: var(--text); line-height: 1;
}
.stat .num .suffix { color: var(--accent-2); }
.stat .lbl { margin-top: 10px; font-size: 13.5px; color: var(--text-3); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Bandas fotográficas ---------- */
.photo-band { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line-soft); }
.photo-band .band-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.photo-band .band-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,10,19,0.93) 22%, rgba(6,10,19,0.55) 60%, rgba(6,10,19,0.25) 100%); }
.photo-band .band-body { position: relative; z-index: 1; padding: clamp(40px, 6vw, 76px); max-width: 620px; }
.photo-band .band-body .lead { margin-top: 16px; }
.check-list { margin-top: 30px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--text-2); font-size: 15.5px; }
.check-list svg { width: 19px; height: 19px; color: var(--cyan); flex: none; margin-top: 3px; }

/* Split (texto + foto) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split .photo-frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow); }
.split .photo-frame img { aspect-ratio: 4/3.1; object-fit: cover; width: 100%; }
.split .photo-frame .frame-tag {
  position: absolute; bottom: 16px; left: 16px; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; color: var(--cyan); background: rgba(6,10,19,0.66);
  border: 1px solid rgba(56,207,217,0.3); padding: 6px 12px; border-radius: 4px; backdrop-filter: blur(4px);
}

/* ---------- Ventajas ---------- */
.perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.perk { padding: 30px 26px; border-radius: var(--radius); border: 1px solid var(--line-soft); background: var(--surface); transition: border-color 0.3s, transform 0.3s; }
.perk:hover { border-color: rgba(255,92,41,0.3); transform: translateY(-5px); }
.perk .perk-num { font-family: var(--font-mono); font-size: 12px; color: var(--accent-2); letter-spacing: 0.2em; }
.perk h3 { font-size: 18px; margin: 14px 0 10px; }
.perk p { font-size: 14.5px; color: var(--text-2); }

/* ---------- Testimonios ---------- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--surface);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 22px; position: relative;
}
.quote::before {
  content: "\201C"; position: absolute; top: 14px; right: 24px;
  font-family: var(--font-display); font-size: 74px; line-height: 1; color: rgba(56,207,217,0.16);
}
.quote p { color: var(--text-2); font-size: 15.5px; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 14px; }
.quote .avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cyan-dim); border: 1px solid rgba(56,207,217,0.25);
  font-family: var(--font-display); font-weight: 700; color: var(--cyan); font-size: 16px;
}
.quote .who .name { font-weight: 600; font-size: 15px; }
.quote .who .role { font-size: 13px; color: var(--text-3); }
.todo-flag {
  display: inline-block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--accent-2); border: 1px dashed rgba(255,92,41,0.5); border-radius: 4px; padding: 3px 8px; margin-top: 8px;
}

/* ---------- CTA final ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid rgba(255,92,41,0.22); }
.cta-band .cta-img { position: absolute; inset: 0; background-size: cover; background-position: center 70%; }
.cta-band .cta-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6,10,19,0.95) 30%, rgba(6,10,19,0.72) 100%); }
.cta-body { position: relative; z-index: 1; padding: clamp(48px, 7vw, 90px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; }
.cta-body h2 { max-width: 560px; }
.cta-body p { margin-top: 14px; color: var(--text-2); max-width: 520px; }

/* ---------- Formulario ---------- */
.form-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(36px, 5vw, 70px); align-items: start; }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 500; color: var(--text-2); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; color: var(--text); font-family: var(--font-body); font-size: 15.5px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--cyan); background: rgba(56,207,217,0.05);
  box-shadow: 0 0 0 3px rgba(56,207,217,0.12);
}
.field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 13px; color: var(--text-3); }
.form-note a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.form-status { font-family: var(--font-mono); font-size: 13.5px; padding: 13px 16px; border-radius: var(--radius-sm); display: none; }
.form-status.ok { display: block; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.35); color: var(--ok); }
.form-status.err { display: block; background: rgba(255,92,41,0.1); border: 1px solid rgba(255,92,41,0.4); color: var(--accent-2); }
.contact-cards { display: grid; gap: 16px; }
.contact-card { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--surface); padding: 24px 26px; display: flex; gap: 18px; align-items: flex-start; }
.contact-card .service-icon { width: 42px; height: 42px; flex: none; }
.contact-card h3 { font-size: 15.5px; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 15px; color: var(--text-2); }
.contact-card a:hover { color: var(--cyan); }

/* ---------- Detalle de servicio (servicios.html) ---------- */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4.5vw, 60px);
  padding: 44px 0; border-top: 1px solid var(--line-soft); align-items: center;
}
.service-detail:first-of-type { border-top: 0; padding-top: 0; }
.service-detail.flip .sd-text { order: 2; }
.service-detail .sd-text h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 16px; }
.service-detail .sd-text > p { color: var(--text-2); margin-bottom: 24px; }
.sd-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.sd-chips li {
  font-family: var(--font-mono); font-size: 12.5px; color: var(--text-2);
  border: 1px solid var(--line); border-radius: 100px; padding: 7px 15px; background: var(--surface);
  transition: border-color 0.25s, color 0.25s;
}
.sd-chips li:hover { border-color: var(--cyan); color: var(--cyan); }

/* ---------- Páginas legales ---------- */
.legal-body { max-width: 780px; }
.legal-body h2 { font-size: 1.35rem; margin: 44px 0 16px; }
.legal-body h3 { font-size: 1.1rem; margin: 28px 0 12px; }
.legal-body p, .legal-body li { color: var(--text-2); font-size: 15.5px; }
.legal-body ul { list-style: disc; padding-left: 22px; display: grid; gap: 8px; margin-top: 12px; }
.legal-body .todo-flag { margin: 6px 0 14px; }

/* ---------- Page hero (interiores) ---------- */
.page-hero { padding: 190px 0 90px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(52% 60% at 85% 0%, var(--cyan-dim) 0%, transparent 70%),
    radial-gradient(40% 55% at 0% 30%, rgba(255,92,41,0.09) 0%, transparent 70%);
}
.page-hero .wrap { position: relative; }
.page-hero .lead { margin-top: 20px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 64px 0 44px; }
.footer-brand p { color: var(--text-3); font-size: 14.5px; margin-top: 16px; max-width: 320px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-3); margin-bottom: 18px; font-weight: 500; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: 14.5px; color: var(--text-2); }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--line-soft); padding: 22px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-3);
}
.footer-bottom a { color: var(--text-3); }
.footer-bottom a:hover { color: var(--cyan); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; } .reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-photo { animation: none; }
  .hud-scan { display: none; }
}

/* ---------- 404 ---------- */
.error-hero { min-height: 78svh; display: grid; place-items: center; text-align: center; padding: 140px 0 80px; }
.error-hero .code { font-family: var(--font-mono); font-size: clamp(4rem, 12vw, 8rem); color: var(--cyan); opacity: 0.85; line-height: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .services-grid, .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat { border-bottom: 1px solid var(--line-soft); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: 0; }
  .quotes-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 84px 0; }
  .main-nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(6,10,19,0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line); padding: 12px 26px 22px;
    transform: translateY(-130%); transition: transform 0.32s ease;
  }
  .main-nav.open { transform: none; }
  .main-nav a.nav-link { padding: 15px 0; border-bottom: 1px solid var(--line-soft); font-size: 16px; }
  .main-nav .btn { margin-top: 16px; justify-content: center; }
  .nav-toggle { display: grid; place-items: center; }
  .split, .service-detail { grid-template-columns: 1fr; }
  .service-detail.flip .sd-text { order: 0; }
  .form-row { grid-template-columns: 1fr; }
  .hud-label { display: none; }
  .hero-inner { padding: 150px 0 130px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
