/* ===== Design tokens ===== */
:root {
  --bg: #f4f5f7;
  --surface: #ffffff;
  --ink: #0c0d10;
  --ink-soft: #5b606b;
  --ink-faint: #9aa0ab;
  --line: #e8eaed;
  --line-strong: #dadde2;
  --dark: #0c0d10;
  --green: #16a34a;
  --green-soft: #e8f7ee;
  --amber: #d97706;
  --brand: #0077d9;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(12, 13, 16, 0.04), 0 1px 3px rgba(12, 13, 16, 0.06);
  --shadow-md: 0 8px 30px rgba(12, 13, 16, 0.08);
  --maxw: 1160px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* Dark mode overrides */
html.dark {
  --bg: #0e0f12;
  --surface: #16181d;
  --ink: #f3f4f6;
  --ink-soft: #a3a8b2;
  --ink-faint: #6b7079;
  --line: #262a31;
  --line-strong: #343943;
  --dark: #ffffff;
  --green-soft: #11271a;
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
}
html.dark .btn-dark { color: #0c0d10; }
html.dark .btn-light { background: #16181d; color: #f3f4f6; border: 1px solid var(--line-strong); }
html.dark .cta-band { background: #1c1f25; border: 1px solid var(--line); }
html.dark .brand-mark { color: #0c0d10; }
body { transition: background 0.25s ease, color 0.25s ease; }

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 13px 24px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { box-shadow: var(--shadow-md); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { background: #fff; border-color: var(--ink); }

.btn-ghost { background: transparent; color: var(--ink-soft); }
.btn-ghost:hover { color: var(--ink); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 245, 247, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.03em; }
.brand-mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--dark); color: #fff;
  border-radius: 8px;
  font-size: 16px; font-weight: 800;
}
.brand-name { font-size: 18px; }
.brand-logo { height: 32px; width: auto; display: block; }

.nav { display: flex; gap: 30px; }
.nav a { color: var(--ink-soft); font-size: 14.5px; font-weight: 500; transition: color 0.15s; }
.nav a:hover { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 8px; }

/* ===== Nav dropdowns ===== */
.nav-item { position: relative; }
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.nav-trigger:hover, .nav-item.open .nav-trigger { color: var(--ink); }
.chevron { transition: transform 0.2s ease; }
.nav-item.open .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 230px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 60;
}
.nav-item.open .dropdown,
.nav-item.has-hover:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-item.has-hover:hover .chevron { transform: rotate(180deg); }
.nav-item.has-hover:hover .nav-trigger { color: var(--ink); }
a.nav-trigger { text-decoration: none; }
.dropdown-wide { min-width: 300px; }

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 10px;
  transition: background 0.13s;
}
.dropdown-link:hover { background: var(--bg); }
.dropdown-link.compact { padding: 9px 10px; font-size: 14px; color: var(--ink-soft); }
.dropdown-link.compact:hover { color: var(--ink); }
.dd-icon { width: 34px; height: 34px; flex: none; display: grid; place-items: center; background: var(--bg); border: 1px solid var(--line); border-radius: 9px; font-size: 16px; }
.dropdown-link.compact .dd-icon { width: 26px; height: 26px; font-size: 14px; }
.dd-text { display: flex; flex-direction: column; line-height: 1.3; }
.dd-text strong { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.dd-text small { font-size: 12.5px; color: var(--ink-faint); }

.dropdown-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 10px; gap: 16px; }
.dd-row-label { font-size: 14px; color: var(--ink-soft); }
.dropdown-sep { height: 1px; background: var(--line); margin: 6px 2px; }

/* Segmented control */
.seg { display: inline-flex; background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 2px; }
.seg-btn {
  font-family: inherit; font-size: 12.5px; font-weight: 600;
  border: none; background: none; cursor: pointer;
  padding: 4px 10px; border-radius: 6px; color: var(--ink-soft);
  transition: 0.13s;
}
.seg-btn.is-active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }

/* Sprachauswahl mit mehreren Sprachen (volle Breite) */
.dropdown-row.lang { flex-direction: column; align-items: stretch; gap: 9px; }
.seg-lang { display: flex; width: 100%; }
.seg-lang .seg-btn { flex: 1; text-align: center; padding: 6px 0; }

/* Toggle switch */
.switch {
  width: 40px; height: 23px; flex: none;
  background: var(--line-strong); border: none; border-radius: 999px;
  cursor: pointer; padding: 2px; position: relative;
  transition: background 0.18s ease;
}
.switch .switch-knob {
  display: block; width: 19px; height: 19px;
  background: #fff; border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease;
}
.switch.is-on { background: var(--green); }
.switch.is-on .switch-knob { transform: translateX(17px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.2s; }

/* ===== Hero ===== */
.hero { padding: 72px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-copy h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; }
.lead { color: var(--ink-soft); font-size: 18px; margin-top: 20px; max-width: 30em; }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; margin-top: 44px; }
.stat { display: flex; flex-direction: column; }
.stat-value { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; }
.stat-label { font-size: 13.5px; color: var(--ink-soft); }

/* Hero panel (dashboard echo) */
.hero-panel { display: flex; justify-content: center; }
.panel {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 22px;
}
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.panel-title { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.panel-badge { font-size: 12px; font-weight: 600; color: var(--green); background: var(--green-soft); padding: 4px 10px; border-radius: 999px; }

.panel-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.mini-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; display: flex; flex-direction: column; gap: 4px; }
.mini-label { font-size: 12.5px; color: var(--ink-soft); }
.mini-value { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.mini-trend { font-size: 12.5px; font-weight: 600; }
.mini-trend.up { color: var(--green); }

.panel-list { list-style: none; display: flex; flex-direction: column; }
.panel-list li { display: flex; align-items: center; gap: 12px; padding: 11px 4px; border-top: 1px solid var(--line); font-size: 14px; }
.panel-list li:first-child { border-top: none; }
.li-mark { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.li-mark.green { background: var(--green); }
.li-mark.amber { background: var(--amber); }
.li-name { flex: 1; }
.li-meta { color: var(--ink-soft); font-size: 13px; }

/* Logo strip */
.logo-strip { margin-top: 64px; padding-top: 30px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 18px; align-items: center; }
.logo-strip > span { font-size: 13px; color: var(--ink-faint); letter-spacing: 0.02em; }
.logos { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.logo-pill { font-weight: 700; letter-spacing: -0.01em; color: var(--ink-faint); font-size: 16px; padding: 6px 14px; }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(28px, 3.5vw, 40px); margin-top: 6px; }
.section-sub { color: var(--ink-soft); font-size: 17px; margin-top: 14px; }

/* Feature cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; font-size: 22px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; }
.feature-card p { color: var(--ink-soft); font-size: 15px; margin-top: 8px; }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-copy h2 { font-size: clamp(28px, 3.5vw, 38px); margin-top: 6px; }
.split-copy p { color: var(--ink-soft); font-size: 16.5px; margin-top: 16px; }

.check-list { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; font-size: 15.5px; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  background: var(--green-soft); color: var(--green);
  border-radius: 50%; font-size: 12px; font-weight: 700;
}

/* Media card (about) */
.media-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.media-row { display: grid; grid-template-columns: 140px 1fr 56px; align-items: center; gap: 14px; margin-bottom: 18px; }
.media-label { font-size: 14px; color: var(--ink-soft); }
.media-bar { height: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.media-bar > span { display: block; height: 100%; background: var(--dark); border-radius: 999px; }
.media-bar > span.bar-green { background: var(--green); }
.media-bar > span.bar-amber { background: var(--amber); }
.media-num { font-size: 14px; font-weight: 700; text-align: right; }
.media-foot { font-size: 13px; color: var(--ink-faint); margin-top: 6px; }

/* Ergebnis-Werte (Über uns) */
.result-row { display: flex; align-items: baseline; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.result-row:first-of-type { border-top: none; }
.result-value { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; min-width: 130px; }
.result-label { color: var(--ink-soft); font-size: 15px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.step-num { font-size: 13px; font-weight: 700; color: var(--ink-faint); letter-spacing: 0.05em; }
.step h3 { font-size: 18px; margin-top: 10px; }
.step p { color: var(--ink-soft); font-size: 14.5px; margin-top: 8px; }

/* CTA band */
.cta-band {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(24px, 3vw, 32px); }
.cta-band p { color: rgba(255, 255, 255, 0.7); margin-top: 8px; font-size: 16px; }

/* Contact form */
.contact-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; flex-direction: column; }
.contact-list strong { font-size: 13px; color: var(--ink-faint); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }

.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(12, 13, 16, 0.08); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input[type="file"] { padding: 8px 12px; font-size: 14px; cursor: pointer; color: var(--ink-soft); }
.field input[type="file"]::file-selector-button {
  font-family: inherit; font-weight: 600; font-size: 13px;
  border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink);
  padding: 7px 13px; border-radius: 8px; margin-right: 12px; cursor: pointer;
  transition: border-color 0.15s;
}
.field input[type="file"]::file-selector-button:hover { border-color: var(--ink); }
.form-note { font-size: 14px; margin-top: 12px; text-align: center; min-height: 18px; }
.form-note.ok { color: var(--green); }
.form-note.err { color: #dc2626; }

/* ===== Product page ===== */
.page-hero { padding: 56px 0 28px; text-align: center; }
.page-hero h1 { font-size: clamp(32px, 4.5vw, 50px); font-weight: 800; }
.page-hero .lead { margin: 18px auto 0; max-width: 34em; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 13.5px; color: var(--ink-faint); margin-bottom: 22px; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--ink); }

.section-tight { padding: 16px 0 40px; }
.product-jump { display: block; }
.product-jump:hover { cursor: pointer; }

.product-detail { scroll-margin-top: 90px; }
.product-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
  color: var(--brand);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.section-alt .product-tag { background: var(--bg); }
.product-detail h2 { font-size: clamp(26px, 3.2vw, 36px); }
.product-detail .split-copy p { margin-bottom: 4px; }

.spec-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.section-alt .spec-card { background: var(--bg); }
.spec-head { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; padding-bottom: 14px; margin-bottom: 6px; border-bottom: 1px solid var(--line); }
.spec-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 14.5px; }
.spec-row:first-of-type { border-top: none; }
.spec-row span { color: var(--ink-soft); }
.spec-row strong { font-weight: 600; text-align: right; }

/* ===== Login / Portal ===== */
.auth { display: grid; place-items: start center; padding: 56px 24px 80px; min-height: 60vh; }
.auth-card { width: 100%; max-width: 480px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 34px; }
.auth-head { text-align: center; margin-bottom: 22px; }
.auth-head h1 { font-size: 24px; }
.auth-head p { color: var(--ink-soft); font-size: 14.5px; margin-top: 6px; }
.auth-tabs { display: flex; gap: 4px; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 4px; margin-bottom: 24px; }
.auth-tab { flex: 1; font-family: inherit; font-weight: 600; font-size: 14.5px; padding: 9px; border: none; background: none; border-radius: 7px; cursor: pointer; color: var(--ink-soft); transition: 0.13s; }
.auth-tab.is-active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.auth-view { display: none; }
.auth-view.is-active { display: block; }
.role-label { font-size: 13.5px; font-weight: 600; margin-bottom: 10px; }
.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.role-card { text-align: left; border: 1px solid var(--line-strong); border-radius: 12px; padding: 13px; cursor: pointer; background: var(--surface); transition: border-color 0.15s, box-shadow 0.15s; }
.role-card:hover { border-color: var(--ink); }
.role-card.is-selected { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0, 119, 217, 0.12); }
.role-name { font-weight: 700; font-size: 14.5px; display: flex; align-items: center; gap: 7px; }
.role-perk { color: var(--brand); font-weight: 700; font-size: 13.5px; margin-top: 6px; }
.role-desc { color: var(--ink-soft); font-size: 12px; margin-top: 2px; line-height: 1.35; }
.auth-foot { text-align: center; font-size: 13.5px; color: var(--ink-soft); margin-top: 18px; }
.auth-link { background: none; border: none; color: var(--brand); font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; padding: 0; }
.auth-note { font-size: 13.5px; text-align: center; margin-top: 14px; min-height: 18px; }
.auth-note.ok { color: var(--green); }
.auth-note.err { color: #dc2626; }
@media (max-width: 480px) { .role-grid { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding-top: 56px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 48px; padding-bottom: 40px; }
.footer-brand p { color: var(--ink-soft); font-size: 14.5px; margin-top: 14px; max-width: 26em; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-faint); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--ink-soft); font-size: 14.5px; padding: 5px 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-faint); }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; font-weight: 700; font-size: 13px; color: var(--ink-soft); transition: 0.15s; }
.footer-socials a:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .hero-panel { order: -1; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 680px) {
  .nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
  }
  .site-header.open .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .site-header.open .nav-item { width: 100%; }
  .site-header.open .nav-trigger { width: 100%; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .site-header.open .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    min-width: 0;
    padding: 4px 0 8px;
    display: none;
  }
  .site-header.open .nav-item.open .dropdown { display: block; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .card-grid, .steps { grid-template-columns: 1fr; }
  .cta-band { padding: 32px 28px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .media-row { grid-template-columns: 110px 1fr 48px; }
}
