/* ============================================================
   BreiterONE Hugo Theme – Shared Stylesheet
   Font: DM Sans (300/500/600/700) – lokal, DSGVO-konform
   ============================================================ */

@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dmsans-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: optional;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dmsans-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: optional;
}

/* ── TOKENS ── */
:root {
  --green:       #71B739;
  --green-dk:    #4A8F27;
  --green-lt:    #A8E063;
  --green-bg:    rgba(113,183,57,.10);
  --green-bd:    rgba(113,183,57,.28);
  --grey:        #555;
  --grey-md:     #6b6b6b;
  --grey-lt:     #767676;
  --text:        #1E1E1E;
  --bg:          #F5F5F5;
  --white:       #fff;
  --dark:        #2B2B2B;
  --border:      rgba(0,0,0,.09);
  --nav-h:       68px;
  --r:           12px;
  --r-lg:        20px;
  --sh:          0 2px 12px rgba(0,0,0,.07);
  --sh-lg:       0 8px 40px rgba(0,0,0,.10);
  --t:           .22s ease;
}

/* ── RESET ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family:'DM Sans',system-ui,sans-serif;
  font-size:16px; line-height:1.7;
  color:var(--text); background:var(--bg);
  -webkit-font-smoothing:antialiased;
  display:flex; flex-direction:column; min-height:100vh;
}
#footer { margin-top:auto; }
img  { max-width:100%; display:block; }
a    { color:inherit; text-decoration:none; }
button { cursor:pointer; }
a.card, a.card * { text-decoration:none; color:inherit; }

/* ── LAYOUT ── */
.wrap   { max-width:1140px; margin:0 auto; padding:0 28px; }
section { padding:80px 0; }
.g2     { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.g2-2   { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.g3     { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.g4     { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.g5     { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.sec-hd { text-align:center; margin-bottom:48px; }
.sec-hd p { max-width:56ch; margin:0 auto; color:var(--grey); }

/* ── TYPOGRAPHY ── */
h1 { font-family:'DM Sans',sans-serif; font-size:clamp(2rem,5vw,3rem); font-weight:700; line-height:1.15; letter-spacing:-.02em; }
h2 { font-family:'DM Sans',sans-serif; font-size:clamp(1.5rem,3vw,2rem); font-weight:700; line-height:1.25; letter-spacing:-.015em; }
h3 { font-family:'DM Sans',sans-serif; font-size:1.18rem; font-weight:600; line-height:1.35; }
h4 { font-family:'DM Sans',sans-serif; font-size:1rem; font-weight:600; line-height:1.4; }
p  { color:var(--grey); font-weight:300; }
em.g { font-style:normal; color:var(--green); }

/* ── EYEBROW ── */
.eyebrow {
  display:block; font-family:'DM Sans',sans-serif; font-size:.72rem;
  font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--green-dk); margin-bottom:10px;
}

/* ── TAG ── */
.tag {
  display:inline-flex; align-items:center; gap:7px;
  font-family:'DM Sans',sans-serif; font-size:.72rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  background:var(--green-bg); color:var(--green-dk);
  border:1px solid var(--green-bd); border-radius:999px;
  padding:5px 14px; margin-bottom:18px;
}
.tag-dot { width:6px; height:6px; border-radius:50%; background:var(--green); flex-shrink:0; }

/* ── BUTTONS ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'DM Sans',sans-serif; font-size:.85rem; font-weight:600;
  border-radius:999px; padding:13px 28px; border:2px solid transparent;
  text-decoration:none; transition:var(--t); white-space:nowrap; cursor:pointer;
}
.btn svg { width:15px; height:15px; stroke:currentColor; fill:none; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
.btn-primary       { background:#71B739; color:#fff; }
.btn-primary:hover { background:var(--green-dk); transform:translateY(-1px); box-shadow:0 4px 14px rgba(113,183,57,.35); }
.btn-outline       { background:transparent; color:var(--text); border-color:rgba(0,0,0,.18); }
.btn-outline:hover { border-color:var(--green); color:var(--green-dk); }
.btn-dark          { background:var(--dark); color:#fff; }
.btn-dark:hover    { background:#1a1a1a; }
.btn-sm { padding:8px 18px; font-size:.78rem; }
.cta-btns { display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-top:28px; }

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(255,255,255,.92); backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color var(--t), box-shadow var(--t);
  height:var(--nav-h);
}
nav.scrolled { border-bottom-color:var(--border); box-shadow:var(--sh); }
.nav-inner {
  max-width:1200px; margin:0 auto; padding:0 28px;
  height:100%; display:flex; align-items:center; gap:32px;
}
.nav-logo { display:flex; align-items:center; text-decoration:none; margin-right:8px; flex-shrink:0; }
.nav-logo-img { height:32px; width:auto; display:block; }
.nav-links { display:flex; align-items:center; gap:4px; flex:1; }
.nav-link {
  font-family:'DM Sans',sans-serif; font-size:.84rem; font-weight:500;
  color:var(--grey); padding:8px 14px; border-radius:8px; cursor:pointer;
  transition:color var(--t), background var(--t);
  display:flex; align-items:center; gap:5px;
  text-decoration:none; user-select:none;
}
.nav-link:hover { color:var(--text); background:var(--bg); }
.nav-link.active { color:var(--green-dk); }
.nav-right { display:flex; align-items:center; gap:14px; margin-left:auto; flex-shrink:0; }
.nav-phone { font-size:.82rem; font-weight:500; color:var(--grey); display:flex; align-items:center; gap:7px; }
.nav-phone svg { width:14px; height:14px; stroke:var(--green-dk); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

/* ── DROPDOWN ── */
.nav-dd { position:relative; }
.nav-dd-arrow {
  width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:2.2;
  stroke-linecap:round; stroke-linejoin:round; transition:transform var(--t);
}
.nav-dd.open .nav-dd-arrow { transform:rotate(180deg); }
.nav-dd-menu {
  display:none; position:absolute; top:calc(100% + 10px); left:50%;
  transform:translateX(-50%); min-width:280px; background:#fff;
  border-radius:16px; box-shadow:0 12px 48px rgba(0,0,0,.14);
  border:1px solid var(--border); padding:8px; z-index:200;
}
.nav-dd-menu.open { display:block; }
.dd-item {
  display:flex; align-items:center; gap:13px; padding:10px 12px;
  border-radius:10px; text-decoration:none; color:inherit;
  transition:background var(--t);
}
.dd-item:hover { background:var(--bg); }
.dd-ico {
  width:36px; height:36px; border-radius:9px; background:var(--green-bg);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.dd-ico svg { width:18px; height:18px; stroke:var(--green-dk); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.dd-lbl { font-family:'DM Sans',sans-serif; font-size:.84rem; font-weight:600; color:var(--text); }
.dd-sub { font-size:.75rem; color:var(--grey-lt); margin-top:1px; }

/* ── HAMBURGER ── */
.hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; padding:6px;
}
.hamburger span {
  display:block; width:22px; height:2px; background:var(--text);
  border-radius:2px; transition:var(--t);
}
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display:none; position:fixed; top:var(--nav-h); left:0; right:0; bottom:0;
  background:#fff; z-index:99; padding:16px; overflow-y:auto;
  flex-direction:column; gap:4px;
}
.mobile-menu.open { display:flex; }
.mm-link,.mm-sub {
  font-size:.95rem; font-weight:500; padding:12px 14px; border-radius:10px;
  color:var(--grey); text-decoration:none; transition:background var(--t);
}
.mm-sub { padding-left:24px; font-size:.88rem; }
.mm-link.active,.mm-sub.active { color:var(--green-dk); background:var(--green-bg); }
.mm-div { height:1px; background:var(--border); margin:8px 0; }

/* ── HERO ── */
.hero {
  padding-top:calc(var(--nav-h) + 64px); padding-bottom:80px;
  position:relative; overflow:hidden;
}
.hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.hero-card {
  background:#fff; border-radius:20px; padding:28px;
  box-shadow:var(--sh-lg); border:1px solid var(--border);
}

/* ── HERO INDEX ── */
.hero-index {
  display:flex; align-items:center; padding-top:var(--nav-h);
  position:relative; overflow:hidden;
  background:linear-gradient(155deg,#eef7e4 0%,#f5f5f5 55%);
}
.hero-split {
  display:grid; grid-template-columns:1.1fr 1fr; gap:64px;
  align-items:center; width:100%; padding:64px 0;
}
.hero-tag {
  display:inline-flex; align-items:center; gap:7px;
  font-family:'DM Sans',sans-serif; font-size:.7rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  background:var(--green-bg); color:var(--green-dk);
  border:1px solid var(--green-bd); border-radius:999px;
  padding:5px 14px; margin-bottom:20px;
}
.hero-h1 {
  font-family:'DM Sans',sans-serif; font-size:clamp(2.6rem,5vw,3.6rem);
  font-weight:700; line-height:1.1; letter-spacing:-.025em; margin-bottom:22px;
}
.hero-h1 .g { color:var(--green); display:block; min-height:1.1em; }
.hero-p {
  font-size:1.05rem; color:var(--grey); font-weight:300;
  max-width:44ch; line-height:1.75; margin-bottom:32px;
}
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:40px; }
.hero-trust { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.htrust-item { display:flex; align-items:center; gap:7px; font-size:.82rem; color:var(--grey-md); }
.htrust-item svg { width:14px; height:14px; stroke:var(--green-dk); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }

/* IT Preview Card */
.it-preview {
  background:#fff; border-radius:20px; box-shadow:0 20px 60px rgba(0,0,0,.1);
  border:1px solid var(--border); overflow:hidden;
}
.it-preview-img { height:220px; overflow:hidden; position:relative; }
.it-preview-img img { width:100%; height:100%; object-fit:cover; }
.it-preview-img-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(43,43,43,.5),transparent 50%);
}
.it-preview-body { padding:20px; }
.it-preview-status { display:flex; flex-direction:column; gap:8px; }
.status-row { display:flex; align-items:center; gap:10px; padding:9px 12px; border-radius:9px; background:var(--bg); }
.status-dot { width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.status-dot.green { background:var(--green); animation:pulse 2s infinite; }
.status-dot.grey  { background:var(--grey-lt); }
.status-label { font-size:.85rem; font-weight:500; flex:1; }
.status-badge { font-family:'DM Sans',sans-serif; font-size:.66rem; font-weight:600; padding:3px 9px; border-radius:999px; }
.status-badge.ok  { background:var(--green-bg); color:#4A8F27; }
.status-badge.pl  { background:var(--bg); color:var(--grey); }

/* Supporting grid */
.supp-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-top:16px; }
.supp-item {
  display:flex; align-items:center; gap:10px; padding:11px 14px;
  border-radius:10px; background:var(--bg); border:1px solid var(--border);
  text-decoration:none; color:inherit;
  transition:border-color var(--t), background var(--t), transform var(--t);
  font-size:.82rem; font-weight:500;
}
.supp-item:hover { border-color:var(--green-bd); background:var(--green-bg); transform:translateY(-2px); }
.supp-item svg { width:15px; height:15px; stroke:var(--green-dk); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }

/* Zahlen Grid */
.zahlen-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:2px; border-radius:var(--r-lg); overflow:hidden; background:var(--border);
}
.zahl-box { background:#fff; padding:30px 20px; text-align:center; }
.zahl-num { font-family:'DM Sans',sans-serif; font-size:2.4rem; font-weight:700; color:var(--green); line-height:1; margin-bottom:7px; }
.zahl-lbl { font-family:'DM Sans',sans-serif; font-size:.8rem; font-weight:600; color:var(--text); }
.zahl-sub { font-size:.72rem; color:var(--grey-lt); margin-top:3px; }

/* Image split */
.img-split { display:grid; grid-template-columns:1fr 1fr; gap:12px; height:420px; }
.img-split-a { border-radius:var(--r-lg); overflow:hidden; }
.img-split-b { display:grid; grid-template-rows:1fr 1fr; gap:12px; }
.img-split-b > div { border-radius:var(--r); overflow:hidden; }
.img-split img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.img-split a:hover img, .img-split div:hover img { transform:scale(1.04); }

/* ── DOT GRID ── */
.dot-grid {
  position:absolute; inset:0;
  background-image:radial-gradient(circle,rgba(113,183,57,.12) 1px,transparent 1px);
  background-size:28px 28px; pointer-events:none; z-index:0;
}
.glow {
  position:absolute; border-radius:50%;
  background:radial-gradient(circle,rgba(113,183,57,.22),transparent 70%);
  pointer-events:none; z-index:0;
}

/* ── TRUST BAR ── */
.trust-bar { background:#fff; border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:18px 0; }
.trust-row { display:flex; align-items:center; gap:16px; flex-wrap:wrap; justify-content:center; }
.trust-item { display:flex; align-items:center; gap:8px; font-size:.82rem; font-weight:500; color:var(--grey); white-space:nowrap; }
.trust-ico { width:32px; height:32px; border-radius:8px; background:var(--green-bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.trust-ico svg { width:16px; height:16px; stroke:var(--green-dk); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.trust-sep { width:1px; height:24px; background:var(--border); flex-shrink:0; }

/* ── CARDS ── */
.card {
  background:var(--white); border-radius:var(--r); border:1px solid var(--border);
  transition:transform var(--t), box-shadow var(--t);
}
.card:hover { transform:translateY(-3px); box-shadow:var(--sh-lg); }
.card-p { padding:28px; }
.card-ico {
  width:48px; height:48px; border-radius:12px; background:var(--green-bg);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.card-ico svg { width:24px; height:24px; stroke:var(--green-dk); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.card-accent { border-top:3px solid var(--green); }
.svc-lnk {
  display:inline-flex; align-items:center; gap:6px;
  font-family:'DM Sans',sans-serif; font-size:.78rem; font-weight:600;
  color:var(--green-dk); margin-top:14px; transition:gap var(--t);
}
.svc-lnk svg { width:12px; height:12px; stroke:currentColor; fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
.card:hover .svc-lnk { gap:10px; }

/* ── TESTIMONIALS ── */
.testi { background:var(--white); border-radius:var(--r); border:1px solid var(--border); padding:28px; }
.testi-q { font-size:.95rem; font-style:italic; color:var(--grey); line-height:1.7; margin-bottom:20px; font-weight:300; }
.testi-row { display:flex; align-items:center; gap:12px; }
.testi-av {
  width:40px; height:40px; border-radius:50%; background:var(--green-bg);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.testi-av svg { width:20px; height:20px; stroke:var(--green-dk); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.testi-name { font-family:'DM Sans',sans-serif; font-size:.84rem; font-weight:600; }
.testi-role { font-size:.75rem; color:var(--grey-lt); }

/* ── CHECKROW ── */
.chk-row { display:flex; align-items:flex-start; gap:12px; }
.chk-ico {
  width:22px; height:22px; border-radius:6px; background:var(--green-bg);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px;
}
.chk-ico svg { width:12px; height:12px; stroke:var(--green-dk); fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }

/* ── CTA ── */
.cta {
  background:linear-gradient(135deg,#1a2e0e 0%,var(--dark) 100%);
  padding:88px 0; text-align:center; position:relative; overflow:hidden;
}
.cta h2 { color:#fff; margin-bottom:14px; }
.cta p  { color:rgba(255,255,255,.85); max-width:48ch; margin:0 auto; }

/* ── BLOG ── */
.blog-thumb {
  height:170px; display:flex; align-items:center; justify-content:center;
  position:relative; border-radius:var(--r) var(--r) 0 0; overflow:hidden;
}
.blog-cat {
  position:absolute; top:12px; left:12px;
  font-family:'DM Sans',sans-serif; font-size:.68rem; font-weight:600;
  padding:3px 10px; border-radius:999px; background:var(--green); color:#fff;
}
.blog-read {
  display:inline-flex; align-items:center; gap:5px; margin-top:12px;
  font-family:'DM Sans',sans-serif; font-size:.78rem; font-weight:600;
  color:var(--green-dk); transition:gap var(--t);
}
.blog-read svg { width:12px; height:12px; stroke:currentColor; fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
.card:hover .blog-read { gap:9px; }
.blog-body { padding:22px; }
.blog-date { font-size:.75rem; color:var(--grey-lt); font-weight:300; margin-bottom:7px; }

/* ── BLOG PROSE ── */
.blog-prose h2 { font-size:clamp(1.15rem,2.5vw,1.4rem); margin:36px 0 12px; color:var(--text); }
.blog-prose h3 { font-size:1.05rem; margin:28px 0 10px; color:var(--text); }
.blog-prose p  { margin:0 0 18px; color:var(--grey); font-weight:300; line-height:1.85; }
.blog-prose ul,
.blog-prose ol  { margin:0 0 20px 0; padding-left:0; list-style:none; }
.blog-prose ul li { position:relative; padding-left:22px; margin-bottom:10px; color:var(--grey); font-weight:300; line-height:1.75; }
.blog-prose ul li::before { content:''; position:absolute; left:0; top:10px; width:7px; height:7px; border-radius:50%; background:var(--green); }
.blog-prose ol { counter-reset:ol-counter; }
.blog-prose ol li { position:relative; padding-left:32px; margin-bottom:10px; color:var(--grey); font-weight:300; line-height:1.75; counter-increment:ol-counter; }
.blog-prose ol li::before { content:counter(ol-counter); position:absolute; left:0; top:1px; width:22px; height:22px; border-radius:50%; background:var(--green); color:#fff; font-size:.72rem; font-weight:700; display:flex; align-items:center; justify-content:center; font-family:'DM Sans',sans-serif; }
.blog-prose strong { font-weight:600; color:var(--text); }

/* ── CONTACT ── */
.contact-g { display:grid; grid-template-columns:1fr 1.4fr; gap:64px; align-items:start; }
.cd-item { display:flex; align-items:center; gap:14px; padding:14px 0; border-bottom:1px solid var(--border); }
.cd-item:last-child { border-bottom:none; }
.cd-ico { width:38px; height:38px; border-radius:10px; background:var(--green-bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cd-ico svg { width:18px; height:18px; stroke:var(--green-dk); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.cd-lbl { font-size:.75rem; color:var(--grey-lt); font-weight:400; margin-bottom:2px; }
.cd-val { font-size:.92rem; font-weight:500; color:var(--text); }

/* ── FORM FIELDS ── */
.fgrp { display:flex; flex-direction:column; gap:5px; margin-bottom:14px; }
.fgrp label { font-size:.78rem; font-weight:600; color:var(--text); }
.fgrp input,.fgrp select,.fgrp textarea {
  font-family:'DM Sans',sans-serif; font-size:.92rem; color:var(--text);
  background:var(--bg); border:1.5px solid var(--border);
  border-radius:9px; padding:10px 14px; width:100%; outline:none;
  transition:border-color var(--t);
}
.fgrp input:focus,.fgrp select:focus,.fgrp textarea:focus { border-color:var(--green); }
.fgrp textarea { resize:vertical; min-height:96px; }
.frow { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

/* ── FOOTER ── */
#footer { background:var(--dark); padding:64px 0 28px; }
.ft-logo-img { display:block; margin-bottom:12px; }
.ft-grid {
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;
  padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.08);
}

/* Regionen-Zeile im Footer */
.ft-regions {
  padding:24px 0 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  margin-bottom:0;
}
.ft-regions-list {
  display:flex; flex-wrap:wrap; gap:6px 0; margin-top:10px;
}
.ft-regions-list .ft-link {
  font-size:.82rem; opacity:.65;
  padding-right:16px; position:relative;
}
.ft-regions-list .ft-link:not(:last-child)::after {
  content:'·'; position:absolute; right:6px;
  color:rgba(255,255,255,.25);
}
.ft-regions-list .ft-link:hover { opacity:1; }

.ft-col-ttl {
  display:block; font-family:'DM Sans',sans-serif; font-size:.72rem;
  font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(255,255,255,.55); margin-bottom:14px;
}
.ft-link {
  display:block; font-size:.86rem; color:rgba(255,255,255,.75);
  text-decoration:none; margin-bottom:8px; transition:color var(--t); font-weight:300;
}
.ft-link:hover { color:#fff; }
.ft-ext { display:inline-flex; align-items:center; gap:5px; }
.ft-ext svg { width:11px; height:11px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.ft-bottom {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:24px; flex-wrap:wrap; gap:12px;
}
.ft-copy { font-size:.78rem; color:rgba(255,255,255,.55); }
.ft-legal { display:flex; gap:20px; }
.ft-legal a {
  font-size:.78rem; color:rgba(255,255,255,.55);
  text-decoration:none; transition:color var(--t);
}
.ft-legal a:hover { color:rgba(255,255,255,.7); }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity:1; transform:translateY(0); }
.d1 { transition-delay:.05s; } .d2 { transition-delay:.12s; }
.d3 { transition-delay:.19s; } .d4 { transition-delay:.26s; }
.d5 { transition-delay:.33s; }

/* ── ANIMATIONS ── */
@keyframes pulse    { 0%,100%{opacity:1;} 50%{opacity:.4;} }
@keyframes floatGlow{ 0%,100%{transform:translateY(0) scale(1);} 50%{transform:translateY(-12px) scale(1.04);} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }
@keyframes blink    { 0%,100%{opacity:1;} 50%{opacity:0;} }

.glow { animation:floatGlow 7s ease-in-out infinite; }
.pulse-dot { display:inline-block; width:8px; height:8px; border-radius:50%; background:var(--green); animation:pulse 2s infinite; }
.typing-cursor { display:inline !important; color:var(--green); font-weight:300; animation:blink .8s step-end infinite; vertical-align:baseline; }

/* Staggered hero entrance */
.hero-index .reveal { animation:fadeUp .7s ease both; }
.hero-index .reveal.d1 { animation-delay:.1s; }
.hero-index .reveal.d2 { animation-delay:.25s; }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .hero-split { grid-template-columns:1fr; gap:40px; padding:40px 0; }
  .zahlen-grid { grid-template-columns:1fr 1fr; }
  .img-split { height:320px; }
  .ft-grid { grid-template-columns:1fr 1fr; }
  .g4 { grid-template-columns:1fr 1fr; }
  .g5 { grid-template-columns:repeat(3,1fr); }
}
@media(max-width:768px){
  .g5 { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px){
  .nav-links,.nav-phone { display:none !important; }
  .hamburger { display:flex !important; }
  .g2  { grid-template-columns:1fr; gap:36px; }
  .g3  { grid-template-columns:1fr; }
  .contact-g { grid-template-columns:1fr; }
  .frow { grid-template-columns:1fr; }

  /* Hero: Card kommt unter den Text */
  .hero-grid {
    grid-template-columns:1fr;
    gap:32px;
  }
  .hero-card {
    display:block !important; /* war auf Startseite ausgeblendet */
  }

  /* Hero-Index: gleich */
  .hero-split {
    grid-template-columns:1fr;
    gap:32px;
    padding:40px 0;
  }

  /* Supp-Grid auf Mobile 1 Spalte */
  .supp-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:640px){
  .supp-grid { grid-template-columns:1fr; }
  .zahlen-grid { grid-template-columns:1fr 1fr; }
  .img-split { grid-template-columns:1fr; height:auto; }
  .img-split-a { height:240px; }
  .img-split-b { grid-template-columns:1fr 1fr; grid-template-rows:none; height:160px; }
}
@media(max-width:580px){
  .g4  { grid-template-columns:1fr 1fr; }
  .ft-grid { grid-template-columns:1fr 1fr; }
  .trust-sep { display:none; }
  .g3 { grid-template-columns:1fr; }
}
@media(max-width:400px){
  .wrap { padding:0 16px; }
  .ft-grid { grid-template-columns:1fr; }
}

/* ── STEPS ── */
.steps-wrap { position:relative; }
.steps-line {
  position:absolute; top:40px; left:calc(10% + 13px); right:calc(10% + 13px);
  height:2px; background:var(--green-bd); z-index:0; overflow:hidden;
}
.steps-line-fill {
  position:absolute; top:0; left:0; height:100%; width:0%;
  background:var(--green); transition:width .8s ease;
}
.steps-line-fill.animated { width:100%; }
.step-card {
  background:var(--white); border-radius:var(--r); border:1px solid var(--border);
  padding:26px; position:relative; z-index:1;
}
.step-num { font-family:'DM Sans',sans-serif; font-size:1.6rem; font-weight:700; color:var(--green); line-height:1; margin-bottom:12px; }

/* ── FALLSTUDIE ── */
.case-hero { background:linear-gradient(160deg,#EEF8E3 0%,var(--bg) 55%); }
.case-stat {
  text-align:center; padding:32px 20px; background:var(--white);
  border-radius:var(--r); border:1px solid var(--border); border-top:3px solid var(--green);
}
.case-stat .stat-num {
  font-family:'DM Sans',sans-serif; font-size:2.8rem; font-weight:700;
  color:var(--green); line-height:1; margin-bottom:10px;
}
.case-stat .stat-lbl {
  font-family:'DM Sans',sans-serif; font-size:.9rem; font-weight:600;
  color:var(--text); margin-bottom:5px;
}
.case-stat .stat-sub {
  font-size:.78rem; color:var(--grey-lt); font-weight:300; line-height:1.5;
}
.case-quote {
  background:var(--dark); color:var(--white);
  border-radius:var(--r-lg); padding:40px; position:relative;
}
.case-quote blockquote {
  font-size:1.1rem; font-style:italic; line-height:1.8;
  color:rgba(255,255,255,.85); margin-bottom:20px; font-weight:300;
}
.case-tag {
  display:inline-flex; align-items:center; gap:6px;
  font-family:'DM Sans',sans-serif; font-size:.7rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  background:rgba(113,183,57,.15); color:var(--green-lt);
  border:1px solid rgba(113,183,57,.3); border-radius:999px; padding:4px 12px; margin-bottom:16px;
}

/* Fallstudien list card responsive */
@media(max-width:640px){
  .card[style*="grid-template-columns:1fr 2fr"] {
    grid-template-columns:1fr !important;
  }
}

/* ── HERO CARD INNER (hc-*) ── */
.hc-title {
  font-family:'DM Sans',sans-serif; font-size:.68rem; font-weight:600;
  letter-spacing:.12em; text-transform:uppercase; color:var(--grey-lt); margin-bottom:16px;
}
.hc-row {
  display:flex; align-items:center; gap:12px; padding:10px 0;
  border-bottom:1px solid var(--border);
}
.hc-row:last-child { border-bottom:none; }
.hc-dot {
  width:8px; height:8px; border-radius:50%; background:var(--green);
  flex-shrink:0; animation:pulse 2s infinite;
}
.hc-dot.grey { background:var(--grey-lt); animation:none; }
.hc-lbl { font-size:.88rem; font-weight:500; flex:1; }
.hc-sub  { font-size:.75rem; color:var(--grey-lt); }
.hc-badge {
  font-family:'DM Sans',sans-serif; font-size:.68rem; font-weight:600;
  background:var(--green-bg); color:var(--green-dk); padding:3px 10px;
  border-radius:999px; white-space:nowrap;
}
.hc-badge.grey { background:var(--bg); color:var(--grey); }

/* ── TIMELINE ── */
.timeline { position:relative; padding-left:40px; }
.timeline::before {
  content:''; position:absolute; left:14px; top:8px; bottom:8px;
  width:2px; background:var(--green-bd);
}
.tl-item  { position:relative; padding-bottom:36px; }
.tl-item:last-child { padding-bottom:0; }
.tl-dot {
  position:absolute; left:-40px; top:4px; width:28px; height:28px;
  border-radius:50%; background:var(--green); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family:'DM Sans',sans-serif; font-size:.62rem; font-weight:700; flex-shrink:0;
}
.tl-year {
  font-family:'DM Sans',sans-serif; font-size:.72rem; font-weight:600;
  color:var(--green-dk); letter-spacing:.08em; text-transform:uppercase; margin-bottom:4px;
}
.tl-ttl {
  font-family:'DM Sans',sans-serif; font-size:.95rem; font-weight:700;
  color:var(--text); margin-bottom:6px;
}
.tl-body { font-size:.88rem; color:var(--grey); font-weight:300; line-height:1.75; }

/* ── FIX: img-split section padding so it doesn't overlap zahlen ── */
section + section { /* ensure sections don't bleed */ }
.img-split { display:grid; grid-template-columns:1fr 1fr; gap:12px; height:420px; max-height:420px; }

/* ── FIX: zahlen-grid in g2 context (Prozessauto / KI Ansatz section) ── */
.zahlen-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:2px; border-radius:var(--r-lg); overflow:hidden; background:var(--border);
}
/* When inside a 2-col grid, stack 2x2 */
.g2 .zahlen-grid { grid-template-columns:repeat(2,1fr); }

/* ── FIX: Fallstudien badge sizes equal ── */
.fallstudie-badges { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:20px; align-items:center; }
.fallstudie-badges .tag,
.fallstudie-badges .tag-service {
  font-family:'DM Sans',sans-serif; font-size:.65rem; font-weight:600;
  letter-spacing:.08em; border-radius:999px; padding:5px 14px;
  display:inline-flex; align-items:center; gap:6px; line-height:1;
}
.fallstudie-badges .tag {
  background:var(--green-bg); color:var(--green-dk); border:1px solid var(--green-bd);
}
.fallstudie-badges .tag-service {
  background:#fff; color:var(--grey); border:1px solid var(--border);
}

/* ── STEPS CONNECTOR – hide on small screens ── */
@media(max-width:1024px){
  .steps-connector { display:none !important; }
}

/* ══════════════════════════════════════════════════════════════
   MULTI-STEP FORM
   ══════════════════════════════════════════════════════════════ */
.mform {
  background:var(--white); border-radius:var(--r-lg);
  box-shadow:var(--sh-lg); border:1px solid var(--border); overflow:hidden;
}

/* Progress bar */
.mform-prog {
  display:flex; padding:24px 28px 0; gap:8px;
  border-bottom:1px solid var(--border); padding-bottom:18px;
  overflow-x:auto;
}
.mform-ind { display:flex; align-items:center; gap:8px; flex-shrink:0; }
.mform-bub {
  width:26px; height:26px; border-radius:50%;
  background:var(--bg); border:2px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-family:'DM Sans',sans-serif; font-size:.75rem; font-weight:700;
  color:var(--grey-lt); transition:var(--t); flex-shrink:0;
}
.mform-ind.active .mform-bub { background:var(--green); border-color:var(--green); color:#fff; }
.mform-ind.done   .mform-bub { background:var(--green-bg); border-color:var(--green-bd); color:var(--green-dk); }
.mform-ind-lbl { font-size:.78rem; font-weight:500; color:var(--grey-lt); }
.mform-ind.active .mform-ind-lbl { color:var(--green-dk); font-weight:600; }

/* Body + panels */
.mform-body { padding:28px; }
.mform-panel { display:none; }
.mform-panel.active { display:block; animation:slideInPanel .3s ease; }
.mform-title { font-family:'DM Sans',sans-serif; font-size:1.08rem; font-weight:700; margin-bottom:4px; color:var(--text); }
.mform-sub   { font-size:.84rem; color:var(--grey-lt); margin-bottom:22px; }

/* Nav row */
.mform-nav {
  display:flex; align-items:center; justify-content:space-between;
  margin-top:22px; padding-top:18px; border-top:1px solid var(--border); gap:12px;
}
.mform-back {
  display:inline-flex; align-items:center; gap:7px; font-size:.82rem;
  font-weight:500; color:var(--grey); background:none; border:none; cursor:pointer;
}
.mform-back svg { width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

/* Success screen */
.mform-ok { display:none; padding:48px 28px; text-align:center; }
.mform-ok.show { display:block; }
.mform-ok-ico {
  width:56px; height:56px; border-radius:50%; background:var(--green);
  display:flex; align-items:center; justify-content:center; margin:0 auto 18px;
}
.mform-ok-ico svg { width:26px; height:26px; stroke:#fff; fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }

/* Option cards */
.opt-grp-lbl { display:block; font-size:.78rem; font-weight:600; color:var(--text); margin-bottom:10px; }
.opt-g { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:18px; }
.opt-card {
  display:flex; align-items:center; gap:12px; padding:12px 14px;
  border-radius:10px; border:1.5px solid var(--border); background:var(--bg);
  cursor:pointer; transition:border-color var(--t), background var(--t);
}
.opt-card:hover { border-color:var(--green-bd); }
.opt-card.sel   { border-color:var(--green); background:var(--green-bg); }
.opt-card-ico {
  width:32px; height:32px; border-radius:8px; background:var(--white);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.opt-card-ico svg { width:16px; height:16px; stroke:var(--green-dk); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.opt-card-lbl { font-size:.86rem; font-weight:600; color:var(--text); }
.opt-card-sub { font-size:.74rem; color:var(--grey-lt); }

@media(max-width:768px){
  .opt-g { grid-template-columns:1fr; }
  .mform-body { padding:20px; }
  .mform-ind-lbl { display:none; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE – Inline Grid Fixes
   ══════════════════════════════════════════════════════════════ */

/* Fallstudie-Karte: 1fr 2fr -> single col on mobile */
.fallstudie-card {
  display:grid;
  grid-template-columns:1fr 2fr;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  min-height:180px;
}
.fallstudie-card-left {
  background:linear-gradient(135deg,#EEF8E3,#c8e6a0);
  display:flex; align-items:center; justify-content:center;
  padding:40px; min-height:180px;
}
.fallstudie-card-right { padding:28px; }

/* Stat boxes 2x2 grid */
.stat-grid-2x2 {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

/* Über uns Team grid */
.team-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

/* Img split on homepage */
.img-split-home {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  height:420px;
  max-height:420px;
}
.img-split-home-right {
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:12px;
  min-height:0;
}

@media(max-width:768px){
  .fallstudie-card {
    grid-template-columns:1fr;
  }
  .fallstudie-card-left {
    min-height:120px;
    padding:24px;
  }
  .stat-grid-2x2 {
    grid-template-columns:1fr 1fr; /* keep 2 cols, just smaller */
  }
  .team-grid {
    grid-template-columns:1fr 1fr;
  }
  .img-split-home {
    grid-template-columns:1fr;
    height:auto;
    max-height:none;
  }
  .img-split-home > div:first-child {
    height:220px;
  }
  .img-split-home-right {
    grid-template-columns:1fr 1fr;
    grid-template-rows:none;
    height:160px;
  }
}

@media(max-width:480px){
  .stat-grid-2x2 {
    grid-template-columns:1fr 1fr;
  }
  .fallstudie-card-right { padding:20px; }
}

/* Über uns Team section – responsive */
.team-section-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
@media(max-width:768px){
  .team-section-grid { grid-template-columns:1fr; }
}

/* EDI Flow hero-card – wrap on small screens */
.edi-flow-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  border-bottom:1px solid var(--border);
  gap:6px;
  flex-wrap:wrap;
}
@media(max-width:480px){
  .edi-flow-row { justify-content:center; gap:8px; }
}

/* Steps connector – only show on desktop */
.steps-connector-line {
  position:absolute;
  top:38px;
  left:calc(10% + 20px);
  right:calc(10% + 20px);
  height:2px;
  background:var(--green-bd);
  z-index:0;
}
@media(max-width:1024px){
  .steps-connector-line { display:none; }
}

/* Kontakt grid responsive */
@media(max-width:768px){
  .contact-g { grid-template-columns:1fr; gap:40px; }
}

/* Blog / Fallstudien hero image */
.page-hero-img {
  position:absolute; inset:0; z-index:0;
}
.page-hero-img img {
  width:100%; height:100%; object-fit:cover; opacity:.35;
}

/* ── Hero Card / IT-Preview auf Mobile nach unten ── */
@media(max-width:768px){
  /* Startseite: IT-Preview-Card volle Breite */
  .it-preview { width:100%; }

  /* Hero-Card auf Leistungsseiten: volle Breite, kompakter */
  .hero-card { padding:20px; }
  .hero-card .hc-title { font-size:.65rem; }

  /* Hero-Split Startseite: Card-Reihenfolge */
  .hero-split > div:last-child { order:2; }
  .hero-split > div:first-child { order:1; }

  /* Hero-Grid Leistungsseiten: Card-Reihenfolge */
  .hero-grid > div:last-child { order:2; }
  .hero-grid > div:first-child { order:1; }
}

@media(max-width:480px){
  .hero-card { padding:16px; }
  .hc-lbl { font-size:.82rem; }
  .hc-badge { font-size:.62rem; padding:2px 8px; }
  .it-preview-img { height:180px; }
}

/* ── Fallstudie Stats Grid ── */
.fallstudie-stats-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
@media(max-width:768px){
  .fallstudie-stats-grid {
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:400px){
  .fallstudie-stats-grid {
    grid-template-columns:1fr 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════════════════════════════ */
#cookie-banner {
  position:fixed; bottom:24px; right:24px; z-index:9999;
  width:340px; max-width:calc(100vw - 32px);
  background:#fff; border-radius:16px;
  box-shadow:0 8px 40px rgba(0,0,0,.14), 0 1px 4px rgba(0,0,0,.06);
  border:1px solid var(--border);
  font-size:.88rem; color:var(--text);
  transform:translateY(20px); opacity:0;
  transition:opacity .35s ease, transform .35s ease;
  pointer-events:none;
}
#cookie-banner.cb-visible { opacity:1; transform:translateY(0); pointer-events:auto; }
.cb-head { display:flex; align-items:center; gap:10px; padding:18px 18px 0; }
.cb-icon { width:36px; height:36px; border-radius:10px; background:var(--green-bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cb-icon svg { width:18px; height:18px; stroke:var(--green-dk); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.cb-title { font-family:'DM Sans',sans-serif; font-weight:600; font-size:.92rem; color:var(--dark); }
.cb-body { padding:10px 18px 0; color:var(--grey); line-height:1.6; }
.cb-body a { color:#4A8F27; text-decoration:underline; }
.cb-cats { padding:12px 18px 0; display:flex; flex-direction:column; gap:8px; }
.cb-cat { display:flex; align-items:center; justify-content:space-between; background:var(--bg); border-radius:10px; padding:10px 12px; border:1px solid var(--border); }
.cb-cat-info { display:flex; flex-direction:column; gap:2px; }
.cb-cat-name { font-weight:500; font-size:.82rem; color:var(--dark); }
.cb-cat-desc { font-size:.75rem; color:var(--grey-md); }
.cb-toggle { position:relative; width:38px; height:22px; flex-shrink:0; }
.cb-toggle input { opacity:0; width:0; height:0; position:absolute; }
.cb-toggle-track { position:absolute; inset:0; border-radius:999px; background:#d1d5db; cursor:pointer; transition:background .2s ease; }
.cb-toggle input:checked ~ .cb-toggle-track { background:var(--green); }
.cb-toggle input:disabled ~ .cb-toggle-track { opacity:.5; cursor:not-allowed; }
.cb-toggle-thumb { position:absolute; top:3px; left:3px; width:16px; height:16px; border-radius:50%; background:#fff; box-shadow:0 1px 3px rgba(0,0,0,.2); transition:transform .2s ease; pointer-events:none; }
.cb-toggle input:checked ~ .cb-toggle-track .cb-toggle-thumb { transform:translateX(16px); }
.cb-btns { display:flex; gap:8px; padding:14px 18px 18px; }
.cb-btn { flex:1; padding:9px 12px; border-radius:999px; font-size:.82rem; font-weight:600; border:none; cursor:pointer; transition:all .2s ease; font-family:'DM Sans',system-ui,sans-serif; }
.cb-btn-accept { background:#71B739; color:#fff; }
.cb-btn-accept:hover { background:var(--green-dk); transform:translateY(-1px); }
.cb-btn-decline { background:var(--bg); color:var(--grey); border:1px solid var(--border); }
.cb-btn-decline:hover { border-color:var(--green-bd); color:var(--green-dk); }
.cb-btn-save { background:var(--dark); color:#fff; }
.cb-more-btn { display:block; width:100%; text-align:center; padding:6px 0 14px; font-size:.78rem; color:var(--grey-md); background:none; border:none; cursor:pointer; font-family:'DM Sans',system-ui,sans-serif; transition:color .2s; }
.cb-more-btn:hover { color:var(--green-dk); }
.cb-detail { display:none; }
.cb-detail.cb-open { display:block; }
.cb-main.cb-hidden { display:none; }
#cookie-reopen { position:fixed; bottom:24px; right:24px; z-index:9998; width:42px; height:42px; border-radius:50%; background:#fff; border:1px solid var(--border); box-shadow:0 4px 16px rgba(0,0,0,.1); cursor:pointer; display:none; align-items:center; justify-content:center; transition:box-shadow .2s, transform .2s; }
#cookie-reopen:hover { box-shadow:0 6px 24px rgba(0,0,0,.15); transform:scale(1.07); }
#cookie-reopen svg { width:18px; height:18px; stroke:var(--green-dk); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
@media(max-width:480px){
  #cookie-banner { bottom:0; right:0; width:100%; max-width:100%; border-radius:16px 16px 0 0; }
  #cookie-reopen { bottom:16px; right:16px; }
}

/* ── Rechtstexte ── */
.rechtstext { font-size:.92rem; line-height:1.8; color:var(--grey); }
.rechtstext h1,.rechtstext h2,.rechtstext h3 { color:var(--text); margin:28px 0 10px; font-family:'DM Sans',sans-serif; }
.rechtstext h1 { font-size:1.4rem; }
.rechtstext h2 { font-size:1.15rem; }
.rechtstext h3 { font-size:1rem; }
.rechtstext p  { margin-bottom:14px; }
.rechtstext a  { color:var(--green-dk); text-decoration:underline; }
.rechtstext ul,.rechtstext ol { padding-left:20px; margin-bottom:14px; }
.rechtstext li { margin-bottom:6px; }

/* ── FAQ ── */
.faq-item {
  border:1px solid var(--border); border-radius:var(--r);
  background:var(--white); overflow:hidden;
}
.faq-item + .faq-item { margin-top:2px; }
.faq-q {
  padding:18px 20px; font-family:'DM Sans',sans-serif; font-size:.95rem;
  font-weight:600; color:var(--text); cursor:pointer; list-style:none;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  user-select:none;
}
.faq-q::-webkit-details-marker { display:none; }
.faq-q::after {
  content:''; width:18px; height:18px; flex-shrink:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2371B739' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size:contain; background-repeat:no-repeat;
  transition:transform .25s ease;
}
details[open] .faq-q::after { transform:rotate(180deg); }
details[open] .faq-q { color:var(--green-dk); }
.faq-a {
  padding:0 20px 18px; font-size:.9rem; color:var(--grey);
  line-height:1.75; border-top:1px solid var(--border);
  animation:fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity:0; transform:translateY(-4px); } to { opacity:1; transform:none; } }

/* ── Mobile Sticky Call Button ── */
.mobile-cta-bar {
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:999;
  background:#fff; border-top:1px solid var(--border);
  padding:10px 16px 10px; gap:8px;
  box-shadow:0 -4px 20px rgba(0,0,0,.08);
}
@media(max-width:768px){
  .mobile-cta-bar { display:flex; }
  body { padding-bottom:70px; }
}
.mobile-cta-bar a {
  flex:1; display:flex; align-items:center; justify-content:center;
  gap:7px; padding:11px 8px; border-radius:999px;
  font-size:.82rem; font-weight:600; text-decoration:none;
  font-family:'DM Sans',sans-serif;
}
.mobile-cta-bar a svg { width:15px; height:15px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.mobile-cta-call { background:var(--green); color:#fff; }
.mobile-cta-mail { background:var(--bg); color:var(--text); border:1px solid var(--border); }

/* ── Lightbox ── */
.lb-overlay {
  display:none; position:fixed; inset:0; z-index:9999;
  background:rgba(0,0,0,.92); align-items:center; justify-content:center;
  padding:20px; cursor:zoom-out;
}
.lb-overlay.open { display:flex; animation:fadeIn .2s ease; }
.lb-overlay img {
  max-width:min(1000px, 92vw); max-height:90vh;
  object-fit:contain; border-radius:var(--r); box-shadow:0 24px 80px rgba(0,0,0,.5);
  cursor:default;
}
.lb-close {
  position:absolute; top:16px; right:20px;
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,.12); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  color:#fff; transition:background .2s;
}
.lb-close:hover { background:rgba(255,255,255,.25); }
.lb-close svg { width:18px; height:18px; stroke:#fff; fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
.lb-prev, .lb-next {
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.12); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center; transition:background .2s;
}
.lb-prev:hover, .lb-next:hover { background:rgba(255,255,255,.25); }
.lb-prev { left:16px; } .lb-next { right:16px; }
.lb-prev svg, .lb-next svg { width:18px; height:18px; stroke:#fff; fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
.lb-counter { position:absolute; bottom:16px; left:50%; transform:translateX(-50%); font-size:.78rem; color:rgba(255,255,255,.85); font-family:'DM Sans',sans-serif; }

/* Bilder in Fallstudie klickbar machen */
.lb-trigger { cursor:zoom-in; transition:opacity .2s; }
.lb-trigger:hover { opacity:.88; }

/* ── Opt-Group Validation Error ── */
.opt-g-error {
  border-radius:var(--r);
  outline:2px solid #ef4444;
  outline-offset:4px;
  animation:shake .3s ease;
}
.opt-g-error::after {
  content:'Bitte eine Option auswählen.';
  display:block;
  font-size:.78rem;
  color:#ef4444;
  margin-top:8px;
  font-weight:500;
}
@keyframes shake {
  0%,100% { transform:translateX(0); }
  20%      { transform:translateX(-6px); }
  40%      { transform:translateX(6px); }
  60%      { transform:translateX(-4px); }
  80%      { transform:translateX(4px); }
}

/* ═══════════════════════════════════════════════════════
   REGIONALE LANDINGPAGES
   ═══════════════════════════════════════════════════════ */

.rg-hero { padding:120px 0 72px; background:var(--bg); }
.rg-hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.rg-eyebrow { display:inline-flex; align-items:center; gap:7px; font-size:.78rem; font-weight:500;
  color:var(--green); text-transform:uppercase; letter-spacing:.06em; margin-bottom:16px; }
.rg-eyebrow svg { width:14px;height:14px;stroke:var(--green);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round; }
.rg-hero-content h1 { font-size:clamp(1.6rem,3vw,2.4rem); font-weight:700; line-height:1.2; margin-bottom:16px; }
.rg-sub { font-size:1.05rem; color:var(--grey); line-height:1.7; margin-bottom:24px; max-width:52ch; }

.rg-trust-row { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:28px; }
.rg-trust-item { display:flex; align-items:center; gap:7px; font-size:.82rem; color:var(--grey); }
.rg-trust-item svg { width:15px;height:15px;stroke:var(--green);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0; }
.rg-cta-row { display:flex; flex-wrap:wrap; gap:12px; }

.rg-map-card { background:#fff; border:1.5px solid var(--border); border-radius:var(--r-lg);
  padding:28px 24px; text-align:center; }
.rg-map-pin { margin-bottom:12px; }
.rg-map-pin svg { width:36px;height:36px;stroke:var(--green);fill:rgba(113,183,57,.12);stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round; }
.rg-map-name { font-size:1.6rem; font-weight:700; margin-bottom:4px; }
.rg-map-detail { font-size:.87rem; color:var(--grey); margin-bottom:12px; }
.rg-map-dist { display:inline-block; background:rgba(113,183,57,.1); color:var(--green);
  font-size:.78rem; font-weight:600; padding:5px 14px; border-radius:20px; margin-bottom:16px; }
.rg-nearby-label { display:block; font-size:.73rem; color:var(--grey); margin-bottom:8px; text-transform:uppercase; letter-spacing:.05em; }
.rg-nearby-list { display:flex; flex-wrap:wrap; gap:6px; justify-content:center; }
.rg-nearby-chip { background:var(--bg); border:1px solid var(--border); border-radius:20px;
  font-size:.75rem; color:var(--grey-md); padding:3px 10px; }

.rg-why-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.rg-cards-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.rg-check-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.rg-check-list li { display:flex; align-items:flex-start; gap:10px; font-size:.95rem; color:var(--grey); line-height:1.5; }
.rg-check-list li::before { content:''; width:18px; height:18px; background:var(--green);
  border-radius:50%; flex-shrink:0; margin-top:2px;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size:12px; background-repeat:no-repeat; background-position:center; }

.rg-why-card { background:#fff; border:1.5px solid var(--border); border-radius:var(--r-lg); padding:32px; }
.rg-stat-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.rg-stat { text-align:center; }
.rg-stat-num { font-size:2.2rem; font-weight:700; color:var(--green); line-height:1; margin-bottom:4px; }
.rg-stat-lbl { font-size:.8rem; color:var(--grey); }

.rg-prose { max-width:68ch; }
.rg-prose h2 { font-size:1.4rem; font-weight:700; margin-bottom:12px; margin-top:32px; }
.rg-prose h2:first-child { margin-top:0; }
.rg-prose p { color:var(--grey); line-height:1.75; margin-bottom:12px; }

@media(max-width:860px) {
  .rg-hero-inner, .rg-why-grid { grid-template-columns:1fr; }
  .rg-hero { padding:96px 0 48px; }
}
