:root{
  --bg:#ffffff; --text:#121212; --muted:#626262;
  --card:#f6f7f9; --alt:#fbfbfd; --stroke:#e6e8ee;
  --accent:#ff7a00; --accent-2:#ff9f4d; /* Brand bleibt Orange */
  --max:1160px; --r:14px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial}
img{max-width:100%;display:block}
a{color:var(--accent);text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:18px}
.shadow{box-shadow:0 10px 28px rgba(0,0,0,.07)}
.rounded{border-radius:var(--r);border:1px solid var(--stroke)}

/* Header */
.site-header{position:sticky;top:0;background:rgba(255,255,255,.9);backdrop-filter:blur(8px);border-bottom:1px solid var(--stroke);z-index:10}
.header-grid{display:flex;justify-content:space-between;gap:16px;align-items:center}
.brand img{height:60px;width:auto}
.top-nav{display:flex;gap:16px;align-items:center;flex-wrap:wrap}
.top-nav a{padding:8px 10px;border-radius:10px}
.top-nav .btn-cta{background:var(--accent);color:#000;font-weight:700}

/* Hero split (Bild links) */
.hero.alt{background:linear-gradient(180deg,#fff,#fdfefe)}
.hero-split{display:grid;grid-template-columns:1fr 1.05fr;gap:28px;align-items:center}
.hero-media img{width:100%;height:auto}
.hero-copy h1{font-size:clamp(28px,4.4vw,44px);margin:.1em 0 .25em}
.lead{font-size:18px;margin:8px 0 12px;color:#1f1f1f}
.badges{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0}
.badge{background:#fff;border:1px solid var(--stroke);padding:8px 10px;border-radius:999px;font-size:13px;color:#222}
.cta-row{display:flex;gap:12px;margin:16px 0}
.btn{border:1px solid var(--stroke);padding:12px 16px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center}
.btn-lg{padding:14px 20px;font-size:18px}
.btn-ghost{background:#fff;color:#000}
.btn-cta{background:var(--accent);color:#000;border-color:var(--accent)}

/* Sections */
.section{padding:52px 0}
.section.alt{background:var(--alt)}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.card{background:var(--card);border:1px solid var(--stroke);border-radius:var(--r);padding:16px}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start}
.steps{margin:0 0 12px 18px}
.muted{color:var(--muted)}
.video-ratio{position:relative;padding-top:56%}
.video-ratio iframe{position:absolute;inset:0;width:100%;height:100%;border:0;border-radius:var(--r)}
.centered{text-align:center;margin-top:16px}

/* Specs + lists */
.specs{display:grid;grid-template-columns:repeat(2,1fr);gap:8px 20px;margin:0 0 8px}
.fdm{margin-top:10px;color:#444;font-size:14px}
.check{list-style:none;padding:0;margin:0;display:grid;gap:8px}
.check li{padding-left:26px;position:relative}
.check li::before{content:"✓";position:absolute;left:0;top:0;color:var(--accent);font-weight:900}

/* FAQ */
.faq{max-width:900px;margin:0 auto}
.faq-q{width:100%;text-align:left;background:#fff;color:#000;border:1px solid var(--stroke);border-radius:12px;padding:14px 16px;margin:10px 0;cursor:pointer;display:flex;justify-content:space-between;align-items:center}
.faq-a{display:none;padding:12px 16px 6px 16px;color:#222;border-left:3px solid var(--accent);background:#fff;border-radius:0 0 12px 12px;border-right:1px solid var(--stroke);border-bottom:1px solid var(--stroke)}
.faq-q[aria-expanded="true"] + .faq-a{display:block}
.faq .sign{font-weight:700}

/* Legal & Footer */
.legal ul{margin-left:18px}
.manufacturer{margin-top:8px;color:#555}
.site-footer{border-top:1px solid var(--stroke);background:#fff}
.footer-grid{display:flex;justify-content:space-between;gap:12px;align-items:center}

/* Responsive */
@media (max-width:980px){
  .hero-split{grid-template-columns:1fr}
}
@media (max-width:900px){
  .grid-3,.specs{grid-template-columns:1fr}
}
/* High-Contrast / Windows Forced Colors Mode */
@media (forced-colors: active) {
  body { background: Canvas; color: CanvasText; }
  .card, .rounded { border-color: CanvasText; background: Canvas; }
  a { color: LinkText; }
  .btn-cta { background: ButtonFace; color: ButtonText; border-color: ButtonText; }
  .btn-ghost { background: Canvas; color: CanvasText; border-color: CanvasText; }
  /* Logo in Markenfarben behalten (nicht umlackieren) */
  .brand img { forced-color-adjust: none; }
}
/* Sichtbarer Tastaturfokus (hilft ebenfalls in High-Contrast) */
:focus-visible { outline: 2px solid Highlight; outline-offset: 2px; border-radius: 6px; }
