/* ============================================================
   Exepos · Clean Tech Design System
   Dark Slate + Emerald · Mobile-First · Responsive · A11y
   ============================================================ */
:root {
  --bg: #020617;
  --bg-2: #060d1d;
  --panel: #0f172a;
  --panel-2: #0c1526;
  --border: #1e293b;
  --border-soft: #16213a;
  --text: #f1f5f9;
  --dim: #94a3b8;
  --dim-strong: #cbd5e1;
  --accent: #10b981;
  --accent-2: #34d399;
  --accent-ink: #022c22;
  --ok: #22c55e;
  --warn: #f59e0b;
  --danger: #f87171;
  --radius: 14px;
  --radius-sm: 10px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: Consolas, "Cascadia Mono", monospace;
  --shadow: 0 18px 50px rgba(2, 6, 23, .55);
  --shadow-sm: 0 8px 24px rgba(2, 6, 23, .45);
}

/* ---------- Basis (Mobile-First) ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(16, 185, 129, .14), transparent 60%),
    radial-gradient(820px 480px at -12% 22%, rgba(52, 211, 153, .07), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 2px;
  border-radius: 6px;
}

.container { width: min(1140px, 92%); margin-inline: auto; }

/* Skip-Link für Screenreader/Tastatur */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 400;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 800; padding: 10px 16px; border-radius: 10px;
  transition: top .15s;
}
.skip-link:focus { top: 12px; text-decoration: none; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(2, 6, 23, .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; min-height: 66px; padding-block: 8px;
}
.brand { display: inline-flex; align-items: center; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand-logo { display: block; height: 38px; width: auto; }

/* Hamburger (mobil) */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: transparent; border: 1px solid var(--border); border-radius: 10px;
  cursor: pointer;
}
.nav-toggle-bar { display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menü-Panel */
.nav-menu { display: none; }
.nav-menu.is-open { display: block; }
.nav-links { display: flex; flex-direction: column; gap: 4px; padding: 10px 0 14px; margin: 0; list-style: none; }
.nav-links a {
  display: block; padding: 10px 12px; border-radius: 10px;
  color: var(--dim-strong); font-weight: 600; font-size: 15.5px;
}
.nav-links a:hover { color: var(--text); background: var(--panel); text-decoration: none; }
.nav-links a.active, .nav-links a[aria-current="true"] { color: var(--accent-2); background: rgba(16, 185, 129, .12); }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 40px; }
.hero-grid { display: grid; gap: 32px; align-items: center; }
.hero-copy { text-align: left; }
.hero-centered { text-align: center; max-width: 780px; margin-inline: auto; }
.hero-centered .lead { margin-inline: auto; }
.hero-centered .actions { justify-content: center; }
.hero .kicker {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-2); border: 1px solid var(--border); border-radius: 30px;
  padding: 6px 14px; margin-bottom: 18px; background: rgba(16, 185, 129, .08);
}
.hero h1 { font-size: clamp(32px, 6vw, 54px); line-height: 1.12; margin: 0 0 16px; font-weight: 800; letter-spacing: -0.01em; }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent-2), #a7f3d0 55%, var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { font-size: 17.5px; color: var(--dim); max-width: 620px; margin: 0 0 26px; }
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; padding: 0; list-style: none; }
.hero-media { min-width: 0; margin-bottom: 30px; }

/* Kennzahlen */
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
.stat {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 12px; text-align: center;
}
.stat-num { display: block; font-size: 22px; font-weight: 800; color: var(--accent-2); }
.stat-label { display: block; font-size: 12.5px; color: var(--dim); margin-top: 2px; }

/* Trustbar */
.trustbar { border-block: 1px solid var(--border); background: var(--bg-2); }
.trustbar-in {
  display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center;
  padding-block: 14px; margin: 0; list-style: none;
  color: var(--dim); font-size: 14px; font-weight: 600;
}
.trustbar-in li::before { content: "✓ "; color: var(--accent-2); font-weight: 800; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: filter .15s, transform .1s, background .15s;
}
.btn:hover { text-decoration: none; filter: brightness(1.12); }
.btn:active { transform: scale(.98); }
.btn.primary { color: var(--accent-ink); background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.btn.ghost { color: var(--accent-2); background: transparent; border-color: var(--accent); }
.btn.ghost:hover { border-color: var(--accent-2); background: rgba(16, 185, 129, .1); }
.btn:disabled { opacity: .6; cursor: wait; }

/* ---------- Sektionen ---------- */
.section { padding: 56px 0; }
.section-head { max-width: 680px; margin: 0 auto 32px; text-align: center; }
.section-head h2 { font-size: clamp(25px, 4vw, 36px); margin: 0 0 10px; font-weight: 800; letter-spacing: -0.01em; }
.section-head .sub { color: var(--dim); font-size: 16.5px; margin: 0; }
.center { text-align: center; }
.kicker-sm {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 10px;
}
.grad-line { height: 4px; width: 64px; border-radius: 4px; margin: 0 auto 20px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.grad-line.left { margin-inline: 0; }
.download-hint { margin-top: 14px; font-size: 13px; color: var(--dim); }

/* ---------- Badges / Chips ---------- */
.badge { font-size: 11.5px; font-weight: 700; color: #052e16; background: var(--ok); border-radius: 20px; padding: 3px 9px; white-space: nowrap; }
.badge.alt { color: var(--accent-2); background: rgba(16, 185, 129, .14); }
.chip {
  font-size: 12px; font-weight: 700; color: var(--accent-2);
  background: rgba(16, 185, 129, .1); border: 1px solid var(--border);
  border-radius: 8px; padding: 3px 8px;
}

/* ---------- Produktkarten ---------- */
.grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.pcard {
  display: flex; flex-direction: column; padding: 24px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--border);
  transition: transform .15s, border-color .15s; position: relative; overflow: hidden;
}
.pcard:hover { transform: translateY(-4px); border-color: var(--accent); }
.pcard .top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.pcard .icon { font-size: 28px; background: rgba(16, 185, 129, .12); border: 1px solid var(--border); border-radius: 12px; padding: 10px; line-height: 1; }
.pcard .badges { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.pcard h3 { margin: 0 0 6px; font-size: 20px; }
.pcard .tag { color: var(--dim); font-size: 13.5px; margin: 0 0 14px; }
.pcard .short { color: var(--text); font-size: 14.5px; margin: 0 0 16px; flex: 1; }
.areas { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 14px; padding: 0; list-style: none; }
.pcard .price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.pcard .price { font-size: 28px; font-weight: 800; color: var(--accent-2); }
.pcard .per { color: var(--dim); font-size: 13.5px; }
.pcard .spacer { flex: 1; }
.pcard .actions { display: flex; gap: 10px; }
.pcard .actions .btn { flex: 1; padding: 12px 10px; font-size: 14px; }

/* ---------- Features / Highlights ---------- */
.features { display: grid; grid-template-columns: 1fr; gap: 14px; text-align: left; }
.feature { display: flex; gap: 12px; align-items: flex-start; padding: 18px; border-radius: 12px; background: var(--panel); border: 1px solid var(--border); }
.feature .f-icon {
  flex: none; width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: var(--accent-2);
  background: rgba(16, 185, 129, .12); border: 1px solid var(--border); border-radius: 12px;
}
.feature p { margin: 0; font-size: 14.5px; color: var(--dim); }
.feature b { color: var(--text); }
.highlights { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 1080px; margin: 0 auto; }
.highlight { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 22px; text-align: left; }
.highlight .h-icon { font-size: 26px; line-height: 1; }
.highlight h3 { margin: 12px 0 6px; font-size: 16.5px; color: var(--text); }
.highlight p { margin: 0; font-size: 14px; color: var(--dim); line-height: 1.55; }

/* ---------- Produktbilder / Lightbox ---------- */
.prod-images { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 1080px; margin: 28px auto 0; }
.prod-img { margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: var(--panel); cursor: zoom-in; transition: border-color .15s, transform .15s; }
.prod-img:hover { border-color: var(--accent-2); transform: translateY(-2px); }
.prod-img img { width: 100%; height: auto; display: block; }
.prod-img figcaption { padding: 12px 14px; }
.prod-img figcaption b { display: block; font-size: 14.5px; color: var(--text); margin-bottom: 4px; }
.prod-img figcaption span { display: block; font-size: 13.5px; color: var(--dim); line-height: 1.5; }
.prod-img-small { max-width: 340px; justify-self: center; width: 100%; }
.prod-img-small img { max-height: 480px; object-fit: contain; background: #000; margin-inline: auto; }

.lightbox { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; background: rgba(2, 6, 23, .88); padding: 20px; }
.lightbox[hidden] { display: none; }
.lightbox-fig { margin: 0 auto; max-width: min(1100px, 96vw); max-height: 92vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-fig img { max-width: 100%; max-height: 72vh; object-fit: contain; border-radius: 10px; border: 1px solid var(--border); background: #000; }
.lightbox-fig figcaption { margin-top: 12px; text-align: center; }
.lightbox-fig figcaption b { display: block; color: var(--text); font-size: 16px; margin-bottom: 4px; }
.lightbox-fig figcaption span { color: var(--dim); font-size: 14px; }
.lightbox-close { position: absolute; top: 14px; right: 20px; background: none; border: none; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; }
.lightbox-close:hover { color: var(--accent-2); }

/* ---------- Banner-Slider ---------- */
.banner-slider { position: relative; width: 100%; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); background: var(--panel); }
.banner-track { position: relative; aspect-ratio: 982 / 282; }
.banner-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.banner-slide.active { opacity: 1; z-index: 1; }
.banner-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.banner-dots { position: absolute; bottom: 12px; left: 0; right: 0; z-index: 2; display: flex; justify-content: center; gap: 8px; }
.banner-dot { width: 12px; height: 12px; border-radius: 50%; border: 1px solid rgba(255,255,255,.6); cursor: pointer; background: rgba(255,255,255,.35); padding: 0; transition: background .2s, transform .2s; }
.banner-dot.active { background: var(--accent-2); border-color: var(--accent-2); transform: scale(1.2); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 860px; margin-inline: auto; }
.price-card { padding: 26px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--panel); position: relative; overflow: hidden; }
.price-card.hot { border-color: var(--accent); background: linear-gradient(180deg, rgba(16,185,129,.12), var(--panel)); }
.price-card .p-name { font-size: 14px; font-weight: 800; color: var(--dim); text-transform: uppercase; letter-spacing: .06em; }
.price-card .p-price { font-size: 38px; font-weight: 800; margin: 8px 0 2px; }
.price-card .p-price span { font-size: 14px; color: var(--dim); font-weight: 600; }
.price-card .p-detail { color: var(--dim); font-size: 13.5px; margin: 0 0 18px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 22px; font-size: 14px; }
.price-card li { padding: 6px 0; color: var(--text); border-bottom: 1px dashed var(--border); }
.price-card li::before { content: "✓ "; color: var(--accent-2); font-weight: 800; }
.price-card .btn { width: 100%; }
.ribbon { position: absolute; top: 16px; right: -34px; transform: rotate(45deg); background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--accent-ink); font-size: 11px; font-weight: 800; padding: 5px 40px; }

/* ---------- CTA-Band ---------- */
.cta-band {
  border-radius: 18px; padding: 40px 24px; text-align: center;
  background: linear-gradient(135deg, rgba(16,185,129,.14), rgba(52,211,153,.06));
  border: 1px solid var(--border);
}
.cta-band h2, .cta-band h3 { font-size: clamp(22px, 4vw, 32px); margin: 0 0 12px; }
.cta-band p { color: var(--dim); font-size: 16px; margin: 0 0 24px; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; text-align: left; }
.faq details { border: 1px solid var(--border); border-radius: 12px; background: var(--panel); padding: 16px 18px; margin-bottom: 12px; }
.faq summary { font-weight: 700; cursor: pointer; font-size: 15.5px; }
.faq summary::marker { color: var(--accent-2); }
.faq details p { color: var(--dim); font-size: 14.5px; margin: 12px 0 0; }

/* ---------- Kontakt ---------- */
.contact-section { background: var(--bg-2); border-block: 1px solid var(--border); }
.contact-grid { display: grid; gap: 28px; }
.contact-info { display: grid; gap: 12px; align-content: start; }
.contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 18px;
}
.contact-item .c-icon {
  flex: none; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 19px; background: rgba(16,185,129,.12); border: 1px solid var(--border); border-radius: 10px;
}
.contact-item b { display: block; font-size: 14px; }
.contact-item span, .contact-item a { font-size: 14.5px; color: var(--dim); }
.contact-form-card { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.contact-form { max-width: 560px; margin: 0 auto; text-align: left; }
.cf-group { margin-bottom: 14px; }
.cf-group label { display: block; font-size: 13px; font-weight: 700; color: var(--dim-strong); margin-bottom: 5px; }
.cf-group input, .cf-group textarea {
  width: 100%; padding: 11px 13px; border-radius: 9px; font-size: 15px;
  font-family: var(--font); color: var(--text); background: var(--bg);
  border: 1px solid var(--border); outline: none; transition: border-color .15s;
}
.cf-group input:focus, .cf-group textarea:focus { border-color: var(--accent-2); }
.cf-group input[aria-invalid="true"], .cf-group textarea[aria-invalid="true"] { border-color: var(--danger); }
.cf-group textarea { resize: vertical; min-height: 120px; }
.field-error { margin: 6px 0 0; font-size: 12.5px; color: var(--danger); }
.field-error[hidden] { display: none; }
.cf-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.cf-notice { margin: 10px 0 0; font-size: 12px; color: var(--dim); }
.cf-submit { width: 100%; }
.form-status {
  margin: 14px 0 0; padding: 14px 16px; border-radius: 10px; font-size: 14.5px;
  border: 1px solid var(--border); background: var(--bg-2);
}
.form-status[hidden] { display: none; }
.form-status.success { border-color: var(--accent); }
.form-status.success p { margin: 0; color: var(--accent-2); font-weight: 700; }
.form-status.error { border-color: var(--danger); }
.form-status.error p { margin: 0; color: var(--danger); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; background: rgba(2,6,23,.7); padding: 16px; }
.modal[hidden] { display: none; }
.modal-box { position: relative; background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 24px; width: 100%; max-width: 560px; max-height: 88vh; overflow-y: auto; box-shadow: var(--shadow); }
.modal-close { position: absolute; top: 12px; right: 14px; background: none; border: none; color: var(--dim); font-size: 20px; cursor: pointer; line-height: 1; padding: 6px; }
.modal-close:hover { color: var(--text); }
.modal-title { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding-right: 36px; }
.modal-title h3 { margin: 0; font-size: 17px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 44px 0 28px; background: var(--bg-2); }
.footer-grid { display: grid; gap: 26px; }
.footer-brand p { color: var(--dim); font-size: 14px; margin: 12px 0 0; max-width: 340px; }
.footer h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--dim); margin: 0 0 12px; }
.footer-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-nav a { color: var(--dim-strong); font-size: 14.5px; }
.footer-nav a:hover { color: var(--accent-2); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border);
}
.footer .muted { color: var(--dim); font-size: 13px; }
.link-btn { background: none; border: none; padding: 0; font: inherit; color: var(--dim-strong); font-size: 13.5px; cursor: pointer; }
.link-btn:hover { color: var(--accent-2); text-decoration: underline; }

/* ---------- Cookie-Compliance ---------- */
.cookie-banner { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 250; max-width: 660px; margin: 0 auto; }
.cookie-banner[hidden] { display: none; }
.cookie-in {
  display: flex; flex-direction: column; gap: 14px; padding: 18px 20px;
  border-radius: 14px; background: var(--panel); border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.cookie-in p { margin: 0; font-size: 13.5px; color: var(--dim); }
.cookie-in p a { color: var(--accent-2); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cookie-actions .btn { padding: 10px 16px; font-size: 13.5px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding: 18px 0 0; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; font-size: 13.5px; color: var(--dim); }
.breadcrumbs li + li::before { content: "/"; margin-right: 6px; color: var(--border); }
.breadcrumbs [aria-current="page"] { color: var(--text); }

/* ---------- Produkt-Landing ---------- */
.prod-hero { padding: 44px 0 30px; text-align: center; }
.prod-hero .icon { font-size: 52px; margin-bottom: 10px; }
.prod-hero h1 { font-size: clamp(30px, 5vw, 46px); margin: 0 0 12px; font-weight: 800; }
.prod-hero .lead { color: var(--dim); font-size: 17.5px; max-width: 660px; margin: 0 auto 14px; }
.prod-hero .tagrow { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0 0 6px; padding: 0; list-style: none; }
.prod-hero .actions { margin-top: 24px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.para { max-width: 720px; margin: 0 auto 20px; color: var(--dim); font-size: 16px; text-align: left; }
.two-col { display: grid; grid-template-columns: 1fr; gap: 20px; text-align: left; }
.two-col > div { padding: 22px; border-radius: 12px; background: var(--panel); border: 1px solid var(--border); }

/* ---------- Reveal-Animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Breakpoints ---------- */
@media (min-width: 700px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .highlights { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .prod-images { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.2fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .cookie-in { flex-direction: row; align-items: center; }
  .cookie-in p { flex: 1; }
}

@media (min-width: 1024px) {
  .hero { padding: 84px 0 60px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 48px; }
  .section { padding: 76px 0; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .highlights { grid-template-columns: repeat(3, 1fr); }
  .nav-toggle { display: none; }
  .nav-menu { display: block; }
  .nav-links { flex-direction: row; gap: 6px; padding: 0; align-items: center; }
  .nav-links a { padding: 9px 13px; font-size: 15px; }
  .cta-band { padding: 52px 40px; }
}

/* Mobil-Menü ist nur unterhalb von 1024px ein Panel */
@media (max-width: 1023.98px) {
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--border);
    padding-inline: 4%;
  }
  .nav { position: sticky; }
  .nav-in { position: relative; }
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
