/* ============================================================
   EinsatzConnect — Premium Stylesheet
   Farben aus dem Logo: Navy #011D66 · Royalblau #0047F1 · Weiß
   Lokale Schriften, DSGVO-konform, responsive, barrierearm
   ============================================================ */

/* ---------- Design Tokens ---------- */
/* Markenfarben direkt aus dem Logo abgeleitet:
   Navy #011D66 ("Einsatz") · Royalblau #0047F1 ("connect") */
:root {
  /* Primär – Navy aus dem Logo */
  --navy-900: #000a2b;
  --navy-800: #01123f;
  --navy-700: #011d66; /* Markenfarbe */
  --navy-600: #062a8c;
  --navy-500: #0b39b8;

  /* Sekundär – Royalblau aus dem Logo */
  --blue-700: #002b9e;
  --blue-600: #0038c8;
  --blue-500: #0047f1; /* Markenfarbe */
  --blue-400: #3d74ff;
  --blue-300: #7ba5ff; /* helle Akzente auf dunklem Grund */
  --green-500: #22c08b; /* nur für Erfolgsmeldungen */

  /* Neutrale */
  --white: #ffffff;
  --paper: #f7fafc;
  --mist: #eef4f8;
  --line: #e2e8f0;
  --ink-900: #0f1e2e;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-400: #94a3b8;

  /* Effekte */
  --shadow-sm: 0 1px 2px rgba(7, 26, 48, .06), 0 1px 3px rgba(7, 26, 48, .08);
  --shadow-md: 0 4px 6px rgba(7, 26, 48, .05), 0 10px 24px rgba(7, 26, 48, .08);
  --shadow-lg: 0 18px 48px rgba(7, 26, 48, .14);
  --shadow-blue: 0 10px 30px rgba(0,71,241,.28);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  --ease: cubic-bezier(.22, 1, .36, 1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font);
  color: var(--ink-700);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Layout Helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--tint { background: linear-gradient(180deg, var(--paper), var(--mist)); }
.section--navy {
  background: radial-gradient(120% 120% at 80% 0%, var(--navy-700), var(--navy-900) 70%);
  color: #cfe0ef;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { color: var(--ink-900); line-height: 1.12; letter-spacing: -.02em; font-weight: 800; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--blue-500); border-radius: 2px; }
.section--navy .eyebrow { color: var(--blue-300); }

.h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
.h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-500); }
.section--navy .lead { color: #a9c2da; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h2 { margin: 14px 0 16px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue-500);
  --btn-fg: #ffffff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 15px;
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  box-shadow: var(--shadow-blue); white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,71,241,.4); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }

.btn--navy { --btn-bg: var(--navy-800); --btn-fg: #fff; box-shadow: var(--shadow-md); }
.btn--navy:hover { box-shadow: var(--shadow-lg); background: var(--navy-700); }

.btn--ghost {
  background: transparent; color: #fff; box-shadow: none;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); box-shadow: none; }

.btn--outline {
  background: transparent; color: var(--navy-700); box-shadow: none;
  border: 1.5px solid var(--line);
}
.btn--outline:hover { border-color: var(--blue-500); color: var(--blue-600); background: transparent; box-shadow: none; }

.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(7,26,48,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--ink-900); font-size: 1.15rem; letter-spacing: -.02em; }
.brand__mark { height: 38px; width: auto; flex: 0 0 auto; }
.brand__name b { color: var(--blue-500); } /* exakt das Royalblau aus dem Logo */

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 9px 14px; border-radius: 10px; font-weight: 600; font-size: 15px; color: var(--ink-700);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--navy-700); background: var(--mist); }
.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; color: var(--navy-800); }
.nav__toggle svg { width: 26px; height: 26px; margin: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,10,43,.55) 0%, rgba(0,10,43,.35) 40%, rgba(0,10,43,.84) 100%),
    linear-gradient(105deg, rgba(1,29,102,.93) 0%, rgba(1,29,102,.52) 46%, rgba(1,29,102,.15) 72%);
}
.hero__inner { padding-block: clamp(84px, 15vh, 168px); max-width: 760px; }
.hero .eyebrow { color: var(--blue-300); }
.hero h1 { color: #fff; margin: 18px 0 22px; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero__sub { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: #dbe7f2; max-width: 620px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 26px 40px; margin-top: 48px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.16); }
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust b { font-size: 1.7rem; color: #fff; font-weight: 800; letter-spacing: -.02em; }
.hero__trust span { font-size: .84rem; color: #b7ccdf; letter-spacing: .02em; }

/* ---------- Logos / Sektoren Marquee ---------- */
.sectors { border-bottom: 1px solid var(--line); background: var(--white); }
.sectors__inner { display: flex; align-items: center; gap: 18px; padding-block: 22px; flex-wrap: wrap; justify-content: center; }
.sectors__label { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); }
.sectors__list { display: flex; flex-wrap: wrap; gap: 10px 12px; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
  background: var(--mist); color: var(--navy-700); font-weight: 600; font-size: 14px;
}
.chip svg { width: 15px; height: 15px; color: var(--blue-600); }

/* ---------- Problem (Warum) ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.problem-card {
  padding: 26px; border-radius: var(--radius); background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1); transition: transform .3s var(--ease), background .3s;
}
.problem-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); }
.problem-card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(0,71,241,.16); color: var(--blue-300); margin-bottom: 16px; }
.problem-card .ic svg { width: 24px; height: 24px; }
.problem-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 6px; }
.problem-card p { font-size: .95rem; color: #9fb8ce; }

/* ---------- Split (Lösung / Über uns) ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.split__badge {
  position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 18px 22px; display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.split__badge .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--navy-800); color: var(--blue-300); display: grid; place-items: center; flex: 0 0 auto; }
.split__badge .ic svg { width: 22px; height: 22px; }
.split__badge b { display: block; color: var(--ink-900); font-size: .98rem; }
.split__badge span { font-size: .82rem; color: var(--ink-500); }

.check-list { display: grid; gap: 14px; margin-top: 26px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-weight: 500; color: var(--ink-700); }
.check-list .tick { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; background: rgba(0,71,241,.14); color: var(--blue-600); display: grid; place-items: center; margin-top: 1px; }
.check-list .tick svg { width: 15px; height: 15px; }

/* ---------- Vorteile (Feature Grid) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.feature {
  padding: 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(0,71,241,.4); }
.feature .ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-600)); color: var(--blue-300);
}
.feature .ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.16rem; margin-bottom: 8px; }
.feature p { font-size: .96rem; color: var(--ink-500); }

/* ---------- Leistungen (Cards) ---------- */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.service {
  position: relative; padding: 30px; border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--blue-500), var(--navy-600)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service:hover::before { transform: scaleX(1); }
.service .ic { width: 56px; height: 56px; border-radius: 16px; background: var(--mist); color: var(--navy-700); display: grid; place-items: center; margin-bottom: 20px; transition: background .3s, color .3s; }
.service:hover .ic { background: var(--navy-800); color: var(--blue-300); }
.service .ic svg { width: 28px; height: 28px; }
.service h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service p { font-size: .96rem; color: var(--ink-500); }
.service__note {
  grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; justify-content: center;
  padding: 20px; border-radius: var(--radius); background: linear-gradient(135deg, rgba(0,71,241,.1), rgba(18,75,125,.08));
  color: var(--navy-700); font-weight: 600; text-align: center;
}
.service__note svg { width: 22px; height: 22px; color: var(--blue-600); flex: 0 0 auto; }

/* ---------- Audience (Zwei Wege) ---------- */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.audience {
  padding: clamp(28px, 4vw, 44px); border-radius: var(--radius-lg); position: relative; overflow: hidden;
}
.audience--facility { background: linear-gradient(150deg, var(--navy-800), var(--navy-600)); color: #dbe7f2; }
.audience--partner { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.audience .kicker { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.audience--facility .kicker { color: var(--blue-300); }
.audience--partner .kicker { color: var(--blue-600); }
.audience h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin: 12px 0 14px; }
.audience--facility h3 { color: #fff; }
.audience p { margin-bottom: 24px; }
.audience--partner p { color: var(--ink-500); }

/* ---------- Prozess / Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step__num { counter-increment: step; width: 44px; height: 44px; border-radius: 12px; background: var(--navy-800); color: #fff; font-weight: 800; display: grid; place-items: center; margin-bottom: 16px; }
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { font-size: .93rem; color: var(--ink-500); }

/* ---------- CTA Band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 72px); text-align: center;
  background: radial-gradient(120% 140% at 50% 0%, var(--navy-700), var(--navy-900)); color: #cfe0ef; box-shadow: var(--shadow-lg); }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.cta-band::before { width: 320px; height: 320px; background: var(--blue-600); top: -120px; right: -80px; }
.cta-band::after { width: 260px; height: 260px; background: var(--navy-500); bottom: -120px; left: -60px; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { max-width: 560px; margin: 14px auto 30px; position: relative; color: #a9c2da; }
.cta-band .hero__cta { justify-content: center; position: relative; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-info .h2 { margin: 14px 0 18px; }
.contact-cards { display: grid; gap: 14px; margin-top: 30px; }
.contact-cards > a, .contact-cards > div {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.contact-cards > a:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.contact-cards .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--mist); color: var(--navy-700); display: grid; place-items: center; flex: 0 0 auto; }
.contact-cards .ic svg { width: 22px; height: 22px; }
.contact-cards b { display: block; color: var(--ink-900); font-size: .96rem; }
.contact-cards span { font-size: .88rem; color: var(--ink-500); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink-700); margin-bottom: 7px; }
.field label .req { color: var(--blue-600); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--paper); font-family: inherit; font-size: 15px; color: var(--ink-900);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px rgba(0,71,241,.14); }
.field textarea { resize: vertical; min-height: 130px; }

.consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 22px; font-size: 13.5px; color: var(--ink-500); line-height: 1.55; }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--blue-600); flex: 0 0 auto; }
.consent a { color: var(--blue-600); font-weight: 600; text-decoration: underline; }

.form-note { font-size: 12.5px; color: var(--ink-400); margin-top: 14px; text-align: center; }
.form-success { display: none; padding: 16px; border-radius: var(--radius); background: rgba(34,192,139,.12); color: #14805a; font-weight: 600; margin-bottom: 18px; align-items: center; gap: 10px; }
.form-success svg { width: 20px; height: 20px; flex: 0 0 auto; }
.form-success.show { display: flex; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #9fb8ce; padding-block: 64px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand .brand__name b { color: var(--blue-300); }
.footer-brand p { font-size: .93rem; max-width: 300px; color: #8aa5bd; }
.footer-slogan { font-size: 1.08rem !important; font-weight: 700; color: #fff !important; margin-bottom: 10px; letter-spacing: -.01em; }
.footer-slogan { background: linear-gradient(90deg, var(--blue-300), #a9c6ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--blue-600); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; color: #fff; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: .92rem; color: #9fb8ce; transition: color .2s; }
.footer-col a:hover { color: var(--blue-300); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .85rem; color: #7d96ae; }

/* ---------- Cookie Banner ---------- */
.cookie {
  position: fixed; z-index: 200; left: var(--gutter); right: var(--gutter); bottom: 20px; max-width: 460px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 24px; transform: translateY(140%); transition: transform .5s var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie h4 { font-size: 1.05rem; margin-bottom: 8px; }
.cookie p { font-size: .88rem; color: var(--ink-500); margin-bottom: 16px; }
.cookie p a { color: var(--blue-600); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__actions .btn { flex: 1; padding: 12px 18px; font-size: 14px; box-shadow: none; }

/* ---------- Legal Pages ---------- */
.legal { padding-block: clamp(48px, 8vw, 100px); }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.legal .updated { color: var(--ink-400); font-size: .9rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.legal h3 { font-size: 1.1rem; margin: 26px 0 10px; }
.legal p, .legal li { color: var(--ink-700); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal ul li { margin-bottom: 8px; }
.legal a { color: var(--blue-600); text-decoration: underline; }
.legal .placeholder { background: #fff7ed; border: 1px dashed #fdba74; color: #9a3412; padding: 2px 8px; border-radius: 6px; font-size: .92em; font-weight: 600; }
.legal .callout { background: var(--mist); border-left: 4px solid var(--blue-500); padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0; font-size: .95rem; }

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .split, .contact-grid, .audience-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__toggle { display: grid; }
  .site-header.scrolled { background: rgba(255,255,255,.95); }
  .mobile-open .nav__links {
    display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 16px var(--gutter) 24px; box-shadow: var(--shadow-lg); gap: 4px;
  }
  .mobile-open .nav__links a { padding: 13px 14px; }
  .form-row { grid-template-columns: 1fr; }
  .hero__trust { gap: 20px 30px; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .split__badge { left: 12px; bottom: -18px; }
}
