/* ===========================================================
   fixing_ing · shared styles (Light default + optional Dark)
   =========================================================== */
@font-face{ font-family:'Russo One'; src:url('assets/RussoOne.woff2') format('woff2'); font-weight:normal; font-display:swap; }
@font-face{ font-family:'Inter'; src:url('assets/InterVar.woff2') format('woff2'); font-weight:100 900; font-display:swap; }

/* ---------- THEME TOKENS ---------- */
:root{
  --bg1:#F2F8FC; --bg2:#DCEBF5;
  --ink:#1B3A5C; --ink-strong:#13283d; --ink-soft:#4A6781; /* #4A6781 statt #5a7790: besteht WCAG 4.5:1 auch auf getoenten Flaechen */
  --blue:#2E6B9E; --sky:#A8D8EA; --sky-soft:#E4F1F9;
  --line:rgba(27,58,92,.16); --rule:rgba(27,58,92,.26);
  --card:#ffffff; --chip:#E4F1F9; --input:#F7FBFD;
  --grid:rgba(27,58,92,.045);
  --page-grad:linear-gradient(180deg,#F2F8FC 0%, #E1EEF7 100%);
  --header-bg:rgba(242,248,252,.86);
  --band-bg:#1B3A5C; --band-text:#ffffff; --band-sub:#A8D8EA;   /* navy bands */
  --soft-band:linear-gradient(180deg,#E8F2FA,#DBEBF6);          /* light blue bands */
  --shop-grad:linear-gradient(135deg,#1B3A5C,#295d8a);
  --foot-bg:#13283d; --foot-ink:#aecbe1; --foot-soft:#8fb2cd;
  --shadow:0 6px 18px rgba(27,58,92,.08);
  --pcb-hi:#6FBDEB;          /* helles Leucht-Blau der Platinen-Kontakte */
  --pcb-ink:#5D9BC9;         /* Grundfarbe der Platine (heller als --blue) */
  --mono:ui-monospace,'SFMono-Regular',Menlo,Consolas,monospace;
  --maxw:1180px;
}
[data-theme="dark"]{
  --bg1:#0a1d2e; --bg2:#0d2336;
  --ink:#EAF4FB; --ink-strong:#ffffff; --ink-soft:rgba(168,216,234,.78);
  --blue:#5FB4E6; --sky:#A8D8EA; --sky-soft:rgba(95,180,230,.12);
  --line:rgba(168,216,234,.16); --rule:rgba(168,216,234,.30);
  --card:rgba(168,216,234,.05); --chip:rgba(95,180,230,.14); --input:rgba(10,29,46,.6);
  --grid:rgba(168,216,234,.05);
  --page-grad:radial-gradient(125% 80% at 50% -5%, #214a6f 0%, #16344f 46%, #0a1d2e 100%);
  --header-bg:rgba(10,29,46,.82);
  --band-bg:#11304a; --band-text:#ffffff; --band-sub:#A8D8EA;
  --soft-band:linear-gradient(180deg,#0e2740,#0a1d2e);
  --shop-grad:linear-gradient(135deg,#10293f,#235680);
  --foot-bg:#06121d; --foot-ink:#aecbe1; --foot-soft:#7f9fb8;
  --shadow:0 10px 26px rgba(0,0,0,.4);
  --pcb-hi:#D6EEFB;          /* helles Leucht-Blau im Dark-Mode */
  --pcb-ink:#82C8F0;         /* Grundfarbe der Platine im Dark-Mode */
}

*{ margin:0; padding:0; box-sizing:border-box; }
/* Tastatur-Fokus site-weit sichtbar (WCAG); Maus-Klicks bleiben outline-frei */
:focus-visible{ outline:2px solid var(--blue); outline-offset:2px; border-radius:2px; }
.skip-link{ position:absolute; left:-9999px; top:0; z-index:100; background:var(--ink-strong); color:#fff; padding:10px 16px; border-radius:0 0 8px 0; font-weight:600; }
.skip-link:focus{ left:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; overflow-x:hidden; overflow-x:clip; }
body{
  font-family:'Inter',system-ui,sans-serif; color:var(--ink); line-height:1.6;
  /* Platine darf seitlich ueber den Hero ragen, ohne horizontalen Scrollbalken.
     clip (statt hidden) bricht position:sticky nicht; hidden ist der Fallback. */
  overflow-x:hidden; overflow-x:clip;
  background-color:var(--bg1);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    var(--page-grad);
  background-size:46px 46px, 46px 46px, 100% 100%;
  -webkit-font-smoothing:antialiased;
  transition:background-color .25s, color .25s;
}
h1,h2,h3,.wm,.btn,.num,.owner{ font-family:'Russo One',sans-serif; font-weight:normal; }
a{ color:inherit; text-decoration:none; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.accent{ color:var(--blue); }
section{ padding:76px 0; }
.eyebrow{ font-family:var(--mono); font-size:.72rem; letter-spacing:.28em; text-transform:uppercase; color:var(--blue); font-weight:600; }

.sec-head{ display:flex; align-items:center; gap:20px; margin-bottom:36px; }
.sec-head .l{ position:relative; height:1px; background:var(--rule); flex:1; max-width:120px; }
/* Loetpad-Punkte an den Linienenden (Blueprint-Detail) */
.sec-head .l::after{ content:''; position:absolute; top:-2.5px; width:6px; height:6px; background:var(--blue); border-radius:1.5px; opacity:.8; }
.sec-head .l:first-child::after{ right:-1px; }
.sec-head .l:last-child::after{ left:-1px; }
.sec-head h2{ font-size:clamp(1.35rem,3vw,1.9rem); letter-spacing:.18em; color:var(--ink); white-space:nowrap; }
.sec-head.center{ justify-content:center; }

/* ---------- HEADER / NAV ---------- */
header{ position:sticky; top:0; z-index:60; background:var(--header-bg); backdrop-filter:blur(10px); border-bottom:1px solid var(--line); }
nav{ display:flex; align-items:center; gap:18px; height:68px; }
.logo{ display:flex; align-items:center; gap:11px; }
.logo img{ height:42px; width:42px; border-radius:50%; }
.wm{ font-size:1.12rem; color:var(--ink); letter-spacing:.04em; }
.wm .d{ color:var(--blue); }
.nav-links{ display:flex; gap:28px; margin-left:auto; }
.nav-links a{ position:relative; color:var(--ink-soft); font-size:.92rem; font-weight:500; padding:6px 2px; transition:color .18s; }
.nav-links a::after{ content:''; position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--blue); border-radius:2px; transform:scaleX(0); transform-origin:left; transition:transform .22s ease; }
.nav-links a:hover{ color:var(--ink); }
.nav-links a:hover::after{ transform:scaleX(1); }
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; background:var(--ink-strong); color:#fff;
  padding:12px 22px; border-radius:8px; font-size:.85rem; letter-spacing:.04em; border:none; cursor:pointer;
  box-shadow:var(--shadow); transition:background .18s, transform .12s; min-height:44px; }
[data-theme="dark"] .btn{ background:var(--blue); color:#06243b; }
.btn:hover{ background:var(--blue); transform:translateY(-1px); }
.btn:active{ transform:translateY(0) scale(.97); }
[data-theme="dark"] .btn:hover{ background:var(--sky); }
.btn.line{ background:transparent; color:var(--ink); border:1.5px solid var(--rule); box-shadow:none; }
.btn.line:hover{ background:transparent; border-color:var(--blue); color:var(--blue); }
.theme-toggle{ width:44px; height:44px; flex:none; border:1px solid var(--line); border-radius:8px; background:var(--card); cursor:pointer; display:flex; align-items:center; justify-content:center; color:var(--ink); }
.theme-toggle svg{ width:20px; height:20px; fill:currentColor; }
.theme-toggle .moon{ display:block; } .theme-toggle .sun{ display:none; }
[data-theme="dark"] .theme-toggle .moon{ display:none; } [data-theme="dark"] .theme-toggle .sun{ display:block; }
.burger{ display:none; width:44px; height:44px; flex:none; border:1px solid var(--line); border-radius:8px; background:var(--card); cursor:pointer; align-items:center; justify-content:center; }
.burger span{ display:block; width:20px; height:2px; background:var(--ink); position:relative; }
.burger span::before,.burger span::after{ content:''; position:absolute; left:0; width:20px; height:2px; background:var(--ink); }
.burger span::before{ top:-6px; } .burger span::after{ top:6px; }

/* ---------- HERO ---------- */
.hero{ position:relative; display:grid; grid-template-columns:1.12fr .88fr; gap:50px; align-items:center; padding:62px 0 30px; }
.hero > div{ position:relative; }
.hero > div:first-child{ z-index:2; }   /* Text ueber der Platine */
.kicker{ display:inline-flex; align-items:center; gap:10px; margin-bottom:20px; }
.kicker .tick{ width:26px; height:1px; background:var(--blue); }
.hero h1{ font-size:clamp(2.1rem,5.4vw,3.6rem); line-height:1.06; color:var(--ink); letter-spacing:.01em; margin-bottom:20px; }
.hero h1 .b{ background:linear-gradient(92deg,var(--blue) 0%, #57a8dd 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }
[data-theme="dark"] .hero h1 .b{ background:linear-gradient(92deg,var(--blue) 0%, #9fd6f4 100%); -webkit-background-clip:text; background-clip:text; }
@supports not ((-webkit-background-clip:text) or (background-clip:text)){ .hero h1 .b{ -webkit-text-fill-color:var(--blue); color:var(--blue); } }
.hero p{ color:var(--ink-soft); font-size:1.08rem; max-width:500px; margin-bottom:28px; }
.hero p strong{ color:var(--ink); font-weight:700; }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:30px; }
.hero-trust{ display:flex; gap:12px; flex-wrap:wrap; }
.hero-trust span{ display:inline-flex; align-items:center; gap:8px; font-size:.86rem; color:var(--ink); font-weight:600;
  background:var(--card); border:1px solid var(--line); border-radius:22px; padding:8px 15px; box-shadow:var(--shadow);
  transition:transform .18s ease, border-color .18s ease; }
.hero-trust span:hover{ border-color:var(--blue); }
.hero-trust svg{ width:17px; height:17px; fill:var(--blue); flex:none; }
.emblem{ position:relative; z-index:1; display:flex; justify-content:center; align-items:center; overflow:visible; }
.emblem .disc{ position:absolute; z-index:1; width:78%; aspect-ratio:1; border-radius:50%; background:radial-gradient(circle at 50% 42%, var(--card) 0%, var(--sky-soft) 60%, transparent 72%); }
/* height:auto ist Pflicht: das width/height-Attribut (660x660, gegen Layout-Shift)
   wuerde sonst die Hoehe fix auf 660px setzen, waehrend CSS die Breite auf 330px
   begrenzt -> Logo erscheint zusammengedrueckt. */
.emblem img{ position:relative; z-index:2; width:min(330px,78%); height:auto; border-radius:50%; box-shadow:0 18px 44px rgba(27,58,92,.22); }

/* ---- Lebendiger Blueprint (Leiterbahnen wandern aus dem Logo) ----
   Alle Bahnen starten unterm Logo und zeichnen sich LANGSAM nach aussen
   (Manhattan-Routing, 90-Grad-Ecken wie auf echten Platinen). Detaillierte
   ICs (Die, Kerbe, Pin-1) und Passivbauteile faden ein. Kontaktpunkte pulsieren
   von dunkel nach hell (--pcb-hi als Glow-Layer). Radiale Maske, kein Overflow. */
.pcb{ position:absolute; z-index:0; left:50%; top:50%; transform:translate(-50%,-50%);
  width:calc(min(330px,78%) * 2.3); height:auto; aspect-ratio:1; overflow:visible; pointer-events:none; color:var(--pcb-ink);
  /* closest-side: Maske blendet GARANTIERT innerhalb der Platine aus -> nirgends harter Schnitt */
  -webkit-mask-image:radial-gradient(circle closest-side at 50% 50%, #000 0%, #000 60%, rgba(0,0,0,.5) 78%, transparent 92%);
          mask-image:radial-gradient(circle closest-side at 50% 50%, #000 0%, #000 60%, rgba(0,0,0,.5) 78%, transparent 92%); }
.pcb .pcb-traces path{ fill:none; stroke:currentColor; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; opacity:.55;
  /* ease-out: sofort sichtbarer Start, langes ruhiges Ausklingen */
  stroke-dasharray:1; stroke-dashoffset:1; animation:pcb-draw 3.4s cubic-bezier(.15,.7,.25,1) both; animation-delay:var(--ad,0s); }
.pcb .pcb-vias circle{ fill:none; stroke:currentColor; stroke-width:1.8; opacity:0;
  animation:pcb-glow .6s ease both; animation-delay:var(--ad,0s); }
.pcb .chipg,.pcb .pass{ opacity:0; animation:pcb-fade .8s ease both; animation-delay:var(--ad,0s); }
.pcb .chipg .body,.pcb .pass .body{ fill:currentColor; fill-opacity:.08; stroke:currentColor; stroke-width:2.2; }
.pcb .pass .body{ stroke-width:1.8; }
.pcb .chipg .die{ fill:none; stroke:currentColor; stroke-width:1.4; opacity:.55; }
.pcb .chipg .notch{ fill:none; stroke:currentColor; stroke-width:1.6; opacity:.85; }
.pcb .chipg .p1,.pcb .pass .pp{ fill:currentColor; opacity:.75; }
.pcb .chipg .pin,.pcb .pass .stub{ stroke:currentColor; stroke-width:2; stroke-linecap:round; }
.pcb .pcb-pads circle{ fill:currentColor; opacity:0; transform-box:fill-box; transform-origin:center; transform:scale(.3);
  animation:pcb-pad .5s ease both; animation-delay:var(--ad,0s); }
/* Halo als Gradient statt drop-shadow-Filter (kein Repaint pro Frame) und
   endlich statt endlos (Akku + WCAG 2.2.2) */
.pcb .pcb-glow circle{ fill:url(#fxglow); opacity:0; transform-box:fill-box; transform-origin:center; transform:scale(2);
  animation:pcb-pulse 2.6s ease-in-out var(--pd,2s) 8 both; }
@keyframes pcb-draw{ from{ stroke-dashoffset:1; } to{ stroke-dashoffset:0; } }
@keyframes pcb-fade{ to{ opacity:1; } }
@keyframes pcb-glow{ to{ opacity:.75; } }
@keyframes pcb-pad{ to{ opacity:.95; transform:scale(1); } }
@keyframes pcb-pulse{ 0%,100%{ opacity:0; } 50%{ opacity:1; } }

/* ---------- MAIL-IN / NAVY BANDS ---------- */
.mailin-band,.tiktok-band{ background:var(--band-bg); }
.mailin{ display:flex; align-items:center; justify-content:center; gap:18px; padding:22px 24px; text-align:center; }
.mailin svg{ width:30px; height:30px; fill:var(--band-text); flex:none; }
.mailin .a{ color:var(--band-text); font-weight:800; font-size:clamp(.95rem,2.4vw,1.18rem); letter-spacing:.02em; }
.mailin .b{ color:var(--band-sub); font-weight:600; font-size:.74rem; letter-spacing:.22em; margin-top:3px; }
.tiktok{ display:flex; align-items:center; justify-content:center; gap:16px; padding:26px 24px; flex-wrap:wrap; text-align:center; }
.tiktok svg{ width:30px; height:30px; fill:var(--band-text); flex:none; }
.tiktok .big{ font-family:'Russo One',sans-serif; color:var(--band-text); font-size:clamp(1.1rem,3vw,1.5rem); }
.tiktok .h{ color:var(--band-sub); font-weight:600; letter-spacing:.06em; }

/* ---------- SERVICES ---------- */
.services{ display:grid; grid-template-columns:1fr 1fr; gap:16px 22px; }
.svc{ display:flex; align-items:center; gap:18px; background:var(--card); border:1px solid var(--line); border-radius:12px; padding:18px 20px; transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.svc:hover{ border-color:var(--blue); box-shadow:var(--shadow); transform:translateY(-3px); }
/* Platinen-Referenz in der Kartenecke (nur wenn data-ref gesetzt) */
.svc{ position:relative; }
.svc::after{ content:attr(data-ref); position:absolute; top:8px; right:12px; font-family:var(--mono); font-size:.6rem; letter-spacing:.08em; color:var(--ink-soft); opacity:.45; }
.svc .ico{ width:54px; height:54px; flex:none; border-radius:11px; background:var(--chip); display:flex; align-items:center; justify-content:center; transition:transform .22s ease; }
.svc:hover .ico{ transform:scale(1.06); }
.svc .ico svg{ width:30px; height:30px; fill:var(--blue); }
.svc .nm{ font-weight:800; color:var(--ink); font-size:1.12rem; line-height:1.15; }
.svc .ds{ font-size:.84rem; color:var(--ink-soft); margin-top:4px; letter-spacing:.01em; }

/* ---------- STEPS ---------- */
.steps-band,.form-band{ background:var(--soft-band); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.steps{ position:relative; display:flex; align-items:flex-start; justify-content:space-between; gap:10px; }
/* Verbindungslinie als Segmente: liegen NUR in den Luecken zwischen den Kreisen,
   nie hinter einer Ziffer (sonst schiene die Linie im Dark-Mode durch die Zahl). */
.step:not(:last-child)::after{ content:''; position:absolute; top:28px; left:calc(50% + 29px); width:calc(100% - 58px); height:2px; z-index:0;
  background:linear-gradient(90deg, var(--blue), rgba(46,107,158,.5)); }
.step{ position:relative; z-index:1; flex:1; display:flex; flex-direction:column; align-items:center; text-align:center; gap:12px; }
.step .num{ position:relative; z-index:1; flex:none; box-sizing:border-box; width:58px; height:58px; border-radius:50%; border:2px solid var(--blue); color:var(--blue); font-size:1.5rem; display:flex; align-items:center; justify-content:center; background:var(--card); line-height:1; transition:transform .18s ease, box-shadow .18s ease; }
.step:hover .num{ transform:translateY(-3px); box-shadow:0 8px 20px rgba(46,107,158,.28); }
.step .st{ font-weight:800; color:var(--ink); letter-spacing:.04em; font-size:1rem; }
.step .ss{ font-size:.88rem; color:var(--ink-soft); max-width:200px; }
.step-sep{ display:none; }

/* ---------- TRUST STRIP ---------- */
.trust{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:44px; }
.trust .ti{ display:inline-flex; align-items:center; justify-content:center; gap:12px; font-weight:700; color:var(--ink); letter-spacing:.03em; font-size:.96rem;
  background:var(--card); border:1px solid var(--line); border-radius:12px; padding:18px 20px; box-shadow:var(--shadow);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.trust .ti:hover{ border-color:var(--blue); box-shadow:0 10px 24px rgba(27,58,92,.14); }
.trust .ti svg{ width:22px; height:22px; fill:var(--blue); flex:none; }

/* ---------- SHOP TEASER ---------- */
.shop-panel{ background:var(--shop-grad); border-radius:22px; padding:48px 44px; color:#fff; position:relative; overflow:hidden; }
.shop-panel::after{ content:''; position:absolute; right:-60px; top:-60px; width:240px; height:240px; border:1.5px dashed rgba(168,216,234,.35); border-radius:50%; }
.shop-tag{ font-family:var(--mono); font-size:.72rem; letter-spacing:.26em; color:var(--sky); font-weight:600; }
.shop-panel h2{ font-size:clamp(1.6rem,4vw,2.4rem); margin:12px 0 10px; color:#fff; }
.shop-panel p{ color:#d6e7f3; max-width:520px; margin-bottom:28px; }
.cats{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:30px; }
.cat{ display:flex; align-items:center; gap:11px; background:rgba(255,255,255,.08); border:1px solid rgba(168,216,234,.3); border-radius:10px; padding:13px 18px; font-weight:600; font-size:.95rem; color:#fff; transition:transform .18s ease, background .18s ease, border-color .18s ease; }
.cat:hover{ background:rgba(255,255,255,.16); border-color:rgba(168,216,234,.7); }
.cat svg{ width:22px; height:22px; fill:var(--sky); flex:none; }
.shop-panel .btn{ background:var(--sky); color:#13283d; }
.shop-panel .btn:hover{ background:#fff; }
.shop-soon{ font-size:.82rem; color:var(--sky); margin-left:14px; letter-spacing:.04em; }

/* ---------- FORM ---------- */
.form-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:48px; align-items:start; }
.benefits{ list-style:none; margin-top:24px; }
.benefits li{ display:flex; gap:14px; align-items:flex-start; margin-bottom:20px; }
.benefits .ico{ width:42px; height:42px; flex:none; border-radius:10px; background:var(--chip); display:flex; align-items:center; justify-content:center; }
.benefits .ico svg{ width:22px; height:22px; fill:var(--blue); }
.benefits b{ display:block; color:var(--ink); font-weight:700; }
.benefits span{ color:var(--ink-soft); font-size:.9rem; }
form{ background:var(--card); border:1px solid var(--line); border-radius:16px; padding:30px; box-shadow:var(--shadow); }
.field{ margin-bottom:16px; }
label{ display:block; font-family:var(--mono); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:var(--blue); margin-bottom:7px; font-weight:600; }
input[type=text],input[type=email],select,textarea{ width:100%; background:var(--input); border:1.5px solid var(--line); border-radius:9px; padding:13px 14px; color:var(--ink); font-family:inherit; font-size:.96rem; transition:border-color .18s; min-height:46px; }
input:focus,select:focus,textarea:focus{ border-color:var(--blue); }
input:focus:not(:focus-visible),select:focus:not(:focus-visible),textarea:focus:not(:focus-visible){ outline:none; }
textarea{ resize:vertical; min-height:104px; }
input[type=file]{ width:100%; font-size:.85rem; color:var(--ink-soft); padding:8px 0; min-height:auto; }
.row2{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.check{ display:flex; gap:11px; align-items:flex-start; font-size:.86rem; color:var(--ink-soft); margin-bottom:13px; }
.check input{ margin-top:2px; flex:none; width:19px; height:19px; accent-color:var(--blue); }
.check label{ font-family:'Inter'; text-transform:none; letter-spacing:0; color:var(--ink-soft); font-size:.86rem; margin:0; font-weight:400; }
.req{ color:var(--blue); }
form .btn{ width:100%; margin-top:6px; font-size:.95rem; padding:15px; }
.form-note{ font-family:var(--mono); font-size:.72rem; color:var(--ink-soft); margin-top:14px; text-align:center; letter-spacing:.04em; }
.ok-msg{ display:none; background:rgba(54,211,153,.14); border:1px solid #7ed3a6; color:#1a7a4b; padding:14px; border-radius:9px; margin-bottom:16px; font-size:.9rem; }
[data-theme="dark"] .ok-msg{ color:#9ff0cf; }

/* ---------- FAQ ---------- */
details{ background:var(--card); border:1px solid var(--line); border-radius:11px; padding:18px 22px; margin-bottom:12px; }
details summary{ cursor:pointer; font-family:'Russo One',sans-serif; font-size:1rem; color:var(--ink); list-style:none; display:flex; justify-content:space-between; align-items:center; gap:16px; }
details summary::-webkit-details-marker{ display:none; }
details summary::after{ content:'+'; color:var(--blue); font-size:1.5rem; flex:none; }
details[open] summary::after{ content:'–'; }
details p{ color:var(--ink-soft); margin-top:12px; font-size:.94rem; }

/* ---------- FOOTER ---------- */
footer{ background:var(--foot-bg); color:var(--foot-ink); }
.foot-top{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:34px; padding:56px 0 40px; }
footer .owner{ color:#fff; font-size:1.5rem; letter-spacing:.05em; }
footer .role{ font-family:var(--mono); font-size:.72rem; letter-spacing:.26em; color:var(--sky); margin-bottom:8px; }
footer h3,footer h4{ font-family:var(--mono); font-size:.74rem; letter-spacing:.18em; color:var(--sky); margin-bottom:16px; font-weight:600; }
footer a{ color:var(--foot-ink); font-size:.9rem; display:block; padding:5px 0; margin-bottom:2px; transition:color .18s; }
footer a:hover{ color:#fff; }
.socials{ display:flex; flex-direction:column; gap:14px; margin-top:8px; }
.soc{ display:flex; align-items:center; gap:13px; }
.soc .ic{ width:40px; height:40px; flex:none; border-radius:9px; border:1px solid rgba(168,216,234,.28); display:flex; align-items:center; justify-content:center; }
.soc .ic svg{ width:20px; height:20px; fill:var(--sky); }
.soc .net{ font-family:var(--mono); font-size:.66rem; letter-spacing:.18em; color:var(--sky); }
.soc .han{ color:#fff; font-weight:700; font-size:.96rem; margin:0; }
.qrcard{ background:#fff; border-radius:12px; padding:14px; display:flex; flex-direction:column; align-items:center; gap:8px; max-width:170px; }
.qrcard img{ width:120px; height:120px; display:block; }
.qrcard .cap{ font-family:'Russo One',sans-serif; font-size:.72rem; color:#13283d; text-align:center; line-height:1.25; }
.foot-bottom{ border-top:1px solid rgba(168,216,234,.18); padding:20px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-family:var(--mono); font-size:.72rem; color:var(--foot-soft); letter-spacing:.04em; }

/* ---------- CONTENT / LEGAL PAGES ---------- */
.page-head{ padding:54px 0 6px; }
.page-head .crumb{ font-family:var(--mono); font-size:.72rem; letter-spacing:.16em; color:var(--ink-soft); margin-bottom:14px; }
.page-head .crumb a:hover{ color:var(--blue); }
.page-head h1{ font-size:clamp(1.8rem,4vw,2.6rem); color:var(--ink); letter-spacing:.02em; }
.prose{ max-width:800px; padding:18px 0 70px; }
.prose h2{ font-family:'Russo One',sans-serif; font-size:1.15rem; color:var(--ink); letter-spacing:.04em; margin:34px 0 12px; }
.prose h3{ font-size:1rem; color:var(--ink); font-weight:800; margin:22px 0 8px; }
.prose p,.prose li{ color:var(--ink-soft); font-size:.96rem; margin-bottom:12px; }
.prose ul,.prose ol{ padding-left:22px; margin-bottom:12px; }
.prose a,.check label a{ color:var(--blue); text-decoration:underline; text-underline-offset:2px; }
.prose strong{ color:var(--ink); }
.prose .box{ background:var(--card); border:1px solid var(--line); border-radius:12px; padding:20px 24px; margin:18px 0; }
.note{ display:flex; gap:12px; align-items:flex-start; background:rgba(46,107,158,.08); border:1px solid var(--line); border-left:3px solid var(--blue); border-radius:8px; padding:14px 16px; margin:18px 0; font-size:.88rem; color:var(--ink-soft); }
.note b{ color:var(--ink); }

/* ---------- STATUS / SHOP placeholders ---------- */
.panel{ background:var(--card); border:1px solid var(--line); border-radius:16px; padding:32px; box-shadow:var(--shadow); max-width:560px; }
.status-form{ display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; }
.status-form input{ flex:1; min-width:200px; }
.status-result{ display:none; margin-top:20px; border-top:1px solid var(--line); padding-top:18px; color:var(--ink-soft); font-size:.92rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width:900px){
  /* visibility:hidden zusaetzlich zum transform: sonst bleibt das zugeklappte
     Menue fuer Tastatur/Screenreader fokussierbar */
  .nav-links{ position:fixed; inset:68px 0 auto 0; flex-direction:column; gap:0; background:var(--bg1); border-bottom:1px solid var(--line); padding:8px 0; margin:0; transform:translateY(-130%); visibility:hidden; transition:transform .25s ease, visibility .25s; box-shadow:0 12px 24px rgba(0,0,0,.12); }
  .nav-links.open{ transform:translateY(0); visibility:visible; }
  .nav-links a{ padding:15px 24px; font-size:1rem; border-bottom:1px solid var(--line); }
  nav .btn.cta{ display:none; }
  .burger{ display:flex; }
  .hero{ grid-template-columns:1fr; gap:30px; padding-top:44px; }
  .emblem{ order:-1; } .emblem img{ width:200px; }
  /* Mobil: Glow-Scheibe klein halten - bei 78% Spaltenbreite deckt sie sonst
     genau den Bereich ab, in dem die Leiterbahnen sichtbar waeren. */
  .emblem .disc{ width:240px; }
  /* Bauteile stoeren ueber der Schrift -> ausblenden. Breite Ellipsen-Maske:
     seitlich viel Platine sichtbar (full-bleed), unten endet sie VOR dem Text.
     Bahnen kraeftiger, weil helle Farbe + Maskenfade auf Mobil sonst zu schwach. */
  .pcb{ width:calc(200px * 2.7);
    -webkit-mask-image:radial-gradient(ellipse 62% 26% at 50% 50%, #000 0%, #000 48%, rgba(0,0,0,.45) 72%, transparent 94%);
            mask-image:radial-gradient(ellipse 62% 26% at 50% 50%, #000 0%, #000 48%, rgba(0,0,0,.45) 72%, transparent 94%); }
  .pcb .pcb-traces path{ opacity:.8; stroke-width:2.6; }
  .pcb .chipg,.pcb .pass{ display:none; }
  .services{ grid-template-columns:1fr; }
  .steps{ flex-direction:column; align-items:stretch; gap:22px; }
  .step:not(:last-child)::after{ top:58px; left:28px; right:auto; width:2px; height:calc(100% - 36px);
    background:linear-gradient(180deg, var(--blue), rgba(46,107,158,.5)); }
  .step{ flex-direction:row; align-items:flex-start; text-align:left; gap:16px; }
  .step .ss{ max-width:none; }
  .trust{ grid-template-columns:1fr; }
  .form-grid{ grid-template-columns:1fr; gap:32px; }
  .shop-panel{ padding:34px 24px; }
}
@media (max-width:560px){
  section{ padding:56px 0; }
  .wrap{ padding:0 18px; }
  .hero h1{ font-size:2rem; }
  .row2{ grid-template-columns:1fr; }
  .foot-top{ grid-template-columns:1fr 1fr; }
  .sec-head .l{ max-width:30px; }
  .cat{ width:100%; }
}

/* ===========================================================
   MOTION / ANIMATIONEN
   Grundsatz: nur transform + opacity (GPU, kein Reflow).
   Alles unter html.js -> ohne JS bleibt jeder Inhalt sichtbar.
   prefers-reduced-motion schaltet am Ende alles ab.
   =========================================================== */

/* ---- Scroll-Reveal: Einzelelemente (.reveal) ---- */
html.js .reveal{ opacity:0; transform:translateY(18px); will-change:opacity,transform;
  transition:opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
html.js .reveal.in{ opacity:1; transform:none; }

/* ---- Scroll-Reveal: Container mit gestaffelten Kindern ([data-reveal]) ---- */
html.js [data-reveal] > *{ opacity:0; transform:translateY(16px);
  transition:opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1); }
html.js [data-reveal].in > *{ opacity:1; transform:none; }
html.js [data-reveal].in > *:nth-child(2){ transition-delay:.06s; }
html.js [data-reveal].in > *:nth-child(3){ transition-delay:.12s; }
html.js [data-reveal].in > *:nth-child(4){ transition-delay:.18s; }
html.js [data-reveal].in > *:nth-child(5){ transition-delay:.24s; }
html.js [data-reveal].in > *:nth-child(6){ transition-delay:.30s; }

/* ---- Hero-Auftritt beim Laden (reines CSS, gestaffelt) ---- */
@keyframes fx-rise{ from{ opacity:0; transform:translateY(20px); } to{ opacity:1; transform:none; } }
.hero .kicker,.hero h1,.hero p,.hero-cta,.hero-trust,.emblem{ animation:fx-rise .7s cubic-bezier(.16,1,.3,1) both; }
.hero h1{ animation-delay:.08s; }
.hero p{ animation-delay:.16s; }
.hero-cta{ animation-delay:.24s; }
.hero-trust{ animation-delay:.32s; }
.emblem{ animation-delay:.12s; }

/* ---- Scroll-Reveal fuer Unterseiten (per reveal.js gesetzt) ---- */
.fx-reveal{ opacity:0; transform:translateY(16px); will-change:opacity,transform;
  transition:opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.fx-reveal.fx-in{ opacity:1; transform:none; }

/* ---- Reduced Motion: alles ruhigstellen ---- */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important;
    transition-duration:.001ms !important; scroll-behavior:auto !important; }
  html.js .reveal,html.js [data-reveal] > *,.fx-reveal{ opacity:1 !important; transform:none !important; }
  .pcb .pcb-traces path{ stroke-dashoffset:0 !important; }
  .pcb .pcb-vias circle{ opacity:.75 !important; }
  .pcb .chipg,.pcb .pass{ opacity:1 !important; }
  .pcb .pcb-pads circle{ opacity:.95 !important; transform:none !important; }
  .pcb .pcb-glow circle{ animation:none !important; opacity:0 !important; }
}

/* ===========================================================
   GETEILTE UNTERSEITEN-STYLES (vorher als <style>-Block in ~25
   Dateien dupliziert - hier konsolidiert, Werte vereinheitlicht)
   =========================================================== */
.faq-hero{ text-align:center; padding:46px 0 6px; }
.faq-hero .tag{ display:inline-block; font-size:.72rem; letter-spacing:.14em; font-weight:800; color:var(--blue); background:var(--chip); padding:6px 14px; border-radius:999px; margin-bottom:14px; }
.faq-hero h1{ font-size:clamp(1.8rem,5vw,2.6rem); color:var(--ink); }
.faq-hero p{ color:var(--ink-soft); max-width:660px; margin:14px auto 0; line-height:1.6; }
.lp-wrap{ max-width:820px; margin:0 auto; }
.lp-cta-row{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:22px; }
.lp-trust{ display:flex; flex-wrap:wrap; gap:8px 18px; justify-content:center; margin-top:18px; color:var(--ink-soft); font-size:.85rem; }
.lp-sec{ margin-top:40px; }
.lp-sec h2{ font-size:1.35rem; color:var(--ink); margin-bottom:14px; }
.lp-lead{ color:var(--ink-soft); line-height:1.75; }
.lp-lead p{ margin-bottom:13px; }
.lp-lead ul{ margin:0 0 14px 20px; line-height:1.7; }
.lp-lead li{ margin-bottom:7px; }
.lp-note{ background:var(--chip); border:1px solid var(--line); border-radius:12px; padding:14px 16px; color:var(--ink-soft); line-height:1.6; }
.art-meta{ color:var(--ink-soft); font-size:.85rem; margin-top:10px; }
.lp-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:14px; margin-top:8px; }
.lp-card{ background:var(--card); border:1px solid var(--line); border-radius:14px; padding:18px; }
.lp-card b{ color:var(--ink); display:block; margin-bottom:5px; }
.lp-card span{ color:var(--ink-soft); font-size:.9rem; line-height:1.5; }
.post-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:16px; margin-top:8px; }
.post-card{ display:block; background:var(--card); border:1px solid var(--line); border-radius:16px; padding:22px; text-decoration:none; transition:border-color .15s, transform .15s; }
.post-card:hover{ border-color:var(--blue); transform:translateY(-2px); }
.post-card .pc-tag{ font-size:.68rem; letter-spacing:.12em; font-weight:800; color:var(--blue); }
.post-card h3{ color:var(--ink); font-size:1.08rem; margin:8px 0 6px; line-height:1.35; }
.post-card p{ color:var(--ink-soft); font-size:.9rem; line-height:1.55; }
.faq-cat{ margin-top:8px; }
.faq-cta{ background:var(--card); border:1px solid var(--line); border-radius:16px; padding:30px; text-align:center; margin:46px 0 10px; }
.faq-cta h3{ color:var(--ink); font-size:1.3rem; }
.faq-cta p{ color:var(--ink-soft); margin:8px 0 18px; }
.faq-cta .btn + .btn{ margin-left:10px; }
.lp-related{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:16px; }
@media(max-width:560px){ .faq-cta .btn{ display:block; margin:8px auto 0; max-width:280px; } .faq-cta .btn + .btn{ margin-left:auto; } }

/* ---- Kompakt-Footer der Unterseiten (Kontakt + Pflichtlinks) ---- */
.foot-compact{ display:flex; flex-wrap:wrap; gap:4px 22px; justify-content:center; padding:26px 0 4px; }
.foot-compact a{ display:inline-block; margin:0; }

/* ---- Mobile Sticky-CTA-Leiste (nur unter 900px sichtbar) ---- */
.mcta{ display:none; }
@media (max-width:900px){
  .mcta{ display:flex; position:fixed; left:0; right:0; bottom:0; z-index:55;
    padding:10px 14px calc(10px + env(safe-area-inset-bottom));
    background:var(--header-bg); backdrop-filter:blur(10px); border-top:1px solid var(--line); }
  .mcta .btn{ flex:1; }
  body.fx-mcta-off .mcta{ display:none; }
}

/* ---- Formular: Inline-Fehler + E-Mail-Korrekturvorschlag (statt alert/confirm) ---- */
.err-msg{ display:none; background:rgba(198,64,64,.1); border:1px solid rgba(198,64,64,.45); color:#a03535; padding:14px; border-radius:9px; margin:14px 0 4px; font-size:.9rem; }
[data-theme="dark"] .err-msg{ color:#ff9d9d; }
.hint-msg{ display:none; background:var(--chip); border:1px solid var(--line); border-radius:9px; padding:10px 12px; margin-top:8px; font-size:.86rem; color:var(--ink-soft); }
.hint-msg button{ font:inherit; font-weight:700; color:var(--blue); background:none; border:none; cursor:pointer; text-decoration:underline; padding:0 2px; }

/* ---- Doppelte Naht zwischen direkt aneinanderstossenden Soft-Baendern ---- */
.form-band + .steps-band, .steps-band + .form-band{ border-top:0; }
