/* ============================================================
   Intercodetinental — Design System
   Palette: deep navy + slate + cyan/electric accent
   Type: Space Grotesk (display) / Inter (body)
   ============================================================ */

:root {
  --navy-950: #060a16;
  --navy-900: #0b1120;
  --navy-850: #0f172a;
  --navy-800: #131c33;
  --navy-700: #1c2745;
  --slate-600: #334155;
  --slate-500: #475569;
  --slate-400: #64748b;
  --slate-300: #94a3b8;
  --slate-200: #cbd5e1;
  --slate-100: #e2e8f0;
  --slate-50:  #f5f8fc;
  --white: #ffffff;

  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;
  --indigo-500: #4f46e5;
  --indigo-400: #6366f1;

  --accent: var(--cyan-600);
  --accent-bright: var(--cyan-400);
  --accent-ink: #064e5c;

  --bg: var(--white);
  --bg-alt: var(--slate-50);
  --ink: #0c1626;
  --ink-soft: #334155;
  --ink-muted: #475569;
  --line: #e3e9f2;

  --grad-hero: linear-gradient(135deg, #0b1120 0%, #122046 55%, #0e3a4a 100%);
  --grad-accent: linear-gradient(135deg, var(--cyan-500) 0%, var(--indigo-500) 100%);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(13,24,46,.06), 0 1px 3px rgba(13,24,46,.08);
  --shadow-md: 0 6px 18px rgba(13,24,46,.08), 0 2px 6px rgba(13,24,46,.05);
  --shadow-lg: 0 18px 48px rgba(13,24,46,.14), 0 6px 16px rgba(13,24,46,.08);
  --shadow-cta: 0 10px 30px rgba(8,145,178,.32);

  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.15rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1.1rem; color: var(--ink-soft); }

a { color: var(--cyan-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--indigo-500); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-700);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s var(--ease);
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 14px 38px rgba(8,145,178,.42); }
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.34);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); color:#fff; transform: translateY(-2px); }
.btn-outline {
  background: #fff;
  color: var(--navy-900);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--cyan-500); color: var(--cyan-700); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: -.02em;
  color: var(--navy-900);
}
.brand:hover { color: var(--navy-900); }
.brand .logo { width: 36px; height: 36px; flex: none; }
.brand b { color: var(--cyan-700); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .96rem;
}
.nav-links a:hover { background: var(--slate-50); color: var(--navy-900); }
.nav-links a[aria-current="page"] { color: var(--cyan-700); background: rgba(6,182,212,.09); }
.nav-cta { margin-left: 6px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 44px; height: 44px;
  cursor: pointer;
  color: var(--navy-900);
  align-items: center; justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--grad-hero);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .26;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(7,12,24,.93) 0%, rgba(9,18,40,.84) 45%, rgba(12,46,60,.74) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner {
  padding: clamp(64px, 11vw, 130px) 0 clamp(56px, 9vw, 110px);
  max-width: 760px;
}
.hero .eyebrow { color: var(--cyan-400); }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero .lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--slate-200); max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 38px;
  margin-top: 54px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  letter-spacing: -.02em;
}
.hero-stats .stat span { color: var(--slate-300); font-size: .9rem; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--grad-hero);
  color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: var(--slate-300); }
.section-head { max-width: 680px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.1rem; color: var(--ink-muted); }
.section-dark .section-head p { color: var(--slate-300); }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(6,182,212,.35); }
.card h3 { margin-bottom: .4em; }
.card p { margin-bottom: 0; font-size: .98rem; }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--grad-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(8,145,178,.28);
}
.card .icon svg { width: 26px; height: 26px; color: #fff; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-weight: 600; font-size: .92rem;
  font-family: var(--font-display);
}
.card-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* media card (image-topped) */
.media-card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  overflow:hidden; box-shadow: var(--shadow-sm); height:100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display:flex; flex-direction:column;
}
.media-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.media-card img { width:100%; aspect-ratio: 16/10; object-fit: cover; }
.media-card .body { padding: 24px 26px 28px; flex:1; display:flex; flex-direction:column; }
.media-card .tag {
  display:inline-block; align-self:flex-start; font-size:.72rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase; color: var(--cyan-700);
  background: rgba(6,182,212,.1); padding:4px 10px; border-radius:99px; margin-bottom:12px;
}
.media-card h3 { font-size: 1.22rem; }
.media-card p { font-size:.96rem; flex:1; }

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.split-media { position: relative; }
.split-media .badge {
  position: absolute; bottom: -18px; left: -18px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.split-media .badge .dot { width: 40px; height:40px; border-radius:10px; background: var(--grad-accent); display:flex; align-items:center; justify-content:center; }
.split-media .badge .dot svg { width:20px; height:20px; color:#fff; }
.split-media .badge strong { display:block; font-family: var(--font-display); font-size:1.05rem; }
.split-media .badge span { font-size:.82rem; color: var(--ink-muted); }

/* ---------- Lists ---------- */
.checklist { list-style: none; margin: 22px 0 0; padding: 0; }
.checklist li {
  position: relative; padding-left: 34px; margin-bottom: 14px;
  color: var(--ink-soft);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(6,182,212,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230891b2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 13px;
}
.section-dark .checklist li { color: var(--slate-200); }
.section-dark .checklist li::before { background-color: rgba(34,211,238,.16); }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; box-shadow: var(--shadow-sm);
}
.step .num {
  counter-increment: step;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--navy-900); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  display:flex; align-items:center; justify-content:center;
}
.step .num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.15rem; margin-bottom: .25em; }
.step p { margin: 0; font-size: .96rem; }

/* ---------- Testimonials ---------- */
.quote {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); height:100%;
  display:flex; flex-direction:column;
}
.quote .stars { display:flex; gap:3px; margin-bottom:14px; color: #f59e0b; }
.quote .stars svg { width:18px; height:18px; }
.quote blockquote { margin:0 0 20px; font-size:1.04rem; color: var(--ink); line-height:1.6; flex:1; }
.quote figcaption { display:flex; align-items:center; gap:13px; }
.quote figcaption img { width:48px; height:48px; border-radius:50%; object-fit:cover; }
.quote .who strong { display:block; font-family: var(--font-display); font-size:.98rem; }
.quote .who span { font-size:.85rem; color: var(--ink-muted); }

/* ---------- Logos / trust strip ---------- */
.trust-strip { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 14px 40px; }
.trust-strip .logo-chip {
  font-family: var(--font-display); font-weight:700; font-size:1.15rem;
  color: var(--slate-400); letter-spacing:-.01em;
  display:flex; align-items:center; gap:8px;
}
.trust-strip .logo-chip svg { width:22px; height:22px; color: var(--slate-300); }

/* ---------- Stat band ---------- */
.statband { display:grid; grid-template-columns: repeat(4,1fr); gap: 26px; text-align:center; }
.statband .stat strong { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem); display:block; letter-spacing:-.02em; }
.statband .stat span { color: var(--slate-300); font-size:.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad-accent);
  border-radius: var(--radius-lg);
  padding: clamp(40px,6vw,68px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow:hidden;
}
.cta-band::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 45%), radial-gradient(circle at 85% 80%, rgba(255,255,255,.12), transparent 40%);
}
.cta-band > * { position: relative; z-index:1; }
.cta-band h2 { color:#fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 580px; margin: 0 auto 26px; font-size:1.1rem; }
.cta-band .hero-actions { justify-content:center; margin-top: 8px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.breadcrumb ol {
  list-style:none; display:flex; flex-wrap:wrap; gap:8px; align-items:center;
  margin:0; padding: 14px 0; font-size:.86rem; color: var(--ink-muted);
}
.breadcrumb li { display:flex; align-items:center; gap:8px; }
.breadcrumb li::after { content:"/"; color: var(--slate-300); }
.breadcrumb li:last-child::after { content:""; }
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--cyan-700); }
.breadcrumb li[aria-current] { color: var(--navy-900); font-weight:500; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  background: var(--grad-hero);
  color:#fff; position:relative; overflow:hidden;
}
.page-hero::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 85% 10%, rgba(6,182,212,.22), transparent 42%);
}
.page-hero .container { position:relative; z-index:1; }
.page-hero-inner { padding: clamp(48px,7vw,84px) 0; max-width: 720px; }
.page-hero .eyebrow { color: var(--cyan-400); }
.page-hero h1 { color:#fff; }
.page-hero p { color: var(--slate-300); font-size: 1.12rem; max-width: 600px; margin-bottom:0; }

/* ---------- Prose ---------- */
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .5em; color: var(--ink-soft); }
.prose a { font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Forms ---------- */
.form-grid { display:grid; gap:18px; }
.field { display:flex; flex-direction:column; gap:7px; }
.field label { font-weight:600; font-size:.9rem; font-family: var(--font-display); color: var(--navy-900); }
.field .req { color: var(--cyan-700); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size:1rem;
  padding: 12px 14px; border:1.5px solid var(--line); border-radius: var(--radius-sm);
  background:#fff; color: var(--ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width:100%;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(6,182,212,.16);
}
.field .hint { font-size:.8rem; color: var(--ink-muted); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.contact-info-card {
  background: var(--grad-hero); color:#fff; border-radius: var(--radius-lg);
  padding: 36px; height:100%;
}
.contact-info-card h3 { color:#fff; }
.contact-info-card .info-item { display:flex; gap:14px; align-items:flex-start; margin-bottom: 22px; }
.contact-info-card .info-item:last-child { margin-bottom:0; }
.contact-info-card .info-item .ic { width:42px; height:42px; flex:none; border-radius:11px; background: rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; }
.contact-info-card .info-item .ic svg { width:20px; height:20px; color: var(--cyan-400); }
.contact-info-card .info-item strong { display:block; font-family: var(--font-display); font-size:.95rem; }
.contact-info-card .info-item span, .contact-info-card .info-item a { color: var(--slate-300); font-size:.92rem; }
.contact-info-card .info-item a:hover { color: var(--cyan-400); }

/* ---------- Team ---------- */
.team-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); text-align:center; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-card img { width:96px; height:96px; border-radius:50%; object-fit:cover; margin: 28px auto 14px; box-shadow: var(--shadow-md); }
.team-card .body { padding: 0 20px 26px; }
.team-card h3 { font-size:1.1rem; margin-bottom:2px; }
.team-card .role { color: var(--cyan-700); font-weight:600; font-size:.88rem; font-family: var(--font-display); margin-bottom:10px; }
.team-card p { font-size:.9rem; margin:0; }

/* ---------- FAQ ---------- */
.faq-item { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-bottom:16px; box-shadow: var(--shadow-sm); }
.faq-item h3 { font-size:1.08rem; margin-bottom:.4em; }
.faq-item p { margin:0; font-size:.97rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: var(--slate-300);
  padding: 64px 0 30px;
  font-size: .94rem;
}
.footer-top { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand .brand { color:#fff; margin-bottom:16px; }
.footer-brand .brand b { color: var(--cyan-400); }
.footer-brand p { color: var(--slate-400); max-width: 320px; font-size:.92rem; }
.footer-social { display:flex; gap:10px; margin-top:18px; }
.footer-social a { width:38px; height:38px; border-radius:9px; background: rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; color: var(--slate-300); }
.footer-social a:hover { background: var(--cyan-600); color:#fff; }
.footer-social svg { width:18px; height:18px; }
.footer-col h4 { color:#fff; font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; font-family: var(--font-display); margin-bottom:16px; }
.footer-col ul { list-style:none; margin:0; padding:0; }
.footer-col li { margin-bottom:10px; }
.footer-col a { color: var(--slate-300); }
.footer-col a:hover { color: var(--cyan-400); }
.footer-bottom {
  display:flex; flex-wrap:wrap; gap:14px; justify-content:space-between; align-items:center;
  padding-top: 26px; color: var(--slate-500); font-size:.85rem;
}
.footer-bottom a { color: var(--slate-400); }
.footer-bottom a:hover { color: var(--cyan-400); }

/* ---------- Anim ---------- */
.reveal { opacity:0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity:1; transform:none; }

:focus-visible { outline: 3px solid var(--cyan-500); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--navy-900); color:#fff; padding: 10px 18px; border-radius: 8px; z-index:200;
  transition: top .2s var(--ease); font-weight:600;
}
.skip-link:focus { top: 12px; color:#fff; }

.attr-note { color: var(--slate-500); font-size:.82rem; }
.attr-note a { color: var(--slate-400); text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .statband { grid-template-columns: repeat(2,1fr); gap:32px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .nav-links, .nav-cta.desk { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 70px; left: 0; right: 0;
    background:#fff; border-bottom:1px solid var(--line);
    padding: 14px 24px 20px; gap: 4px; box-shadow: var(--shadow-md);
  }
  .nav-links.open a { padding: 12px 14px; }
  .nav-links.open .nav-cta { display:block; margin: 8px 0 0; }
  .nav-links.open .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .hero-stats .stat strong { font-size: 1.6rem; }
  .split-media .badge { left: 12px; bottom: 12px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity:1 !important; transform:none !important; }
}
