@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500&family=Inter:wght@400;500&family=JetBrains+Mono&display=swap');

:root {
  /* Colors */
  --color-void-black: #000000;
  --color-obsidian: #0e0f11;
  --color-carbon: #141617;
  --color-graphite: #1d2023;
  --color-slate: #21223a;
  --color-ash: #303438;
  --color-steel: #3a3d40;
  --color-fog: #61626b;
  --color-smoke: #8d8d96;
  --color-cloud: #a1a1aa;
  --color-silver: #cfcfd3;
  --color-bone: #999999;
  --color-paper-white: #ffffff;
  --color-signal-violet: #6cc3b0; /* patina: verdigris teal-groen (brand-accent) */
  --color-live-wire: #d6a05f;     /* patina: warm koper/brons (primaire CTA) */
  --color-circuit-teal: #4fb6a1;  /* patina: dieper teal voor diagram */

  --font-light: 'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-medium: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-regular: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --page-max-width: 1200px;
  --section-gap: 80px;
  --card-padding: 32px;
  --element-gap: 20px;

  --radius-cards: 12px;
  --radius-inputs: 8px;
  --radius-full: 50px;

  --shadow-subtle: rgba(255, 255, 255, 0.1) 0px 0px 0px 0.5px inset;
  --shadow-subtle-2: rgba(255, 255, 255, 0.1) 0px 2.5px 0px -2px inset;
  --shadow-cta: rgba(255, 255, 255, 0.1) 0px 2.5px 0px -2px inset;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Soepele pagina-overgangen */
@view-transition { navigation: auto; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageFadeIn 0.25s ease both; }
body.is-leaving { opacity: 0; transition: opacity 0.13s ease; }
@media (prefers-reduced-motion: reduce) {
  body, body.is-leaving { animation: none; transition: none; transform: none; }
}

html { scroll-behavior: smooth; }

body {
  background: var(--color-void-black);
  color: var(--color-silver);
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Utility bar ---------- */
.utility-bar {
  background: var(--color-signal-violet);
  color: #000;
  font-family: var(--font-medium);
  font-size: 14px;
  font-weight: 500;
}
.utility-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 40px;
  flex-wrap: wrap;
}
.utility-bar .tag {
  background: rgba(0,0,0,0.12);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  font-size: 12px;
}
.utility-bar a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  margin-left: 8px;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--color-ash);
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 64px;
  position: relative;
}
.logo {
  font-family: var(--font-medium);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-paper-white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark { height: 22px; width: auto; flex-shrink: 0; color: var(--color-paper-white); }
nav.main {
  display: flex;
  gap: 22px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
nav.main a {
  color: var(--color-paper-white);
  font-family: var(--font-medium);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.85;
}
nav.main a:hover { opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 10px; }

/* Hamburger + mobiel menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 60;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--color-paper-white); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--color-obsidian);
  border-bottom: 0.5px solid var(--color-ash);
  padding: 16px 24px 24px;
  flex-direction: column;
  z-index: 49;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--color-paper-white); text-decoration: none; font-family: var(--font-medium); font-weight: 500; font-size: 17px; padding: 14px 0; border-bottom: 0.5px solid var(--color-ash); }
.mobile-menu a.btn-cta { margin-top: 16px; justify-content: center; border-bottom: none; color: #000; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-medium);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--color-paper-white);
  padding: 12px 16px;
}
.btn-ghost:hover { box-shadow: var(--shadow-subtle); }
.btn-white {
  background: var(--color-paper-white);
  color: #000;
  padding: 12px 20px;
}
.btn-cta {
  background: var(--color-live-wire);
  color: #000;
  padding: 12px 24px;
  box-shadow: var(--shadow-cta);
}

.arrow::after { content: "→"; font-size: 14px; }
.chev::after { content: "›"; font-size: 15px; margin-left: 2px; }

/* ---------- Hero ---------- */
.hero { padding: 80px 0 60px; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-graphite);
  color: var(--color-paper-white);
  font-family: var(--font-medium);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.012em;
  border-radius: var(--radius-full);
  padding: 6px 12px;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 24px;
}
h1 {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--color-paper-white);
  margin-bottom: 24px;
}
h1 .accent { color: var(--color-live-wire); }
.hero p.lead {
  font-size: 17px;
  color: var(--color-silver);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Network diagram */
.diagram { display: flex; justify-content: center; align-items: center; }
.diagram svg { width: 100%; max-width: 440px; height: auto; }

/* ---------- Section base ---------- */
section { padding: var(--section-gap) 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { margin-left: auto; margin-right: auto; }
.section-head .eyebrow { margin-bottom: 20px; }
h2 {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.007em;
  color: var(--color-paper-white);
}
h2 .accent { color: var(--color-signal-violet); }
.section-head p { margin-top: 16px; font-size: 17px; color: var(--color-cloud); }

/* ---------- Page hero (subpages) ---------- */
.page-hero { padding: 80px 0 56px; }
.page-hero h1 { font-size: 55px; letter-spacing: -0.012em; margin-bottom: 20px; max-width: 800px; }
.page-hero h1 .accent { color: var(--color-signal-violet); }
.page-hero p { font-size: 18px; color: var(--color-cloud); max-width: 620px; }
.page-hero .eyebrow-pill { margin-bottom: 24px; }
.page-hero .hero-actions { margin-top: 32px; }

/* ---------- Prose / content blocks ---------- */
.prose { max-width: 760px; }
.prose h3 {
  font-family: var(--font-medium);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--color-paper-white);
  margin: 40px 0 12px;
}
.prose p { font-size: 16px; color: var(--color-silver); margin-bottom: 16px; }
.prose p em { color: var(--color-signal-violet); font-style: normal; }
.prose ul { list-style: none; margin: 8px 0 24px; }
.prose li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--color-silver); }
.prose li::before { content: "→"; position: absolute; left: 0; color: var(--color-live-wire); }

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.features-grid.stats-grid { grid-template-columns: repeat(4, 1fr); }
.feature .stat {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-live-wire);
  margin-bottom: 14px;
}
.feature h3 {
  font-family: var(--font-medium);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.29;
  letter-spacing: -0.02em;
  color: var(--color-paper-white);
  margin-bottom: 12px;
}
.feature .ficon {
  width: 40px; height: 40px;
  margin-bottom: 20px;
  color: var(--color-circuit-teal);
}
.feature p { font-size: 16px; color: var(--color-silver); }
.feature p em { color: var(--color-signal-violet); font-style: normal; }

/* Service cards (subpages) */
.svc-card {
  background: var(--color-obsidian);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
}
.svc-card .ficon { width: 36px; height: 36px; margin-bottom: 18px; color: var(--color-circuit-teal); }
.svc-card h3 { font-family: var(--font-medium); font-weight: 500; font-size: 20px; letter-spacing: -0.02em; color: var(--color-paper-white); margin-bottom: 10px; }
.svc-card p { font-size: 15px; color: var(--color-silver); }

/* Step list (werkwijze) */
.steps { display: grid; gap: 20px; max-width: 760px; }
.step {
  display: flex;
  gap: 24px;
  background: var(--color-obsidian);
  border-radius: var(--radius-cards);
  padding: 28px 32px;
}
.step .num {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 32px;
  color: var(--color-live-wire);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}
.step .body { flex: 1; }
.step .step-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.step h3 { font-family: var(--font-medium); font-weight: 500; font-size: 19px; color: var(--color-paper-white); }
.step .when { font-family: var(--font-mono); font-size: 12px; color: var(--color-fog); white-space: nowrap; }
.step p { font-size: 15px; color: var(--color-silver); }
.step .deliver {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--color-circuit-teal);
}
.step .deliver svg { width: 16px; height: 16px; flex-shrink: 0; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-top: 0.5px solid var(--color-ash); }
.faq-item:last-child { border-bottom: 0.5px solid var(--color-ash); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-family: var(--font-medium);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-paper-white);
  text-align: left;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--color-signal-violet); }
.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-circuit-teal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}
.faq-item.open .faq-body {
  max-height: 400px;
  opacity: 1;
}
.faq-body > p {
  font-size: 15px;
  color: var(--color-silver);
  margin: 0;
  padding-bottom: 24px;
  max-width: 680px;
}

/* ---------- Logo strip ---------- */
.logos { padding: 60px 0; border-top: 0.5px solid var(--color-ash); border-bottom: 0.5px solid var(--color-ash); }
.logos .label { text-align: center; font-size: 12px; color: var(--color-smoke); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 32px; }
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 64px;
}
.logo-row .brand-logo {
  display: inline-flex;
  align-items: center;
  color: var(--color-paper-white);
  opacity: 0.6;
  transition: opacity 0.15s ease;
}
.logo-row .brand-logo:hover { opacity: 1; }
.logo-row .brand-logo svg { height: 30px; width: auto; }

/* ---------- Product showcase ---------- */
.showcase .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.showcase .eyebrow-text {
  font-family: var(--font-medium);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-live-wire);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.showcase h2 { font-size: 48px; }
.showcase p { margin-top: 20px; font-size: 16px; color: var(--color-silver); }
.showcase .link { margin-top: 24px; display: inline-flex; align-items: center; color: var(--color-signal-violet); font-family: var(--font-medium); font-weight: 500; font-size: 15px; text-decoration: none; letter-spacing: 0.012em; }

.product-panel {
  background: rgba(214, 160, 95, 0.13);
  border-radius: var(--radius-cards);
  padding: 40px;
}
.product-ui {
  background: var(--color-carbon);
  border-radius: var(--radius-cards);
  padding: 24px;
  box-shadow: var(--shadow-subtle);
}
.product-ui .ui-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.product-ui .avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--color-circuit-teal); flex-shrink: 0; }
.product-ui .ui-name { font-family: var(--font-medium); font-weight: 500; font-size: 14px; color: var(--color-paper-white); }
.product-ui .ui-sub { font-size: 12px; color: var(--color-smoke); }
.product-ui .field {
  background: var(--color-obsidian);
  border-radius: var(--radius-inputs);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--color-cloud);
  margin-bottom: 12px;
  box-shadow: var(--shadow-subtle);
}
.product-ui .field .lbl { display: block; font-size: 11px; color: var(--color-fog); margin-bottom: 4px; }
.product-ui .url { font-family: var(--font-mono); font-size: 13px; color: var(--color-circuit-teal); }

/* ---------- Case study card ---------- */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--color-signal-violet);
  font-family: var(--font-medium);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 6px 14px;
  box-shadow: inset 0 0 0 0.5px var(--color-signal-violet);
  margin-bottom: 24px;
}
.check-list { list-style: none; margin-top: 32px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-medium);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-paper-white);
  margin-bottom: 18px;
}
.check-list li svg { width: 22px; height: 22px; color: var(--color-circuit-teal); flex-shrink: 0; }
.check-list.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 40px;
  margin-top: 0;
}

.case-card {
  background: var(--color-obsidian);
  border-radius: var(--radius-cards);
  padding: 28px;
  box-shadow: var(--shadow-subtle);
}
.case-card .head { display: flex; align-items: center; gap: 14px; padding-bottom: 22px; border-bottom: 0.5px solid var(--color-ash); }
.case-card .bot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(79, 182, 161, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-circuit-teal);
  flex-shrink: 0;
}
.case-card .bot svg { width: 22px; height: 22px; }
.case-card .head .meta { flex: 1; }
.case-card .head .title { font-family: var(--font-medium); font-weight: 500; font-size: 16px; color: var(--color-paper-white); }
.case-card .head .status { font-size: 13px; color: var(--color-circuit-teal); }
.case-card .conn {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-cloud);
  background: var(--color-carbon);
  border-radius: var(--radius-inputs);
  padding: 6px 10px;
  box-shadow: var(--shadow-subtle);
}
.progress-row { padding-top: 22px; }
.progress-row .label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.progress-row .label span:first-child { font-size: 14px; color: var(--color-cloud); }
.progress-row .label span:last-child { font-size: 13px; color: var(--color-circuit-teal); }
.bar { height: 6px; border-radius: var(--radius-full); background: var(--color-carbon); overflow: hidden; }
.bar > i { display: block; height: 100%; background: var(--color-circuit-teal); border-radius: var(--radius-full); }

/* ---------- Testimonials ---------- */
.testimonials { position: relative; }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test-grid.single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.test-grid.single .test-card { padding: 48px; }
.test-grid.single .quote { font-size: 20px; line-height: 1.5; }
.test-grid.duo {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin: 0 auto;
}
.test-grid.duo .test-card { padding: 40px; }
.test-grid.duo .quote { font-size: 17px; line-height: 1.55; }
.test-card {
  background: var(--color-obsidian);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
}
.test-card .quote { font-size: 16px; color: var(--color-silver); margin-bottom: 24px; }
.test-card .person { display: flex; align-items: center; gap: 12px; }
.test-card .pavatar { width: 40px; height: 40px; border-radius: 50%; background: var(--color-slate); flex-shrink: 0; }
.test-card .pname { font-family: var(--font-medium); font-weight: 500; font-size: 14px; color: var(--color-paper-white); }
.test-card .prole { font-size: 12px; color: var(--color-smoke); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 32px; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
footer { border-top: 0.5px solid var(--color-ash); padding: 60px 0 40px; }
footer .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
footer .col h4 { font-family: var(--font-medium); font-weight: 500; font-size: 13px; color: var(--color-smoke); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
footer .col a { display: block; color: var(--color-cloud); text-decoration: none; font-size: 14px; margin-bottom: 10px; }
footer .col a:hover { color: var(--color-paper-white); }
footer .brand p { font-size: 14px; color: var(--color-fog); max-width: 280px; margin-top: 12px; }
.footer-bottom { border-top: 0.5px solid var(--color-ash); margin-top: 40px; padding-top: 24px; font-size: 12px; color: var(--color-fog); text-align: center; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--color-obsidian);
  border-radius: var(--radius-cards);
  padding: 36px 40px;
  width: 100%;
  max-width: 620px;
  box-shadow: var(--shadow-subtle);
  position: relative;
}
.modal h3 {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--color-paper-white);
  margin-bottom: 6px;
}
.modal .sub { font-size: 14px; color: var(--color-cloud); margin-bottom: 20px; }
.modal .close {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent;
  border: none;
  color: var(--color-smoke);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.modal .close:hover { color: var(--color-paper-white); }
.field-row { display: flex; gap: 16px; }
.field-row .field-group { flex: 1; }
.field-group { margin-bottom: 14px; }
.field-group label {
  display: block;
  font-family: var(--font-medium);
  font-size: 13px;
  color: var(--color-cloud);
  margin-bottom: 6px;
}
.field-group input,
.field-group textarea {
  width: 100%;
  background: var(--color-carbon);
  border: 0.5px solid var(--color-ash);
  border-radius: var(--radius-inputs);
  padding: 12px 14px;
  font-family: var(--font-regular);
  font-size: 15px;
  color: var(--color-paper-white);
  outline: none;
  transition: border-color 0.15s ease;
}
.field-group input:focus,
.field-group textarea:focus { border-color: var(--color-live-wire); }
.field-group textarea { resize: vertical; min-height: 70px; }
.modal .btn-cta { width: 100%; justify-content: center; margin-top: 8px; }
.modal .success { text-align: center; color: var(--color-signal-violet); padding: 20px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .wrap, .showcase .wrap { grid-template-columns: 1fr; }
  .features-grid, .test-grid { grid-template-columns: 1fr; }
  .test-grid.duo, .test-grid.single { grid-template-columns: 1fr; }
  .features-grid.stats-grid { grid-template-columns: repeat(2, 1fr); }
  .check-list.two-col { grid-template-columns: 1fr; }
  h1 { font-size: 44px; }
  h2 { font-size: 36px; }
  .page-hero h1 { font-size: 40px; }
  nav.main { display: none; }
  .header-actions { display: none; }
  .nav-toggle { display: flex; }
  footer .wrap { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  section { padding: 56px 0; }
  .hero { padding: 48px 0 40px; }
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  .page-hero { padding: 48px 0 40px; }
  .page-hero h1 { font-size: 34px; }
  .hero p.lead, .page-hero p, .section-head p { font-size: 16px; }
  .section-head { margin-bottom: 32px; }
  .features-grid.stats-grid { grid-template-columns: 1fr; }
  .feature .stat { font-size: 40px; }
  footer .wrap { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .field-row { flex-direction: column; gap: 0; }
  .modal { padding: 28px 22px; }
  .case-card { padding: 22px; }
  .test-grid.duo .test-card { padding: 28px; }
  h1 br { display: none; }
}
