/* =========================================================
   ZIMDYKE — Design System

   Direction: industrial editorial. Braun/Rams discipline —
   square corners, hairline rules, no decorative shadow, one
   signal colour — but photography-led, because on this site the
   credibility is the equipment in the field.

   Colour is taken from the logo: a single brand blue (#0938dd)
   against graphite and paper. No second accent hue.
   ========================================================= */

:root {
  /* Graphite — dark sections, footer, headings */
  --ink-900: #101419;
  --ink-800: #161c23;
  --ink-700: #1e262f;
  --ink-600: #2b3541;
  --ink-500: #3b4756;
  --ink: #14181f;

  /* Neutrals */
  --slate-600: #525d6b;
  --slate-400: #838d9b;
  --slate-200: #dbdfe5;
  --slate-100: #edeff2;
  --paper: #f5f6f8;
  --white: #ffffff;

  /* Brand blue — the only accent on the site */
  --brand-700: #0730b4;
  --brand: #0938dd;
  --brand-300: #6f92ff;
  --brand-050: #eef2fe;

  --success: #17734a;
  --danger: #a02f2f;
  --danger-050: #fbeeee;

  /* Square by default */
  --border-radius-sm: 2px;
  --border-radius: 3px;
  --border-radius-lg: 3px;

  --shadow-sm: 0 1px 0 rgba(16, 20, 25, 0.06);
  --shadow-md: 0 2px 8px rgba(16, 20, 25, 0.08);
  --shadow-lg: 0 10px 28px rgba(16, 20, 25, 0.10);

  --container: 1200px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 22px;
  --space-6: 28px;
  --space-7: 40px;
  --space-8: 56px;
  --space-9: 76px;

  --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Archivo", "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ---------- Icon set ---------- */
svg.ic { width: 20px; height: 20px; flex-shrink: 0; display: block; }
.dd-ico svg.ic { width: 19px; height: 19px; }
.feature-ico svg.ic { width: 23px; height: 23px; }
.contact-line .ico svg.ic { width: 19px; height: 19px; }
.check-item .dot svg.ic { width: 12px; height: 12px; stroke-width: 2.6; }
.trust-icons .ico svg.ic { width: 16px; height: 16px; stroke-width: 2.4; }
.topbar svg.ic { width: 15px; height: 15px; }
.topbar-social svg.ic, .footer-social svg.ic { width: 17px; height: 17px; }
.nav-phone .ico svg.ic { width: 17px; height: 17px; }
.nav-link svg.ic { width: 12px; height: 12px; opacity: 0.55; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); font-weight: 700; letter-spacing: 0; color: var(--ink-900); text-wrap: balance; }
h1, .h1 { font-weight: 800; letter-spacing: 0; }
p { margin: 0; text-wrap: pretty; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

section { position: relative; }

/* ---------- Typography scale ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--brand);
  display: inline-block;
}
h1, .h1 { font-size: clamp(1.95rem, 3.2vw, 2.85rem); line-height: 1.06; }
h2, .h2 { font-size: clamp(1.5rem, 2.3vw, 1.95rem); line-height: 1.16; }
h3, .h3 { font-size: 1.14rem; line-height: 1.32; }
.lede { font-size: 1.03rem; color: var(--slate-600); max-width: 62ch; }
.section-head { max-width: 680px; margin-bottom: var(--space-7); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: var(--space-3); }
.section-head p { margin-top: var(--space-4); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: background 0.12s linear, color 0.12s linear, border-color 0.12s linear;
  white-space: nowrap;
}
.btn-primary { background: var(--brand); color: var(--white); }
.btn-primary:hover { background: var(--brand-700); }
.btn-dark { background: var(--ink-900); color: var(--white); }
.btn-dark:hover { background: var(--ink-700); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--ink-900); border-color: var(--slate-200); }
.btn-outline-dark:hover { border-color: var(--ink-900); background: var(--slate-100); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 0.83rem; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--ink-900);
  color: var(--slate-200);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  gap: var(--space-5);
}
.topbar-left { display: flex; gap: var(--space-6); }
.topbar a:hover { color: var(--brand-300); }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: 6px; color: var(--slate-200); }
.topbar-social { display: flex; gap: var(--space-4); }
.topbar-social a { color: var(--slate-200); }
.topbar-social a:hover { color: var(--brand-300); }

@media (max-width: 980px) {
  .topbar { display: none; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: var(--space-6);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 26px; width: auto; }
.footer-logo { height: 86px; width: auto; max-width: 230px; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: var(--space-6); }
.main-nav > ul { display: flex; align-items: center; gap: var(--space-6); }
.main-nav a.nav-link {
  font-weight: 500; font-size: 0.9rem; color: var(--ink-800);
  padding: 10px 2px; position: relative;
  display: inline-flex; align-items: center; gap: 5px;
}
.main-nav a.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--brand); transform: scaleX(0); transform-origin: left;
  transition: transform 0.14s linear;
}
.main-nav a.nav-link:hover::after { transform: scaleX(1); }
.main-nav a.nav-link:hover { color: var(--brand-700); }
.main-nav a.nav-link.active { color: var(--brand-700); }
.main-nav a.nav-link.active::after { transform: scaleX(1); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: -20px;
  background: var(--white); border-radius: var(--border-radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  min-width: 260px; padding: var(--space-3);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.18s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; font-size: 0.92rem; font-weight: 600; color: var(--ink-800);
}
.dropdown a:hover { background: var(--slate-100); color: var(--brand-700); }
.dropdown a .dd-ico { width: 32px; height: 32px; border-radius: 2px; background: var(--brand-050); color: var(--brand-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.nav-actions { display: flex; align-items: center; gap: var(--space-4); }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.88rem; color: var(--ink-900); }
.nav-phone .ico { color: var(--brand); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  width: 42px; height: 42px; background: none; border: none; padding: 8px; flex-shrink: 0;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink-900); border-radius: 2px; }

@media (max-width: 980px) {
  .container { padding-left: var(--space-4); padding-right: var(--space-4); }
  .nav-wrap { height: 64px; gap: var(--space-3); }
  .brand-logo { height: 24px; }
  .main-nav { position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: var(--white);
    flex-direction: column; align-items: stretch; padding: var(--space-4); gap: 0;
    height: calc(100vh - 64px); height: calc(100dvh - 64px); z-index: 99;
    width: 100%; opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-6px); transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease; overflow-y: auto; }
  body.nav-open .main-nav { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  body.nav-open { overflow: hidden; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a.nav-link { padding: 16px 4px; border-bottom: 1px solid var(--slate-100); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none;
    display: none; min-width: 0; padding-left: var(--space-4); }
  .has-dropdown.open .dropdown { display: block; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 560px) {
  .nav-actions .btn { display: none; }
  .nav-actions { gap: var(--space-2); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  background: var(--ink-900);
  border-bottom: 3px solid var(--brand);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,14,18,0.92) 0%, rgba(11,14,18,0.76) 46%, rgba(11,14,18,0.52) 100%);
}
.hero-inner { position: relative; z-index: 1; padding-top: 104px; padding-bottom: 84px; }
.hero-inner.compact { padding-top: 68px; padding-bottom: 60px; }
.hero .eyebrow { color: var(--brand-300); }
.hero .eyebrow::before { background: var(--brand-300); }
.hero h1 { color: var(--white); margin-top: var(--space-4); max-width: 20ch; }
.hero-motto {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--brand-300);
  margin-top: var(--space-4);
}
.hero .lede { color: rgba(255,255,255,0.84); margin-top: var(--space-5); max-width: 58ch; }
.hero-ctas { display: flex; gap: var(--space-4); margin-top: var(--space-7); flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5);
  margin-top: var(--space-9); padding-top: var(--space-6); border-top: 1px solid rgba(255,255,255,0.16);
}
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--white); }
.hero-stat .lbl { font-size: 0.85rem; color: var(--slate-200); margin-top: 4px; }
@media (max-width: 860px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
.hero-breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--slate-200); font-size: 0.88rem; margin-bottom: var(--space-5); }
.hero-breadcrumb a:hover { color: var(--brand-300); }

/* ---------- Image placeholder ---------- */
.ph {
  position: relative;
  width: 100%;
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--slate-100);
}
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-flush { border-radius: 0; }

/* ---------- Sections ---------- */
.section { padding: var(--space-9) 0; }
@media (max-width: 700px) { .section { padding: var(--space-8) 0; } }
.section-sm { padding: var(--space-8) 0; }
.section-paper { background: var(--paper); }
.section-dark { background: var(--ink-900); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-dark .lede { color: var(--slate-200); }

/* ---------- Sector / Product cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-5); }
.grid-2 > *, .grid-3 > *, .grid-4 > *, .grid-5 > *,
.split > *, .contact-grid > *, .form-row-2 > * { min-width: 0; }
@media (max-width: 980px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--border-radius);
  overflow: hidden; transition: border-color 0.12s linear;
  display: flex; flex-direction: column;
}
.card:hover { border-color: var(--ink-900); }
.card-media { aspect-ratio: 4/3; }
.card-body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.card-body h3 { font-size: 1.08rem; }
.card-body p { color: var(--slate-600); font-size: 0.9rem; }
.card-link { margin-top: auto; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; }
.card:hover .card-link { text-decoration: underline; }

.sector-card { position: relative; border-radius: var(--border-radius-lg); overflow: hidden; color: var(--white); aspect-ratio: 4/5; }
.sector-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.sector-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,22,38,0.15) 0%, rgba(10,22,38,0.92) 100%); }
.sector-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--space-6); z-index: 1; }
.sector-card .tag { display: inline-block; font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0; text-transform: uppercase; color: var(--brand-300); margin-bottom: var(--space-2); }
.sector-card h3 { color: var(--white); font-size: 1.2rem; }
.sector-card p { color: var(--slate-200); font-size: 0.9rem; margin-top: var(--space-2); }
.sector-card .arrow { margin-top: var(--space-4); display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--white); font-size: 0.88rem; }
.sector-card:hover .arrow { gap: 12px; }
.sector-card img { transition: transform 0.5s ease; }
.sector-card:hover img { transform: scale(1.04); }

/* ---------- Feature list ---------- */
.feature {
  display: flex; gap: var(--space-4); align-items: flex-start;
}
.feature-ico {
  width: 42px; height: 42px; border-radius: 2px; background: var(--brand-050); color: var(--brand);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature h4 { font-size: 1.02rem; margin-bottom: 4px; }
.feature p { font-size: 0.9rem; color: var(--slate-600); }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split.reverse .split-media { order: 2; }
.split-list { margin-top: var(--space-5); display: flex; flex-direction: column; gap: var(--space-4); }
.check-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.96rem; }
.check-item .dot { width: 18px; height: 18px; border-radius: 2px; background: var(--brand-050); color: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

/* ---------- Stats strip ---------- */
.stats-strip { background: var(--ink-900); color: var(--white); padding: var(--space-7) 0; }
.stats-strip .grid-4 { text-align: center; }
.stats-strip .num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; color: var(--brand-300); }
.stats-strip .lbl { font-size: 0.88rem; color: var(--slate-200); margin-top: 6px; }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--border-radius); padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-5); }
.testimonial .stars { color: var(--brand); font-size: 0.9rem; letter-spacing: 0; }
.testimonial blockquote { margin: 0; font-size: 1rem; color: var(--ink-800); }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; background: var(--slate-200); flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-person strong { display: block; font-size: 0.9rem; }
.testimonial-person span { font-size: 0.8rem; color: var(--slate-400); }

/* ---------- Logo / trust strip ---------- */
.trust-strip { padding: var(--space-6) 0; border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); background: var(--paper); }
.trust-strip .trust-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap; }
.trust-strip .trust-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase; color: var(--slate-400); white-space: nowrap; }
.trust-icons { display: flex; gap: var(--space-6); flex-wrap: wrap; align-items: center; color: var(--slate-600); }
.trust-icons .ti { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; }
.trust-icons .ico { color: var(--brand); }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; overflow: hidden; color: var(--white); padding: var(--space-8) var(--space-7); text-align: center; border-top: 3px solid var(--brand); }
.cta-banner .bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,16,20,0.95) 0%, rgba(13,16,20,0.78) 100%); }
.cta-banner .content { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: var(--slate-200); margin-top: var(--space-4); }
.cta-banner .hero-ctas { justify-content: center; margin-top: var(--space-6); }

/* ---------- Product page bits ---------- */
.specs-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.specs-table tr { border-bottom: 1px solid var(--slate-200); }
.specs-table td { padding: 10px 0; }
.specs-table td:first-child { color: var(--slate-400); width: 42%; font-family: var(--font-mono); font-size: 0.82rem; }
.specs-table td:last-child { font-weight: 600; color: var(--ink-800); }
.badge { display: inline-flex; align-self: flex-start; align-items: center; gap: 6px; background: var(--brand-050); color: var(--brand-700); font-family: var(--font-mono); font-size: 0.67rem; font-weight: 500; padding: 4px 8px; border-radius: 2px; text-transform: uppercase; letter-spacing: 0; }
.badge-brand { background: var(--brand-050); color: var(--brand-700); }
.filter-tabs { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-6); }
.filter-tab { padding: 8px 15px; border-radius: 2px; border: 1px solid var(--slate-200); font-weight: 600; font-size: 0.88rem; color: var(--slate-600); background: var(--white); }
.filter-tab.active, .filter-tab:hover { border-color: var(--brand); color: var(--brand-700); background: var(--brand-050); }

.breadcrumb-bar { background: var(--paper); border-bottom: 1px solid var(--slate-200); padding: 16px 0; font-size: 0.86rem; color: var(--slate-400); }
.breadcrumb-bar a:hover { color: var(--brand-700); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-8); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: var(--space-5); }
.form-field .form-field { margin-bottom: 0; }
.label-optional {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0; text-transform: uppercase; color: var(--slate-400);
  margin-left: 6px;
}
.form-field label { display: block; font-size: 0.86rem; font-weight: 700; color: var(--ink-800); margin-bottom: 8px; }
.form-hint { font-size: 0.82rem; color: var(--slate-600); margin: -4px 0 8px; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
@media (max-width: 560px) { .check-grid { grid-template-columns: 1fr; } }
.check-option {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border: 1px solid var(--slate-200); border-radius: var(--border-radius-sm);
  font-size: 0.92rem; font-weight: 500; color: var(--ink-800); cursor: pointer;
  transition: border-color 0.12s linear, background 0.12s linear;
}
.check-option:hover { border-color: var(--brand); background: var(--brand-050); }
.check-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--brand); flex-shrink: 0; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 14px; border-radius: var(--border-radius-sm); border: 1px solid var(--slate-200);
  background: var(--white); font-size: 0.95rem; color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand-050);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 560px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-memory {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3); flex-wrap: wrap; margin: -2px 0 var(--space-5);
}
.remember-option {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.86rem; font-weight: 600; color: var(--ink-800); cursor: pointer;
}
.remember-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--brand); flex-shrink: 0; }
.text-action {
  border: 0; background: transparent; color: var(--brand);
  padding: 0; font-size: 0.84rem; font-weight: 700;
}
.text-action:hover { color: var(--brand-700); text-decoration: underline; }
.contact-info-card { background: var(--ink-900); color: var(--white); padding: var(--space-7); border-top: 3px solid var(--brand); }
.contact-info-card h3 { color: var(--white); }
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-top: var(--space-5); }
.contact-line .ico { width: 38px; height: 38px; border-radius: 2px; background: rgba(255,255,255,0.1); color: var(--brand-300); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-line strong { display: block; font-size: 0.95rem; }
.contact-line span, .contact-line a { font-size: 0.88rem; color: var(--slate-200); }
.map-embed { margin-top: var(--space-6); border-radius: var(--border-radius); overflow: hidden; background: rgba(255,255,255,0.06); }
.map-embed iframe { display: block; width: 100%; height: 240px; border: 0; }
.map-link { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--space-3); font-size: 0.85rem; font-weight: 600; color: var(--brand-300); }
.map-link:hover { color: var(--white); }
.form-success { display: none; background: var(--brand-050); color: var(--brand-700); padding: var(--space-4); border-radius: var(--border-radius-sm); font-weight: 600; margin-bottom: var(--space-5); }
.form-error { display: none; background: var(--danger-050); color: var(--danger); padding: var(--space-4); border-radius: var(--border-radius-sm); font-weight: 600; margin-bottom: var(--space-5); }
.form-error a { text-decoration: underline; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: var(--slate-200); padding-top: var(--space-9); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: var(--space-6); padding-bottom: var(--space-8); border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 { color: var(--white); font-size: 0.85rem; letter-spacing: 0; text-transform: uppercase; margin-bottom: var(--space-4); }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--brand-300); }
.footer-about p { font-size: 0.9rem; color: var(--slate-400); margin-top: var(--space-4); }
.footer-social { display: flex; gap: 10px; margin-top: var(--space-5); }
.footer-social a { width: 34px; height: 34px; border-radius: 2px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--brand); color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: var(--space-5) 0; font-size: 0.82rem; color: var(--slate-400); flex-wrap: wrap; gap: var(--space-3); }
.footer-bottom a:hover { color: var(--brand-300); }
.footer-legal { display: flex; gap: var(--space-5); }

/* ---------- Section head, left-aligned w/ rule (breaks the centred rhythm) ---------- */
.head-rule {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: var(--space-7);
  align-items: end; margin-bottom: var(--space-7);
  border-bottom: 1px solid var(--slate-200); padding-bottom: var(--space-5);
}
.section-dark .head-rule { border-bottom-color: rgba(255,255,255,0.14); }
.head-rule h2 { max-width: 16ch; }
.head-rule p { color: var(--slate-600); max-width: 46ch; font-size: 1rem; }
.section-dark .head-rule p { color: var(--slate-200); }
@media (max-width: 780px) {
  .head-rule { grid-template-columns: 1fr; gap: var(--space-4); align-items: start; }
  .head-rule h2 { max-width: none; }
}

/* ---------- Numbered process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--slate-200); }
.step { padding: var(--space-6) var(--space-5) var(--space-6) 0; border-right: 1px solid var(--slate-200); }
.step:last-child { border-right: none; }
.step:not(:last-child) { padding-right: var(--space-6); }
.step:not(:first-child) { padding-left: var(--space-6); }
.step .n {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  line-height: 1; color: var(--brand); letter-spacing: 0;
}
.step h4 { font-size: 1rem; margin-top: var(--space-3); }
.step p { font-size: 0.92rem; color: var(--slate-600); margin-top: var(--space-2); }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--slate-200); padding: var(--space-5) 0; }
  .step:not(:first-child), .step:not(:last-child) { padding-left: 0; padding-right: 0; }
  .step:nth-child(odd) { padding-right: var(--space-5); border-right: 1px solid var(--slate-200); }
  .step:nth-child(even) { padding-left: var(--space-5); }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .step, .step:nth-child(odd), .step:nth-child(even) { padding: var(--space-5) 0; border-right: none; }
}

/* ---------- Capability strip (replaces invented hero metrics) ---------- */
.hero-lines {
  margin-top: var(--space-8); padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5);
}
.hero-lines a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.92rem; font-weight: 600; color: var(--slate-200);
  padding: 6px 0;
}
.hero-lines a:hover { color: var(--brand-300); }
.hero-lines a svg.ic { width: 17px; height: 17px; color: var(--brand-300); }

@media (max-width: 560px) {
  h1, .h1 { font-size: 2rem; line-height: 1.08; }
  h2, .h2 { font-size: 1.48rem; line-height: 1.18; }
  .hero-inner { padding-top: 76px; padding-bottom: 64px; }
  .hero-inner.compact { padding-top: 56px; padding-bottom: 52px; }
  .hero h1 { max-width: none; }
  .hero .lede { font-size: 0.98rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: var(--space-3); margin-top: var(--space-6); }
  .hero-ctas .btn { width: 100%; min-height: 48px; white-space: normal; padding-left: var(--space-4); padding-right: var(--space-4); text-align: center; }
  .hero-lines { margin-top: var(--space-6); gap: var(--space-2); }
  .hero-lines a { width: 100%; }
  .section { padding: var(--space-7) 0; }
  .section-sm { padding: var(--space-7) 0; }
  .card-body, .sector-card-body, .commit, .contact-info-card { padding: var(--space-4); }
  .sector-card { aspect-ratio: auto; min-height: 320px; }
  .feature { gap: var(--space-3); }
  .feature-ico { width: 38px; height: 38px; }
  .split { gap: var(--space-6); }
  .trust-strip { padding: var(--space-5) 0; }
  .trust-strip .trust-row { align-items: flex-start; }
  .trust-icons { width: 100%; flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .cta-banner { margin-left: calc(var(--space-4) * -1); margin-right: calc(var(--space-4) * -1); padding: var(--space-7) var(--space-4); }
  .breadcrumb-bar { font-size: 0.8rem; overflow-wrap: anywhere; }
  .specs-table { table-layout: fixed; font-size: 0.88rem; }
  .specs-table td { overflow-wrap: anywhere; }
  .footer-grid { gap: var(--space-5); }
  .site-footer { padding-top: var(--space-7); }
}

/* ---------- Commitments (replaces fabricated testimonials) ---------- */
.commit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.commit {
  padding: var(--space-6); border: 1px solid var(--slate-200); margin-left: -1px; margin-top: -1px;
}
.commit h4 { font-size: 1.05rem; }
.commit p { font-size: 0.93rem; color: var(--slate-600); margin-top: var(--space-3); }
.commit .k {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0; text-transform: uppercase; color: var(--brand);
  display: block; margin-bottom: var(--space-3);
}
@media (max-width: 900px) { .commit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .commit-grid { grid-template-columns: 1fr; } }

/* ---------- Utility ---------- */
.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}.mt-5{margin-top:48px}
.text-center{text-align:center}
.reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.45s ease, transform 0.45s ease; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.in-view { opacity: 1; transform: none; transition: none; }
  .sector-card:hover img { transform: none; }
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; }
.icon-24 svg { width: 24px; height: 24px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { padding: 7px 12px; border-radius: 2px; background: var(--slate-100); font-size: 0.85rem; font-weight: 600; color: var(--ink-800); }
