
/* ============================================================
   BEDEK — Design Tokens
   (Struktur/Layout-Vorlage: micronel.com | CI + Inhalte: bedek.de)
   ============================================================ */
:root{
  /* Farben — Marke */
  --bedek-blue:#0f6cb4;        /* Signatur-Blau (Bedek) */
  --blue-deep:#0a4c82;         /* Blau auf hellem Grund (AA-tauglich für Text) */
  --blue-bright:#2e90de;       /* Hover / Highlight auf dunklem Grund */

  /* Farben — Neutral (Anodisiertes Aluminium / Stahl) */
  --ink:#14181d;              /* Graphit, Fließtext & dunkle Sektionen */
  --ink-soft:#20262e;
  --paper:#f2f3f5;            /* Kühl-helles Technikpapier */
  --paper-2:#e9ebee;
  --steel:#4e5763;            /* Sekundärtext (AA auf paper) */
  --steel-light:#8b95a1;
  --line:#d5d8dc;             /* Haarlinien */
  --line-dark:#2c333c;        /* Linien auf dunklem Grund */
  --white:#ffffff;

  /* Typografie */
  --font-display:'Archivo',system-ui,sans-serif;
  --font-body:'Inter',system-ui,sans-serif;
  --font-mono:'IBM Plex Mono',ui-monospace,monospace;

  /* Skala */
  --step--1:clamp(.78rem,.75rem + .15vw,.86rem);
  --step-0:clamp(1rem,.96rem + .2vw,1.09rem);
  --step-1:clamp(1.2rem,1.1rem + .5vw,1.5rem);
  --step-2:clamp(1.5rem,1.3rem + 1vw,2.1rem);
  --step-3:clamp(2rem,1.6rem + 2vw,3.2rem);
  --step-4:clamp(2.6rem,1.9rem + 3.4vw,5rem);

  /* Raster & Radius */
  --gap:clamp(1rem,.7rem + 1.4vw,1.75rem);
  --pad-section:clamp(3.5rem,2.5rem + 4vw,7rem);
  --maxw:1240px;
  --radius:3px;
  --radius-lg:6px;

  /* Bewegung */
  --ease:cubic-bezier(.22,.61,.36,1);
  --dur:.5s;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;font-family:var(--font-body);color:var(--ink);
  background:var(--paper);font-size:var(--step-0);line-height:1.6;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
}
h1,h2,h3,h4{font-family:var(--font-display);line-height:1.05;margin:0;font-weight:800;letter-spacing:-.02em}
p{margin:0 0 1em}
a{color:inherit;text-decoration:none}
img,svg{max-width:100%;display:block}
ul{margin:0;padding:0;list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}

/* Fokus — überall sichtbar (WCAG 2.4.7) */
:focus-visible{outline:3px solid var(--bedek-blue);outline-offset:2px;border-radius:2px}
.on-dark :focus-visible{outline-color:#59a8ec}

/* Skip-Link (WCAG 2.4.1) */
.skip{position:absolute;left:8px;top:-60px;z-index:200;background:var(--ink);color:#fff;
  padding:.7rem 1.1rem;border-radius:var(--radius);transition:top .2s;font-weight:600}
.skip:focus{top:8px}

/* ---- Layout-Helfer ---- */
.wrap{width:min(100% - 2.5rem,var(--maxw));margin-inline:auto}
.eyebrow{font-family:var(--font-mono);font-size:var(--step--1);letter-spacing:.22em;
  text-transform:uppercase;color:var(--blue-deep);font-weight:600;display:inline-flex;
  align-items:center;gap:.6rem;margin:0 0 1.1rem}
.eyebrow::before{content:"";width:26px;height:2px;background:var(--bedek-blue)}
.on-dark .eyebrow{color:#6db8ee}
.on-dark .eyebrow::before{background:var(--bedek-blue)}

/* ---- Buttons ---- */
.btn{display:inline-flex;align-items:center;gap:.6rem;font-weight:600;font-size:var(--step-0);
  padding:.85rem 1.5rem;border-radius:var(--radius);transition:all .25s var(--ease);
  min-height:48px;line-height:1;white-space:nowrap}
.btn svg{width:16px;height:16px;transition:transform .25s var(--ease)}
.btn:hover svg{transform:translateX(4px)}
.btn-primary{background:var(--bedek-blue);color:#fff}
.btn-primary:hover{background:var(--blue-bright)}
.btn-ghost{border:1.5px solid var(--line-dark);color:var(--ink)}
.on-dark .btn-ghost{border-color:rgba(255,255,255,.28);color:#fff}
.on-dark .btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,.06)}
.btn-ghost:hover{border-color:var(--ink);background:rgba(20,24,29,.04)}
.link-arrow{display:inline-flex;align-items:center;gap:.5rem;font-weight:600;color:var(--blue-deep);
  font-size:var(--step--1);font-family:var(--font-mono);letter-spacing:.04em}
.link-arrow svg{width:15px;height:15px;transition:transform .25s var(--ease)}
.link-arrow:hover svg{transform:translateX(4px)}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.utility{background:var(--ink);color:#c3cad3;font-size:var(--step--1)}
.utility .wrap{display:flex;justify-content:space-between;align-items:center;
  gap:1rem;min-height:40px;flex-wrap:wrap}
.utility ul{display:flex;gap:1.4rem;flex-wrap:wrap}
.utility li{display:flex;align-items:center;gap:.45rem}
.utility a:hover{color:#fff}
.utility svg{width:14px;height:14px;opacity:.7;flex:none}
.utility .social a{color:#8b95a1;font-family:var(--font-mono);letter-spacing:.05em}
.utility .social{gap:1.1rem}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header{position:sticky;top:0;z-index:100;background:rgba(242,243,245,.9);
  backdrop-filter:blur(12px);border-bottom:1px solid var(--line);transition:box-shadow .3s}
.site-header.scrolled{box-shadow:0 6px 24px -12px rgba(20,24,29,.25)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;min-height:74px}
.brand{display:flex;align-items:center;gap:.7rem;flex:none}
.brand-mark{font-family:var(--font-display);font-weight:900;font-size:1.6rem;letter-spacing:-.03em;
  color:var(--ink);display:flex;align-items:center;gap:.5rem}
.brand-mark .dot{width:11px;height:11px;background:var(--bedek-blue);border-radius:2px;transform:rotate(45deg)}
.brand small{display:block;font-family:var(--font-mono);font-size:.58rem;letter-spacing:.18em;
  color:var(--steel);text-transform:uppercase;margin-top:2px}

.nav-links{display:flex;gap:.2rem;align-items:center}
.nav-links > li > a{display:block;padding:.6rem .85rem;font-weight:500;font-size:.95rem;
  color:var(--ink);border-radius:var(--radius);transition:color .2s}
.nav-links > li > a:hover{color:var(--blue-deep)}
.has-menu{position:relative}
.has-menu > a::after{content:"";display:inline-block;width:6px;height:6px;margin-left:.4rem;
  border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;
  transform:rotate(45deg) translateY(-2px);opacity:.5}
.mega{position:absolute;top:calc(100% + 10px);left:50%;transform:translateX(-50%) translateY(8px);
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);
  box-shadow:0 24px 48px -24px rgba(20,24,29,.4);padding:1.2rem;min-width:300px;
  opacity:0;visibility:hidden;transition:all .25s var(--ease);z-index:20}
.has-menu:hover .mega,.has-menu:focus-within .mega{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.mega a{display:block;padding:.6rem .7rem;border-radius:var(--radius);transition:background .18s}
.mega a:hover{background:var(--paper)}
.mega a strong{display:block;font-weight:600;font-size:.92rem}
.mega a span{font-size:.8rem;color:var(--steel)}

.nav-actions{display:flex;align-items:center;gap:.6rem;flex:none}
.icon-btn{width:44px;height:44px;display:grid;place-items:center;border-radius:var(--radius);
  color:var(--ink);transition:background .2s}
.icon-btn:hover{background:var(--paper-2)}
.icon-btn svg{width:19px;height:19px}
.nav-toggle{display:none}

/* Mobile-Panel */
.mobile-panel{display:none}

/* ============================================================
   HERO
   ============================================================ */
.hero{position:relative;background:var(--ink);color:#fff;overflow:hidden;isolation:isolate}
.hero-flow{position:absolute;inset:0;width:100%;height:100%;z-index:0;opacity:.55}
.hero .wrap{position:relative;z-index:2;padding-block:clamp(4rem,3rem + 6vw,8.5rem)}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(2rem,1rem + 4vw,4.5rem);align-items:center}
.hero h1{font-size:var(--step-4);font-weight:900;letter-spacing:-.035em;margin-bottom:1.4rem}
.hero h1 .accent{color:var(--blue-bright)}
.hero-lead{font-size:var(--step-1);color:#c3cad3;max-width:44ch;margin-bottom:2rem;line-height:1.4;font-weight:400}
.hero-cta{display:flex;gap:.9rem;flex-wrap:wrap}
.hero-badge{display:inline-flex;align-items:center;gap:.6rem;font-family:var(--font-mono);
  font-size:var(--step--1);letter-spacing:.12em;text-transform:uppercase;color:#8b95a1;
  margin-bottom:1.6rem;padding:.4rem .8rem;border:1px solid var(--line-dark);border-radius:100px}
.hero-badge b{color:#fff;font-weight:600}

/* PQ-Panel (Signatur): Druck-Volumenstrom-Diagramm */
.pq-panel{background:linear-gradient(160deg,var(--ink-soft),#0e1216);border:1px solid var(--line-dark);
  border-radius:var(--radius-lg);padding:1.6rem;box-shadow:0 30px 60px -30px rgba(0,0,0,.6)}
.pq-head{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:1rem}
.pq-head span{font-family:var(--font-mono);font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;color:#8b95a1}
.pq-head b{font-family:var(--font-mono);color:var(--blue-bright);font-size:.72rem;letter-spacing:.1em}
.pq-metrics{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:var(--line-dark);
  border:1px solid var(--line-dark);border-radius:var(--radius);overflow:hidden;margin-top:1.1rem}
.pq-metric{background:var(--ink);padding:.85rem .9rem}
.pq-metric .v{font-family:var(--font-display);font-weight:800;font-size:1.35rem;color:#fff}
.pq-metric .v small{font-size:.7rem;color:var(--steel-light);font-family:var(--font-mono);font-weight:400}
.pq-metric .k{font-family:var(--font-mono);font-size:.64rem;letter-spacing:.1em;text-transform:uppercase;color:#8b95a1;margin-top:.15rem}

/* ============================================================
   PROMO-BAND (Highlights)
   ============================================================ */
.promo{background:var(--ink-soft);color:#fff;position:relative;z-index:3}
.promo .wrap{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--line-dark)}
.promo-card{background:var(--ink);padding:clamp(1.8rem,1.2rem + 2vw,3rem);
  display:flex;flex-direction:column;gap:.8rem;position:relative;overflow:hidden;transition:background .3s}
.promo-card:hover{background:#171d24}
.promo-tag{font-family:var(--font-mono);font-size:.68rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--blue-bright);font-weight:600}
.promo-card h3{font-size:var(--step-2);font-weight:800}
.promo-card p{color:#aab3bd;margin:0;max-width:42ch}
.promo-card .link-arrow{color:#fff;margin-top:.4rem}
.promo-card .ghost-num{position:absolute;right:-.5rem;bottom:-2.2rem;font-family:var(--font-display);
  font-weight:900;font-size:9rem;color:rgba(255,255,255,.03);pointer-events:none;line-height:1}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section{padding-block:var(--pad-section)}
.sec-head{max-width:640px;margin-bottom:clamp(2rem,1.5rem + 2vw,3.5rem)}
.sec-head h2{font-size:var(--step-3);margin-bottom:1rem}
.sec-head p{color:var(--steel);font-size:var(--step-1);line-height:1.45;font-weight:400}

/* ---- Produktkategorien ---- */
.prod-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap)}
.prod-card{border:1px solid var(--line);border-radius:var(--radius-lg);background:var(--white);
  overflow:hidden;display:flex;flex-direction:column;transition:transform .3s var(--ease),box-shadow .3s var(--ease)}
.prod-card:hover{transform:translateY(-5px);box-shadow:0 24px 44px -24px rgba(20,24,29,.28)}
.prod-visual{aspect-ratio:16/11;background:radial-gradient(120% 120% at 30% 0%,#1c232b,#0e1216);
  position:relative;display:grid;place-items:center;overflow:hidden}
.prod-visual svg{width:64%;height:64%}
.prod-body{padding:1.5rem;display:flex;flex-direction:column;gap:.85rem;flex:1}
.prod-body h3{font-size:var(--step-1);font-weight:800}
.spec-row{display:flex;gap:1.4rem;font-family:var(--font-mono);font-size:.8rem;
  padding-block:.7rem;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.spec-row div{display:flex;flex-direction:column;gap:.15rem}
.spec-row .lab{color:var(--steel);letter-spacing:.08em;text-transform:uppercase;font-size:.62rem}
.spec-row .val{color:var(--ink);font-weight:600;font-size:.95rem}
.prod-body p{color:var(--steel);margin:0;font-size:.92rem;flex:1}
.prod-body .link-arrow{margin-top:auto}

/* ---- Geschäftsbereiche (Split) ---- */
.fields{background:var(--paper-2)}
.field-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap)}
.field-card{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:1.8rem;display:flex;flex-direction:column;gap:1rem;transition:border-color .3s}
.field-card:hover{border-color:var(--bedek-blue)}
.field-ico{width:52px;height:52px;border-radius:var(--radius);background:var(--ink);
  display:grid;place-items:center;color:#fff}
.field-ico svg{width:26px;height:26px}
.field-card h3{font-size:var(--step-1);font-weight:800}
.field-card p{color:var(--steel);font-size:.94rem;margin:0}
.field-card ul{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.2rem}
.field-card ul li{font-family:var(--font-mono);font-size:.72rem;color:var(--steel);
  border:1px solid var(--line);padding:.25rem .55rem;border-radius:100px}

/* ---- Kennzahlen-Band ---- */
.stats{background:var(--ink);color:#fff}
.stats .wrap{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(1.5rem,1rem + 2vw,3rem)}
.stat{border-left:2px solid var(--bedek-blue);padding-left:1.2rem}
.stat .n{font-family:var(--font-display);font-weight:900;font-size:clamp(2.2rem,1.6rem + 2.4vw,3.4rem);
  letter-spacing:-.03em;line-height:1}
.stat .n small{font-size:.5em;color:var(--blue-bright)}
.stat .l{color:#aab3bd;font-size:.9rem;margin-top:.5rem;line-height:1.35}

/* ---- Made in Germany ---- */
.quality .wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(2rem,1rem + 4vw,5rem);align-items:center}
.quality-visual{aspect-ratio:5/4;border-radius:var(--radius-lg);position:relative;overflow:hidden;
  background:linear-gradient(150deg,#1c232b,#0c1014);border:1px solid var(--line);display:grid;place-items:center}
.quality h2{font-size:var(--step-3);margin-bottom:1.2rem}
.quality p{color:var(--steel);font-size:var(--step-0);max-width:48ch}
.quality-links{display:flex;flex-direction:column;gap:0;margin-top:1.8rem;border-top:1px solid var(--line)}
.quality-links a{display:flex;align-items:center;justify-content:space-between;padding:1.05rem .2rem;
  border-bottom:1px solid var(--line);font-weight:600;transition:padding .25s var(--ease),color .2s}
.quality-links a:hover{padding-left:.9rem;color:var(--blue-deep)}
.quality-links a svg{width:18px;height:18px;color:var(--bedek-blue)}
.cert-seal{position:absolute;inset:0;display:grid;place-items:center}

/* ---- Referenzen ---- */
.refs{background:var(--paper-2)}
.ref-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap)}
.ref-card{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;
  display:flex;flex-direction:column;transition:transform .3s var(--ease)}
.ref-card:hover{transform:translateY(-4px)}
.ref-visual{aspect-ratio:16/10;background:linear-gradient(150deg,#232b34,#12171c);position:relative;
  display:grid;place-items:center;overflow:hidden}
.ref-visual .tag{position:absolute;top:.9rem;left:.9rem;font-family:var(--font-mono);font-size:.66rem;
  letter-spacing:.1em;text-transform:uppercase;background:var(--bedek-blue);color:#fff;padding:.3rem .6rem;border-radius:2px}
.ref-body{padding:1.4rem;display:flex;flex-direction:column;gap:.7rem;flex:1}
.ref-body h3{font-size:1.15rem;font-weight:700;line-height:1.2}
.ref-body p{color:var(--steel);font-size:.88rem;margin:0;flex:1}
.ref-body .chips{display:flex;flex-wrap:wrap;gap:.4rem}
.ref-body .chips span{font-family:var(--font-mono);font-size:.68rem;color:var(--blue-deep);
  background:rgba(15,108,180,.07);padding:.22rem .5rem;border-radius:2px}

/* ---- Kontakt / Anfrage ---- */
.contact{background:var(--ink);color:#fff;position:relative;overflow:hidden}
.contact-flow{position:absolute;inset:0;opacity:.4;z-index:0}
.contact .wrap{position:relative;z-index:2;display:grid;grid-template-columns:.9fr 1.1fr;
  gap:clamp(2rem,1rem + 4vw,5rem)}
.contact h2{font-size:var(--step-3);margin-bottom:1.2rem}
.contact-intro p{color:#aab3bd;max-width:40ch;margin-bottom:1.8rem}
.contact-detail{display:flex;flex-direction:column;gap:1.1rem;margin-top:2rem;
  padding-top:1.8rem;border-top:1px solid var(--line-dark)}
.contact-detail a,.contact-detail div{display:flex;align-items:center;gap:.9rem;color:#c3cad3}
.contact-detail svg{width:20px;height:20px;color:var(--bedek-blue);flex:none}
.contact-detail a:hover{color:#fff}
.contact-detail b{color:#fff;font-weight:600;display:block}
.contact-detail small{color:#8b95a1;font-family:var(--font-mono);font-size:.72rem}

/* Formular */
.form-card{background:var(--white);border-radius:var(--radius-lg);padding:clamp(1.6rem,1rem + 2vw,2.6rem);color:var(--ink)}
.form-tabs{display:flex;gap:.4rem;margin-bottom:1.6rem;flex-wrap:wrap}
.form-tab{font-family:var(--font-mono);font-size:.74rem;letter-spacing:.06em;padding:.5rem .9rem;
  border:1px solid var(--line);border-radius:100px;color:var(--steel);transition:all .2s}
.form-tab[aria-pressed="true"]{background:var(--ink);color:#fff;border-color:var(--ink)}
.form-tab:hover{border-color:var(--ink)}
.field-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.field{display:flex;flex-direction:column;gap:.35rem;margin-bottom:1rem}
.field label{font-size:.82rem;font-weight:600;color:var(--ink)}
.field label .req{color:var(--bedek-blue)}
.field input,.field select,.field textarea{font-family:inherit;font-size:.95rem;padding:.7rem .85rem;
  border:1px solid var(--line);border-radius:var(--radius);background:var(--paper);color:var(--ink);
  transition:border-color .2s,background .2s;min-height:46px}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--bedek-blue);
  background:#fff;outline:none;box-shadow:0 0 0 3px rgba(15,108,180,.12)}
.field textarea{min-height:96px;resize:vertical}
.field-check{flex-direction:row;align-items:flex-start;gap:.6rem;font-size:.82rem;color:var(--steel)}
.field-check input{min-height:auto;width:20px;height:20px;flex:none;accent-color:var(--bedek-blue);margin-top:.1rem}
.form-note{font-family:var(--font-mono);font-size:.7rem;color:var(--steel);margin:.2rem 0 1.2rem}
.form-msg{display:none;padding:.9rem 1rem;border-radius:var(--radius);background:rgba(15,108,180,.08);
  border:1px solid var(--bedek-blue);color:var(--blue-deep);font-size:.88rem;font-weight:500;margin-bottom:1rem}
.form-msg.show{display:block}
.form-card .btn-primary{width:100%;justify-content:center}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{background:#0d1116;color:#aab3bd;padding-block:clamp(3rem,2rem + 3vw,5rem) 2rem}
.foot-top{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:clamp(1.5rem,1rem + 2vw,3rem);
  padding-bottom:3rem;border-bottom:1px solid var(--line-dark)}
.foot-brand .brand-mark{color:#fff;margin-bottom:1rem}
.foot-brand p{font-size:.9rem;max-width:34ch;color:#8b95a1}
.foot-col h4{font-family:var(--font-mono);font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;
  color:#fff;margin-bottom:1.2rem;font-weight:600}
.foot-col li{margin-bottom:.7rem}
.foot-col a{font-size:.92rem;transition:color .2s}
.foot-col a:hover{color:#fff}
.foot-news p{font-size:.88rem;color:#8b95a1;margin-bottom:1rem}
.news-form{display:flex;gap:.5rem;flex-wrap:wrap}
.news-form input{flex:1;min-width:150px;padding:.7rem .85rem;border-radius:var(--radius);
  border:1px solid var(--line-dark);background:var(--ink);color:#fff;font-family:inherit;min-height:46px}
.news-form input:focus{border-color:var(--bedek-blue);outline:none}
.news-form button{padding:.7rem 1.1rem;background:var(--bedek-blue);color:#fff;border-radius:var(--radius);
  font-weight:600;min-height:46px}
.news-form button:hover{background:var(--blue-bright)}
.foot-bottom{display:flex;justify-content:space-between;align-items:center;gap:1rem;
  padding-top:2rem;flex-wrap:wrap;font-size:.82rem;color:#6b7480}
.foot-bottom .legal{display:flex;gap:1.4rem;flex-wrap:wrap}
.foot-bottom a:hover{color:#fff}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:960px){
  .hero-grid,.quality .wrap,.contact .wrap{grid-template-columns:1fr}
  .pq-panel{max-width:460px}
  .prod-grid,.field-grid,.ref-grid{grid-template-columns:repeat(2,1fr)}
  .stats .wrap{grid-template-columns:repeat(2,1fr)}
  .foot-top{grid-template-columns:1fr 1fr}
  .nav-links,.utility .social{display:none}
  .nav-toggle{display:grid}
}
@media (max-width:600px){
  .prod-grid,.field-grid,.ref-grid,.promo .wrap,.field-grid-2{grid-template-columns:1fr}
  .stats .wrap{grid-template-columns:1fr 1fr}
  .utility ul.info{gap:.9rem;font-size:.72rem}
  .quality-visual{aspect-ratio:4/3}
}

/* Mobile-Navigationspanel */
.mobile-panel{position:fixed;inset:0;z-index:150;background:var(--ink);color:#fff;
  transform:translateX(100%);transition:transform .35s var(--ease);
  padding:1.5rem;overflow-y:auto;display:flex;flex-direction:column}
.mobile-panel.open{transform:translateX(0)}
.mobile-panel .mp-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem}
.mobile-panel nav a{display:block;padding:1rem 0;font-family:var(--font-display);font-weight:700;
  font-size:1.4rem;border-bottom:1px solid var(--line-dark);color:#fff}
.mobile-panel nav a:hover{color:var(--blue-bright)}
.mobile-panel .mp-cta{margin-top:auto;padding-top:2rem}
.mobile-panel .mp-cta .btn{width:100%;justify-content:center}
body.locked{overflow:hidden}

/* Reduced motion (WCAG 2.3.3 / Respekt) */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;
    transition-duration:.001ms !important;scroll-behavior:auto !important}
  .flow-stream{animation:none !important}
}

/* ============================================================
   Unterseiten
   ============================================================ */
.nav-links a[aria-current="page"]{color:var(--blue-deep);font-weight:600}
.page-hero{background:var(--ink);color:#fff;position:relative;overflow:hidden;isolation:isolate}
.page-hero .hero-flow{opacity:.4}
.page-hero .wrap{position:relative;z-index:2;padding-block:clamp(3rem,2rem + 4vw,5.5rem)}
.breadcrumb{font-family:var(--font-mono);font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;
  color:#8b95a1;display:flex;gap:.6rem;margin-bottom:1.2rem;flex-wrap:wrap}
.breadcrumb a:hover{color:#fff}
.breadcrumb span::before{content:"/";margin-right:.6rem;color:#4e5763}
.page-hero h1{font-size:clamp(2.2rem,1.7rem + 2.6vw,3.8rem);letter-spacing:-.03em;max-width:20ch}
.page-hero .lead{color:#c3cad3;max-width:56ch;font-size:var(--step-1);margin-top:1.1rem;line-height:1.45}

/* Bild-Slots: austauschbare Medienflächen */
.img-slot{position:relative}
.img-slot::after{content:"IMG · " attr(data-img-slot);position:absolute;bottom:.55rem;right:.55rem;
  font-family:var(--font-mono);font-size:.56rem;letter-spacing:.08em;color:#8b95a1;
  background:rgba(14,18,22,.75);padding:.22rem .5rem;border-radius:2px;text-transform:uppercase;pointer-events:none}
.img-slot > img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}

/* Zeitstrahl */
.timeline{border-left:2px solid var(--line);display:flex;flex-direction:column;gap:2.2rem;max-width:760px}
.tl-item{position:relative;padding-left:2rem}
.tl-item::before{content:"";position:absolute;left:-8px;top:.35rem;width:12px;height:12px;
  background:var(--bedek-blue);border-radius:50%;border:3px solid var(--paper)}
.tl-year{font-family:var(--font-mono);color:var(--blue-deep);font-weight:600;font-size:.85rem;letter-spacing:.12em}
.tl-item h3{font-size:var(--step-1);margin:.35rem 0 .45rem}
.tl-item p{color:var(--steel);margin:0;max-width:62ch}

/* Prozess-Schritte */
.process{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap);counter-reset:step}
.proc-step{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:1.6rem;counter-increment:step;transition:border-color .3s}
.proc-step:hover{border-color:var(--bedek-blue)}
.proc-step::before{content:"0" counter(step);font-family:var(--font-mono);color:var(--blue-deep);
  font-weight:600;font-size:.8rem;letter-spacing:.14em}
.proc-step h3{font-size:1.12rem;margin:.55rem 0 .5rem}
.proc-step p{color:var(--steel);font-size:.9rem;margin:0}

/* CTA-Band */
.cta-band{background:var(--bedek-blue);color:#fff}
.cta-band .wrap{display:flex;justify-content:space-between;align-items:center;gap:1.5rem;flex-wrap:wrap;
  padding-block:clamp(2.2rem,1.6rem + 2vw,3.4rem)}
.cta-band h2{font-size:var(--step-2);max-width:24ch}
.cta-band p{margin:.4rem 0 0;color:rgba(255,255,255,.85)}
.cta-band .btn{background:#fff;color:var(--blue-deep)}
.cta-band .btn:hover{background:var(--paper)}

/* Datentabelle */
.spec-table{width:100%;border-collapse:collapse;font-size:.94rem;background:var(--white);
  border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden}
.spec-table th,.spec-table td{text-align:left;padding:.85rem 1rem;border-bottom:1px solid var(--line)}
.spec-table tr:last-child td{border-bottom:none}
.spec-table th{font-family:var(--font-mono);font-size:.66rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--steel);background:var(--paper-2)}
.spec-table td:first-child{font-weight:600;width:34%}
.spec-table td .mono{font-family:var(--font-mono);color:var(--blue-deep)}

/* Karten-/Standortfläche */
.map-slot{aspect-ratio:16/7;border-radius:var(--radius-lg);border:1px solid var(--line);
  background:linear-gradient(150deg,#1c232b,#0c1014);display:grid;place-items:center;overflow:hidden}
.map-slot svg{width:44%;max-width:340px}

@media (max-width:960px){.process{grid-template-columns:1fr 1fr}}
@media (max-width:600px){
  .process{grid-template-columns:1fr}
  .cta-band .wrap{flex-direction:column;align-items:flex-start}
  .map-slot{aspect-ratio:4/3}
}

/* Gefüllte Bild-Slots & Live-Bilder */
.img-slot.has-img::after{display:none}
.img-slot > img{z-index:1}
.ref-visual.img-slot > .tag{z-index:2}
.brand-logo{height:40px;width:auto;display:block}
.brand-logo ~ .brand-mark, .brand-logo ~ .brand{display:none}
.media-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap)}
.media-strip-2{grid-template-columns:repeat(2,1fr)}
.media-strip .shot{position:relative;aspect-ratio:4/3;margin:0;border-radius:var(--radius-lg);
  overflow:hidden;border:1px solid var(--line);background:linear-gradient(150deg,#1c232b,#0c1014)}
@media (max-width:600px){.media-strip,.media-strip-2{grid-template-columns:1fr}}

/* Utility */
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}

/* Hero: freigestellte Hand mit AF-65 */
.hero-hand{position:relative;margin:0;display:flex;flex-direction:column;align-items:center;gap:1.1rem;isolation:isolate}
.hero-hand .hh-ring{position:absolute;top:44%;left:50%;width:114%;max-width:620px;aspect-ratio:1;transform:translate(-50%,-52%);z-index:0;border-radius:50%;border:2.5px dashed rgba(15,108,180,.9);animation:ringspin 40s linear infinite}
.hero-hand .hh-ring::before{content:"";position:absolute;inset:11.5%;border-radius:50%;border:1.5px solid rgba(78,87,99,.75)}
.hh-ring .dash{animation:dashmove 26s linear infinite}
.hero-hand img{position:relative;z-index:1;width:100%;height:auto;max-width:560px;filter:drop-shadow(0 36px 48px rgba(0,0,0,.55)) drop-shadow(0 6px 14px rgba(0,0,0,.4));animation:handfloat 7s ease-in-out infinite}
.hero-hand figcaption{position:relative;z-index:1;font-family:var(--font-mono);font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:#8b95a1;text-align:center}
.hero-hand figcaption b{color:#2e90de;font-weight:600}
@keyframes handfloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@keyframes dashmove{to{stroke-dashoffset:-200}}
@media (prefers-reduced-motion:reduce){.hero-hand img{animation:none !important}}
@media (max-width:960px){.hero-hand{max-width:520px;margin-inline:auto}}

@keyframes ringspin{from{transform:translate(-50%,-52%) rotate(0)}to{transform:translate(-50%,-52%) rotate(360deg)}}

/* ring rotation override (owner-requested, subtle) */
@media (prefers-reduced-motion:reduce){.hero-hand .hh-ring{animation-duration:40s !important;animation-iteration-count:infinite !important}}

/* nav align fix: keep dropdown caret on same line so all menu items align */
.has-menu>a{white-space:nowrap}

/* hero slider (2 banners, crossfade + dots) */
.hero-slider .hero-slides{display:grid}
.hero-slider .hero-slide{grid-area:1/1;opacity:0;visibility:hidden;transition:opacity .8s ease}
.hero-slider .hero-slide.is-active{opacity:1;visibility:visible}
.hero-dots{display:flex;gap:10px;justify-content:center;margin-top:28px;position:relative;z-index:3}
.hero-dot{width:11px;height:11px;padding:0;border:0;border-radius:50%;background:rgba(255,255,255,.28);cursor:pointer;transition:background .3s ease,width .3s ease}
.hero-dot:hover{background:rgba(255,255,255,.5)}
.hero-dot.is-active{background:#3b9edb;width:28px;border-radius:6px}
/* nav shop icon (CSS mask – robust gegen Contao-HTML-Filter) */
.nav-shop svg{display:none !important}
.nav-shop>a{display:inline-flex;align-items:center;justify-content:center;width:26px;height:100%}
.nav-shop>a::before{content:"";display:block;width:23px;height:23px;background-color:var(--blue-bright,#2e90de);-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") center / contain no-repeat;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") center / contain no-repeat}
.nav-shop>a:hover::before{background-color:var(--bedek-blue,#0f6cb4)}

/* nav no-wrap: Menüpunkte einzeilig halten (kein Umbruch von "Über uns") */
.nav-links ul.nav-links > li > a{white-space:nowrap}

/* hero slimmer: weniger Abstand ober-/unterhalb des schwarzen Bereichs */
.hero.hero-slider{padding-block:1.75rem}
.hero.hero-slider .wrap{padding-block:clamp(2.25rem, 1.75rem + 3vw, 5rem)}

/* figcaption größer & besser lesbar (unter Lüfter- und Gehäuse-Foto) */
.hero-hand figcaption{font-size:.9rem;letter-spacing:.1em;color:#d7dce2}
.hero-hand figcaption b{color:#4aa6ea}

/* figcaption sauber unter den drehenden Ring (Bildhöhe vereinheitlicht, gilt für beide Slides) */
.hero-slider .hero-hand{position:relative}
.hero-slider .hero-hand img{height:clamp(240px,34vw,360px);width:100%;max-width:520px;object-fit:contain}
.hero-slider .hero-hand .hh-ring{top:50%}
.hero-slider .hero-hand figcaption{position:absolute;top:100%;left:0;right:0;margin-top:clamp(80px,10.5vw,115px)}

/* Kontaktformular: Contao-Widgets stylen (waren unformatiert/verschoben) */
.form-card .widget{display:flex;flex-direction:column;gap:.4rem;margin-bottom:1.1rem}
.form-card .widget > label{font-size:.82rem;font-weight:600;color:var(--ink)}
.form-card .widget .mandatory{color:var(--bedek-blue)}
.form-card .widget input:not([type=checkbox]):not([type=radio]):not([type=hidden]),
.form-card .widget select,.form-card .widget textarea{
  font-family:inherit;font-size:.95rem;padding:.7rem .85rem;border:1px solid var(--line);
  border-radius:var(--radius);background:var(--paper);color:var(--ink);
  transition:border-color .2s,background .2s;min-height:46px;width:100%;max-width:100%}
.form-card .widget textarea{min-height:96px;resize:vertical}
.form-card .widget input:not([type=checkbox]):focus,.form-card .widget select:focus,.form-card .widget textarea:focus{
  border-color:var(--bedek-blue);background:#fff;outline:none;box-shadow:0 0 0 3px rgba(15,108,180,.12)}
.form-card .widget-checkbox fieldset{border:0;margin:0;padding:0;min-width:0}
.form-card .widget-checkbox fieldset > span,.form-card .widget-checkbox .checkbox{display:flex;align-items:flex-start;gap:.6rem}
.form-card .widget-checkbox input[type=checkbox]{width:20px;height:20px;min-height:auto;flex:none;accent-color:var(--bedek-blue);margin-top:.15rem}
.form-card .widget-checkbox label{font-size:.82rem;font-weight:400;color:var(--steel);line-height:1.4}
.form-card .widget-submit{margin-top:.4rem}
.form-card .widget-submit button{width:100%;justify-content:center;display:inline-flex;align-items:center;gap:.6rem;font-weight:600;font-size:var(--step-0);padding:.85rem 1.5rem;border-radius:var(--radius);min-height:48px;background:var(--bedek-blue);color:#fff;border:0;cursor:pointer;transition:background .25s var(--ease)}
.form-card .widget-submit button:hover{background:var(--blue-bright)}
/* Cookie-Banner (zentriert, mit Overlay) */
#bedek-hinweis-bg{position:fixed;inset:0;z-index:399;background:rgba(8,11,15,.55);opacity:0;transition:opacity .35s var(--ease);pointer-events:none}
#bedek-hinweis-bg.show{opacity:1;pointer-events:auto}
#bedek-hinweis{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%) scale(.96);z-index:400;width:min(92vw,460px);background:var(--ink);color:#fff;border:1px solid var(--line-dark);border-radius:var(--radius-lg);box-shadow:0 30px 80px -20px rgba(0,0,0,.7);padding:1.6rem;display:flex;flex-direction:column;gap:.9rem;font-size:.92rem;line-height:1.55;opacity:0;transition:opacity .35s var(--ease),transform .35s var(--ease)}
#bedek-hinweis.show{opacity:1;transform:translate(-50%,-50%) scale(1)}
#bedek-hinweis h3{font-size:1.15rem;font-weight:800;margin:0}
#bedek-hinweis p{margin:0;color:#c3cad3}
#bedek-hinweis a{color:var(--blue-bright);text-decoration:underline}
#bedek-hinweis .cb-actions{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:.3rem}
#bedek-hinweis button{font-weight:600;font-size:.9rem;padding:.7rem 1.15rem;border-radius:var(--radius);min-height:44px;cursor:pointer;border:0;flex:1 1 auto}
#bedek-hinweis .cb-accept{background:var(--bedek-blue);color:#fff}
#bedek-hinweis .cb-accept:hover{background:var(--blue-bright)}
#bedek-hinweis .cb-decline{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.3)}
#bedek-hinweis .cb-decline:hover{border-color:#fff;background:rgba(255,255,255,.06)}
@media(max-width:600px){#bedek-hinweis{width:min(94vw,420px);padding:1.35rem}}
/* wind gust: sanfter blauer Luftstrom/Nebel beim Laden */
#wind-gust{position:fixed;inset:0;z-index:350;pointer-events:none;overflow:hidden}
#wind-gust .gust{position:absolute;left:-45vw;border-radius:50%;opacity:0;will-change:transform,opacity;background:radial-gradient(closest-side, rgba(150,195,240,.38), rgba(200,220,245,.18) 50%, rgba(255,255,255,0) 75%);filter:blur(30px);animation:gustSweep var(--gdur,3s) cubic-bezier(.35,.15,.3,1) var(--gdel,0s) forwards}
@keyframes gustSweep{0%{transform:translate(0,0) scale(.85);opacity:0}20%{opacity:var(--o,.7)}55%{transform:translate(80vw,var(--arc,-50px)) scale(1.05)}72%{opacity:var(--o,.7)}100%{transform:translate(165vw,0) scale(1.2);opacity:0}}

/* Leere Bild-Platzhalter: schwarz statt grau, ohne Label */
.img-slot:not(.has-img){background:#000}
.img-slot:not(.has-img)::after{display:none}

/* Promo-Band: Seitenflaechen schwarz (statt grau) */
.promo, .promo .wrap, .promo-card, .promo-card:hover{background:#0d1116}

/* Footer-Marke: Beschreibungstext buendig unter dem Wort BEDEK */
.foot-brand p{margin-left:calc(11px + .5rem)}

/* ==== AF-65 Staerken – schwarze Kacheln auf weiss ==== */
#staerken{background:#fff;color:var(--ink);padding-block:clamp(3rem,2rem + 4vw,5.5rem)}
#staerken .sec-head h2{color:var(--ink)}
#staerken .sec-head .eyebrow{color:var(--bedek-blue)}
#staerken .field-grid{gap:clamp(1.1rem,.6rem + 1.6vw,1.75rem)}
#staerken .field-card{position:relative;overflow:hidden;isolation:isolate;background:linear-gradient(158deg,#1b232c 0%,#0c1013 100%);border:1px solid rgba(255,255,255,.08);border-radius:24px;padding:2.4rem 2.1rem 2.2rem;gap:.6rem;box-shadow:0 18px 40px -24px rgba(13,17,22,.9),inset 0 1px 0 rgba(255,255,255,.05);transition:transform .5s cubic-bezier(.2,.7,.2,1),box-shadow .5s,border-color .5s}
#staerken .field-card:hover{transform:translateY(-10px);border-color:rgba(74,166,238,.55);box-shadow:0 40px 70px -28px rgba(15,108,180,.85),inset 0 1px 0 rgba(255,255,255,.1)}
/* glow-blob in card corner */
#staerken .field-card > *{position:relative;z-index:1}
#staerken .field-card h3{font-size:var(--step-1);font-weight:800;letter-spacing:-.01em;color:#fff}
#staerken .field-card p{color:rgba(255,255,255,.72);font-size:.97rem;line-height:1.62}
/* ghost number */
#staerken .field-card::after{position:absolute;top:.5rem;right:1.3rem;font-family:var(--font-mono,monospace);font-size:5rem;font-weight:800;line-height:1;color:rgba(255,255,255,.055);z-index:0;letter-spacing:-.05em;transition:color .5s}
#staerken .field-card:hover::after{color:rgba(74,166,238,.2)}
#staerken .field-card:nth-child(1)::after{content:"01"}
#staerken .field-card:nth-child(2)::after{content:"02"}
#staerken .field-card:nth-child(3)::after{content:"03"}
#staerken .field-card:nth-child(4)::after{content:"04"}
/* icon chip – groesser mit Glow + Ring + Puls */
#staerken .field-card::before{content:"";display:block;position:relative;z-index:1;width:74px;height:74px;border-radius:20px;background-repeat:no-repeat;background-position:center;background-size:38px 38px,cover;background-image:var(--ic),linear-gradient(140deg,#1789e0,#0a5fa8);box-shadow:0 14px 30px -8px rgba(15,108,180,.85),inset 0 1px 0 rgba(255,255,255,.35);margin-bottom:1rem;animation:af-ico-pulse 3.2s ease-in-out infinite;transition:transform .5s,box-shadow .5s}
#staerken .field-card:hover::before{transform:translateY(-3px) scale(1.1) rotate(-4deg);box-shadow:0 22px 40px -8px rgba(37,150,230,1),inset 0 1px 0 rgba(255,255,255,.5)}
@keyframes af-ico-pulse{0%,100%{box-shadow:0 14px 30px -8px rgba(15,108,180,.55),inset 0 1px 0 rgba(255,255,255,.35)}50%{box-shadow:0 16px 40px -6px rgba(37,150,230,.95),inset 0 1px 0 rgba(255,255,255,.45)}}
#staerken .field-card:nth-child(1){--ic:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M2 8h12M2 16h8'/><path d='M13 4l7 8-7 8'/></svg>")}
#staerken .field-card:nth-child(2){--ic:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M4 9v6h4l5 4V5L8 9H4z'/><path d='M23 9l-6 6M17 9l6 6'/></svg>")}
#staerken .field-card:nth-child(3){--ic:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M4 21v-7M4 10V3M12 21v-9M12 8V3M20 21v-5M20 12V3'/><path d='M1 14h6M9 8h6M17 16h6'/></svg>")}
#staerken .field-card:nth-child(4){--ic:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3l7 4v5c0 5-3.5 8-7 9-3.5-1-7-4-7-9V7z'/><path d='M9 12l2 2 4-4'/></svg>")}
@media (prefers-reduced-motion:reduce){#staerken .field-card::before{animation:none}}

/* ==== AF-65 Einsatzgebiete – Bild-Zuschnitte & runde Ecken ==== */
#anwendungen .ref-card{border-radius:18px;overflow:hidden;box-shadow:0 14px 34px -22px rgba(13,17,22,.6);transition:transform .45s cubic-bezier(.2,.7,.2,1),box-shadow .45s}
#anwendungen .ref-card:hover{transform:translateY(-6px);box-shadow:0 30px 55px -26px rgba(13,17,22,.75)}
#anwendungen .ref-visual{overflow:hidden;background:#0d1116}
#anwendungen .ref-visual img{transition:transform .55s cubic-bezier(.2,.7,.2,1);will-change:transform}
#anwendungen .ref-card:nth-child(1) .ref-visual img{transform:scale(1.9);transform-origin:32% 26%}
#anwendungen .ref-card:nth-child(2) .ref-visual img{transform:scale(1.9);transform-origin:24% 26%}
#anwendungen .ref-card:nth-child(3) .ref-visual img{transform:scale(1.95);transform-origin:22% 22%}
#anwendungen .ref-card:nth-child(4) .ref-visual img{transform:scale(2.9);transform-origin:8% 30%}
#anwendungen .ref-card:nth-child(1):hover .ref-visual img{transform:scale(2);transform-origin:32% 26%}
#anwendungen .ref-card:nth-child(2):hover .ref-visual img{transform:scale(2);transform-origin:24% 26%}
#anwendungen .ref-card:nth-child(3):hover .ref-visual img{transform:scale(2.05);transform-origin:22% 22%}
#anwendungen .ref-card:nth-child(4):hover .ref-visual img{transform:scale(3.02);transform-origin:8% 30%}
/* ==== Utility-Leiste buendig mit Logo ==== */
.utility .info li svg{display:none}
.utility .info{margin-left:0}

/* ==== Logo-Innenrand ausgleichen (SVG hat ~30px transparent links) ==== */
.brand .brand-logo{margin-left:-30px}
@media(max-width:600px){.brand .brand-logo{margin-left:-24px}}

/* ==== Startseite Geschaeftsbereiche: Absatz schmaler + Icon-Chips ==== */
#bereiche .sec-head p{max-width:34rem}
#bereiche .field-ico svg{display:none}
#bereiche .field-ico{width:58px;height:58px;border-radius:16px;background-color:transparent;background-repeat:no-repeat,no-repeat;background-position:center,center;background-size:30px 30px,cover;background-image:var(--ic),linear-gradient(140deg,#1789e0,#0a5fa8);box-shadow:0 12px 26px -8px rgba(15,108,180,.75)}
#bereiche .field-card:nth-child(1) .field-ico{--ic:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='2.2'/><path d='M12 9.8c0-4 1-6 3.8-6 0 2.8-1 4.8-3.8 6M14.2 12c4 0 6 1 6 3.8-2.8 0-4.8-1-6-3.8M12 14.2c0 4-1 6-3.8 6 0-2.8 1-4.8 3.8-6M9.8 12c-4 0-6-1-6-3.8 2.8 0 4.8 1 6 3.8'/></svg>")}
#bereiche .field-card:nth-child(2) .field-ico{--ic:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3l8 4.5v9L12 21l-8-4.5v-9Z'/><path d='M4 7.5l8 4.5 8-4.5M12 12v9'/></svg>")}
#bereiche .field-card:nth-child(3) .field-ico{--ic:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M3 21h4l12-12a1.5 1.5 0 0 0-4-4L3 17v4'/><path d='M14 6l4 4'/><path d='M13 8l-4-4-5 5 4 4'/><path d='M16 11l5 5-5 5-5-5'/></svg>")}

/* ==== field-ico rechts oben in die Ecke ==== */
#bereiche .field-ico{align-self:flex-end;margin-bottom:.4rem}

/* ==== Best-Quality-Bild voll lesbar (Ausschnitt anpassen, defektes Siegel aus) ==== */
#unternehmen .quality-visual{aspect-ratio:16/9}
#unternehmen .quality-visual img{object-fit:cover;object-position:center}
#unternehmen .cert-seal{display:none}
/* ==== Gehaeuse-Slider 2 Bilder im Kreis, 3D ==== */
.hero-hand .hh-gallery{position:relative;display:block;width:min(400px,72vw);max-width:100%;margin-inline:auto;aspect-ratio:496/360;perspective:1400px}
.hero-hand .hh-gallery .hh-slide{position:absolute;inset:-2%;width:104%;height:104%;object-fit:contain;object-position:center;opacity:0;backface-visibility:hidden;animation:hhSpin 9s cubic-bezier(.6,.05,.25,1) infinite;filter:drop-shadow(0 16px 30px rgba(0,0,0,.6))}
.hero-hand .hh-gallery .hh-slide:nth-child(1){animation-delay:0s}
.hero-hand .hh-gallery .hh-slide:nth-child(2){animation-delay:4.5s}
.hero-hand .hh-gallery .hh-slide:nth-child(3){animation-delay:6s}
@keyframes hhSpin{0%{opacity:0;transform:rotateY(80deg) scale(.85)}8%{opacity:1;transform:rotateY(0deg) scale(1)}42%{opacity:1;transform:rotateY(0deg) scale(1)}50%{opacity:0;transform:rotateY(-80deg) scale(.85)}100%{opacity:0;transform:rotateY(-80deg) scale(.85)}}
@media(prefers-reduced-motion:reduce){.hero-hand .hh-gallery .hero-hand .hh-gallery }

/* ==== Mobile-Feinschliff ==== */
@media(max-width:640px){
  .nav-actions .btn-primary{display:none}
  .hero-slides .hero-slide:not(.is-active){opacity:0!important;visibility:hidden}
  .hero-slides .hero-slide.is-active{visibility:visible}
}

/* Gehaeuse-Slider: Caption unter den Ring */
.hero-hand:has(.hh-gallery) figcaption{margin-top:clamp(130px,14vw,150px)}

/* Gehaeuse-Slider: nur ein Bild -> statisch & groesser (wie Luefter) */
.hero-hand .hh-gallery .hh-slide:only-child{animation:none;opacity:1;transform:none;inset:-16%;width:132%;height:132%}

/* Hero-Slider: Pfeile bei den Punkten */
.hero-slider .hero-dots{display:flex;align-items:center;justify-content:center;gap:14px}
.hero-slider .hero-arrow{position:static;width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,.28);background:rgba(13,27,42,.55);cursor:pointer;display:inline-flex;align-items:center;justify-content:center;padding:0;transition:background .2s,border-color .2s}
.hero-slider .hero-arrow:hover{background:rgba(15,108,180,.9);border-color:transparent}
.hero-slider .hero-arrow::before{content:"";display:block;width:9px;height:9px;border-right:2px solid #fff;border-bottom:2px solid #fff}
.hero-slider .hero-prev::before{transform:rotate(135deg);margin-left:3px}
.hero-slider .hero-next::before{transform:rotate(-45deg);margin-right:3px}

/* Einsatzgebiete: Bildkacheln */
.ref-card .ref-visual{position:relative;aspect-ratio:16/10;overflow:hidden;background:#0f1720}
.ref-card .ref-visual img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
/* Warum radial: Icon-Chips */
.rk-card{position:relative}
.rk-ico{display:block;width:46px;height:46px;border-radius:13px;background:linear-gradient(135deg,#2e90de,#0f5fa3);margin-bottom:.9rem;box-shadow:0 8px 18px rgba(15,108,180,.28)}
.rk-ico::before{content:"";display:block;width:100%;height:100%;background:center/24px no-repeat}
.rk-druck::before{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PHBhdGggZD0iTTQgMThhOCA4IDAgMSAxIDE2IDAiLz48bGluZSB4MT0iMTIiIHkxPSIxOCIgeDI9IjE1LjUiIHkyPSIxMy41Ii8+PGNpcmNsZSBjeD0iMTIiIGN5PSIxOCIgcj0iMS4yIiBmaWxsPSIjZmZmIiBzdHJva2U9Im5vbmUiLz48L3N2Zz4=")}
.rk-kompakt::before{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PHBvbHlsaW5lIHBvaW50cz0iNCAxNCAxMCAxNCAxMCAyMCIvPjxwb2x5bGluZSBwb2ludHM9IjIwIDEwIDE0IDEwIDE0IDQiLz48bGluZSB4MT0iMTQiIHkxPSIxMCIgeDI9IjIxIiB5Mj0iMyIvPjxsaW5lIHgxPSIzIiB5MT0iMjEiIHgyPSIxMCIgeTI9IjE0Ii8+PC9zdmc+")}
.rk-effizient::before{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PHBvbHlnb24gcG9pbnRzPSIxMyAyIDMgMTQgMTIgMTQgMTEgMjIgMjEgMTAgMTIgMTAgMTMgMiIvPjwvc3ZnPg==")}
.rk-leise::before{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PHBvbHlnb24gcG9pbnRzPSIxMSA1IDYgOSAyIDkgMiAxNSA2IDE1IDExIDE5IDExIDUiLz48cGF0aCBkPSJNMTUuNTQgOC40NmE1IDUgMCAwIDEgMCA3LjA3Ii8+PC9zdmc+")}
/* Bauform-Skizzen */
.rk-bauform{position:relative}
.rk-sketch{align-self:flex-end;width:116px;height:auto;margin:0 0 .3rem 0}
.rk-bauform h3{margin-top:0}
@media(max-width:520px){.rk-sketch{width:84px}}

/* Hero-Slider: Kreise gleiche Hoehe + Bilder im Kreis */
.hero-slides .hero-hand{height:360px;justify-content:center;align-self:start;margin-top:72px}
.hero-slides .hero-hand > img{width:78%;height:auto;margin-inline:auto}


/* Hero-Bilder: weicher Rand (Haende faden aus) */
.hero-slides .hero-hand > img, .hero-slides .hh-gallery .hh-slide{-webkit-mask-image:radial-gradient(ellipse 62% 62% at 50% 50%, #000 60%, rgba(0,0,0,0) 92%);mask-image:radial-gradient(ellipse 62% 62% at 50% 50%, #000 60%, rgba(0,0,0,0) 92%)}

/* Blauer Button: Schrift mittig (Platzhalter balanciert den Pfeil) */
.hero-cta .btn-primary::before{content:"";width:16px;flex:0 0 auto}
