/* ════════════════════════════════════════════════════════════
   TecAxle — Shared Design System
   Navy + Cerulean. Outfit + Plus Jakarta Sans.
   ════════════════════════════════════════════════════════════ */

:root {
  --navy: #0B1426;
  --navy-mid: #111D33;
  --navy-light: #1A2A44;
  --blue-primary: #2563EB;
  --blue-bright: #3B82F6;
  --blue-light: #60A5FA;
  --blue-pale: #93C5FD;
  --blue-wash: #DBEAFE;
  --blue-50: #EFF6FF;
  --canvas: #F8F9FA;              /* page-level background (services sections) */
  --surface: #FAFBFD;
  --surface-warm: #F1F5F9;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #6B7A99;
  --text-inverse: #E2E8F0;        /* primary text on dark backgrounds */
  --text-secondary-inverse: #94A3B8; /* secondary text on dark backgrounds */
  --white: #FFFFFF;
  --success: #10B981;
  --warning: #F59E0B;
  --jump-nav-height: 45px;        /* height of sticky services jump nav */
  /* ── Premium shadow scale (multi-layer, Stripe-style) ── */
  --shadow-xs:   0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.05), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-blue: 0 4px 14px rgba(37,99,235,0.10), 0 14px 40px rgba(37,99,235,0.09);
  /* ── Services page section surfaces ── */
  --surface-alt: #F5F7FB;           /* cool-grey alt-section background */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }

/* Respect OS motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto !important; }
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* Global focus indicator */
:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip navigation link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue-primary); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ════════════ Type ════════════ */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 { font-size: 56px; font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: 38px; font-weight: 800; }
h3 { font-size: 24px; font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; }
p { margin-bottom: 14px; color: var(--text-secondary); }
.lead { font-size: 19px; color: var(--text-secondary); line-height: 1.7; }

.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--blue-primary); margin-bottom: 18px;
}
.eyebrow.on-dark { color: var(--blue-light); }

/* ════════════ Layout ════════════ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
section { padding: 100px 0; }

/* ════════════ Buttons ════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 10px;
  background: var(--blue-primary); color: var(--white);
  font-weight: 600; font-size: 14px;
  transition: transform .15s, background .15s, box-shadow .15s;
  border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 4px 14px rgba(37,99,235,0.25);
}
.btn-primary:hover {
  background: #1D4ED8; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.35);
  color: var(--white);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 10px;
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border);
  font-weight: 600; font-size: 14px;
  transition: all .15s;
}
.btn-secondary:hover { border-color: var(--navy); background: var(--surface-warm); }
.btn-on-dark {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-on-dark:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
.cta-row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

/* ════════════ Nav ════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: inline-flex; align-items: center;
  color: var(--navy);
}
.nav-logo .brand-mark { display: block; height: 30px; width: auto; }
.footer-brand .nav-logo .brand-mark { height: 28px; }
.nav-links { display: flex; gap: 36px; font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.nav-links a { color: inherit; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active { font-weight: 600; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 10px 20px; border-radius: 10px;
  font-weight: 600; font-size: 13px;
  transition: transform .15s, background .15s;
}
.nav-cta:hover { background: var(--blue-primary); transform: translateY(-1px); color: var(--white); }

/* ════════════ Footer ════════════ */
footer {
  background: #08101F;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; }
.footer-tagline {
  font-size: 12px; color: var(--blue-light); margin-bottom: 18px;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
}
.footer-blurb {
  font-size: 14px; color: rgba(255,255,255,0.6);
  line-height: 1.7; max-width: 320px;
}
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 0; }
.footer-col a {
  color: rgba(255,255,255,0.72); font-size: 14px;
  transition: color .15s;
  display: block;
  padding: 10px 0;
  min-height: 40px;
  line-height: 1.4;
}
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 13px;
  transition: all .15s;
}
.footer-social a:hover {
  border-color: var(--blue-primary); color: var(--blue-light);
  background: rgba(37,99,235,0.1);
}

/* ════════════ Hero (shared) ════════════ */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 110px 0 110px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -250px; right: -150px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-primary), transparent);
}
.page-hero h1, .page-hero h2 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,0.75); }
.hero-content {
  max-width: 880px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 999px;
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.25);
  color: var(--blue-light);
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 28px;
}

/* ════════════ Section header ════════════ */
.section-header {
  text-align: center; max-width: 760px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 14px; }

/* ════════════ Cards (generic) ════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all .2s;
}
.card:hover {
  border-color: var(--blue-pale);
  box-shadow: 0 16px 40px -16px rgba(37,99,235,0.18);
  transform: translateY(-3px);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-wash); color: var(--blue-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
}
.card h3 { font-size: 18px; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ════════════ CTA strip ════════════ */
.cta-section {
  background: var(--surface);
  padding: 110px 0; text-align: center;
}
.cta-section h2 { font-size: 42px; max-width: 720px; margin: 0 auto 18px; }
.cta-section .lead { max-width: 620px; margin: 0 auto; }
.cta-section .cta-row { justify-content: center; }

.cta-dark {
  background: var(--navy);
  color: var(--white);
  padding: 90px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-dark::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.cta-dark h2 { color: var(--white); }
.cta-dark .lead { color: rgba(255,255,255,0.7); max-width: 640px; margin: 0 auto; }
.cta-dark .cta-row { justify-content: center; position: relative; z-index: 1; }
.cta-dark > .container { position: relative; z-index: 1; }

/* ════════════ Responsive ════════════ */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
/* Mobile menu button */
.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  gap: 6px;
  align-items: center;
  line-height: 1;
}
.menu-btn:focus-visible { outline: 2px solid var(--blue-primary); outline-offset: 3px; }
.menu-btn svg { flex-shrink: 0; }

@media (max-width: 720px) {
  .menu-btn { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 24px; font-size: 15px; }
  .nav-inner { padding: 14px 20px; }
  .container, .container-narrow { padding: 0 20px; }
  section { padding: 60px 0; }
  .page-hero { padding: 70px 0 80px; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ════════════════════════════════════════════════════════════
   TecAxle V2 — Editorial / Architectural shared styles
   Extends styles.css with v2 hero, type, components.
   ════════════════════════════════════════════════════════════ */

/* Lucide icon defaults */
.ico { width: 20px; height: 20px; stroke-width: 1.8; }
.ico-sm { width: 16px; height: 16px; stroke-width: 1.8; }
.ico-lg { width: 28px; height: 28px; stroke-width: 1.6; }
.ico-xl { width: 36px; height: 36px; stroke-width: 1.4; }

/* Editorial type */
.serif-i {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-style: italic;
  color: var(--blue-primary);
  letter-spacing: -0.02em;
}
.serif-i.on-dark { color: var(--blue-light); }

/* Mono labels */
.mono-lab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-primary);
  font-weight: 600;
}
.mono-lab.on-dark { color: var(--blue-light); }
.mono-lab.muted { color: var(--text-muted); }

/* ────────────── V2 PAGE HERO ────────────── */
.v2-page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 70px 0 100px;
  position: relative; overflow: hidden;
}
.v2-page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(96,165,250,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96,165,250,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.v2-page-hero::after {
  content: ''; position: absolute;
  top: 10%; right: -200px; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(37,99,235,0.20) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.v2-page-hero .container { position: relative; z-index: 1; }

/* Hero top strip */
.hero-strip {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  flex-wrap: wrap;
}
.hero-strip .col { display: flex; align-items: center; gap: 10px; }
.hero-strip .col svg { color: var(--blue-light); }
.hero-strip .divider { color: rgba(255,255,255,0.2); }
.hero-strip a { color: var(--blue-light); text-decoration: none; }
.hero-strip a:hover { text-decoration: underline; }

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--blue-light);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px;
  background: var(--blue-light);
}

.v2-page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 1000px;
}
.v2-page-hero .sub {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
}

/* Two-column hero grid (text + visual) */
.v2-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Underline accent on key word */
.v2-page-hero h1 .underline {
  text-decoration: underline;
  text-decoration-color: rgba(96, 165, 250, 0.55);
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.12em;
}

/* Hero stats strip */
.hero-specs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  padding-top: 32px;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-spec { padding-inline-end: 24px; }
.hero-spec:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-spec:not(:first-child) { padding-inline-start: 24px; }
.hero-spec .num {
  font-family: 'Outfit', sans-serif;
  font-size: 30px; font-weight: 700;
  color: var(--white);
  line-height: 1; margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.hero-spec .num .unit { color: var(--blue-light); font-weight: 500; }
.hero-spec .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* Hero diagram (animated SVG visual) */
.hero-diagram {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 480px;
  margin-inline-start: auto;
}
.hero-diagram svg { width: 100%; height: 100%; display: block; }
.hero-diagram .annotation {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(11, 20, 38, 0.85);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border: 1px solid rgba(96,165,250,0.3);
  border-radius: 4px;
  white-space: nowrap;
  z-index: 2;
}
.hero-diagram .annotation::before {
  content: '';
  position: absolute;
  width: 24px; height: 1px;
  background: rgba(96,165,250,0.4);
}
.hero-diagram .annotation.a1 { top: 6%; left: 50%; transform: translateX(-50%); }
.hero-diagram .annotation.a2 { top: 38%; right: 0; }
.hero-diagram .annotation.a2::before { left: -28px; top: 50%; }
.hero-diagram .annotation.a3 { bottom: 28%; left: 4%; }
.hero-diagram .annotation.a3::before { right: -28px; top: 50%; }
.hero-diagram .annotation.a4 { bottom: 2%; left: 50%; transform: translateX(-50%); }

@keyframes diagramRotate { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { opacity: 0.4; r: 4; }
  50% { opacity: 1; r: 5.5; }
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 16px;
}

/* Hero pill buttons */
.btn-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; font-family: inherit;
  transition: transform .2s, background .2s;
  text-decoration: none;
}
.btn-pill:hover {
  background: var(--blue-light); color: var(--navy);
  transform: translateY(-2px);
}
.btn-pill-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-pill-ghost:hover {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-pill-dark {
  background: var(--navy); color: var(--white);
}
.btn-pill-dark:hover {
  background: var(--blue-primary); color: var(--white);
  transform: translateY(-2px);
}
.btn-pill-light {
  background: var(--white); color: var(--navy);
  border: 1px solid var(--border);
}
.btn-pill-light:hover { border-color: var(--navy); color: var(--navy); }

/* Section heads (editorial) */
.v2-head {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; margin-bottom: 60px;
  align-items: end;
}
.v2-head h2 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.0; letter-spacing: -0.035em;
  margin: 0;
}
.v2-head .right p {
  font-size: 18px; line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}
.v2-head .right .lab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--blue-primary);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* List rows (used for values/pillars/why) */
.v2-list { display: flex; flex-direction: column; }
.v2-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.5fr 60px;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: all .25s;
  position: relative;
}
.v2-row::before {
  content: '';
  position: absolute;
  inset: 0 -32px;
  background: var(--white);
  border-radius: 16px;
  opacity: 0; transition: opacity .25s;
  z-index: -1;
}
.v2-row:hover::before { opacity: 1; }
.v2-row:hover { padding-inline: 32px; }
.v2-row .rn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--blue-primary);
  letter-spacing: 0.15em;
  font-weight: 600;
}
.v2-row .rtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.v2-row .rdesc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}
.v2-row .ric {
  display: flex; justify-content: flex-end;
  color: var(--text-muted);
  transition: color .25s;
}
.v2-row:hover .ric { color: var(--blue-primary); }

/* Closing section */
.v2-closing {
  background: var(--surface);
  padding: 130px 0;
}
.v2-closing-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}
.v2-closing h2 {
  font-size: clamp(56px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 0;
}
.v2-closing .right {
  padding-bottom: 16px;
}
.v2-closing .right p {
  font-size: 17px; line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.v2-closing-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 1024px) {
  .v2-head, .v2-closing-grid { grid-template-columns: 1fr; gap: 32px; }
  .v2-page-hero h1 { font-size: 48px; }
  .v2-row { grid-template-columns: 60px 1fr; }
  .v2-row .rdesc, .v2-row .ric { grid-column: 2; }
  .v2-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-specs { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .hero-spec { padding: 0 !important; border: none !important; }
}
@media (max-width: 640px) {
  .v2-page-hero { padding: 50px 0 70px; }
  .v2-page-hero h1 { font-size: 36px; }
  .hero-strip { gap: 10px; font-size: 10px; }
  .hero-diagram { display: none; }
}
