/* ============================================================
   KOCH ELEKTROTECHNIK — Bright Blue & White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --blue:        #119AE0;
  --blue-600:    #0C82C4;
  --blue-700:    #0A6298;
  --blue-soft:   #E6F5FC;
  --blue-soft-2: #CCEAF8;
  --cyan:        #2EAAE1;
  --sky:         #F2FAFE;
  --ink:         #0E1A33;
  --slate:       #54627B;
  --slate-2:     #8893A8;
  --white:       #FFFFFF;
  --line:        #DCEDF7;

  --shadow-card: 0 24px 50px -22px rgba(17,110,170,0.28);
  --shadow-soft: 0 10px 26px -14px rgba(17,110,170,0.22);
  --shadow-btn:  0 14px 30px -10px rgba(17,154,224,0.55);

  --r-sm: 14px;
  --r:    20px;
  --r-lg: 30px;
  --pill: 999px;

  --font-display: 'Sora', sans-serif;
  --font-body:    'Manrope', sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }

/* ---- Aufsteigende, kurze Wellen-Striche (nur in einzelnen Abschnitten, komplett im Hintergrund) ---- */
.has-waves { position: relative; overflow: hidden; }
.has-waves > .wrap { position: relative; z-index: 1; }
.wave-field {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.wave-field i {
  position: absolute; display: block;
  width: var(--w, 44px); height: var(--h, 100px);
  background: url('wave.svg') center / 100% 100% no-repeat;
  opacity: 0;
  will-change: transform, opacity;
  animation: waveFloat var(--s, 16s) linear infinite var(--d, 0s);
}
@keyframes waveFloat {
  0%   { top: 100%; opacity: 0; }
  14%  { opacity: var(--o, 0.16); }
  86%  { opacity: var(--o, 0.16); }
  100% { top: -18%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wave-field i { animation: none; opacity: 0; }
}
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; color: var(--ink); letter-spacing: -0.015em; }

.display { font-size: clamp(40px, 6.4vw, 78px); font-weight: 800; line-height: 1.04; letter-spacing: -0.025em; }
.section-title { font-size: clamp(30px, 4.2vw, 52px); font-weight: 800; letter-spacing: -0.02em; }
.accent { color: var(--blue); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-soft);
  border: 1px solid var(--blue-soft-2);
  padding: 8px 16px 8px 12px;
  border-radius: var(--pill);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(17,154,224,0.18); }

.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--slate); max-width: 54ch; line-height: 1.62; }

/* ============================================================
   BUTTONS (rounded + animated)
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--pill);
  cursor: pointer;
  border: none;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn .btn-ico {
  width: 38px; height: 38px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: transform .4s cubic-bezier(.22,1,.36,1), background .3s ease;
}
.btn .btn-ico svg { transition: transform .4s cubic-bezier(.22,1,.36,1); }

/* Primary — solid blue with white icon disc + sheen */
.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 7px 10px 7px 26px;
  box-shadow: 0 10px 24px -12px rgba(23,102,255,0.7);
  overflow: hidden;
}
.btn-primary .btn-ico { background: #fff; color: var(--blue); }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg);
  transition: left .6s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-btn); background: var(--blue-600); }
.btn-primary:hover::after { left: 130%; }
.btn-primary:hover .btn-ico { transform: rotate(-45deg) scale(1.06); }
.btn-primary:active { transform: translateY(-1px); }

/* Ghost — white pill, fills outline on hover */
.btn-ghost {
  background: #fff;
  color: var(--ink);
  padding: 14px 26px;
  border: 1.6px solid var(--line);
}
.btn-ghost .btn-ico { width: 22px; height: 22px; }
.btn-ghost:hover { transform: translateY(-3px); color: var(--blue); border-color: var(--blue); box-shadow: var(--shadow-soft); }
.btn-ghost:hover .btn-ico svg { transform: translateX(4px); }

/* On-blue (white) button for blue CTA band */
.btn-white { background: #fff; color: var(--blue-700); padding: 7px 10px 7px 26px; }
.btn-white .btn-ico { background: var(--blue); color: #fff; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -14px rgba(0,0,0,0.4); }
.btn-white:hover .btn-ico { transform: rotate(-45deg) scale(1.06); }

/* Text link with sliding arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; color: var(--blue);
}
.link-arrow svg { transition: transform .35s cubic-bezier(.22,1,.36,1); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 50px; width: auto; display: block; }
.brand .mark { width: 40px; height: 40px; flex: none; }
.brand b { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.02em; line-height: 1; display: block; }
.brand span { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-2); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  color: var(--slate); padding: 10px 16px; border-radius: var(--pill);
  transition: color .2s ease, background .2s ease;
}
.nav a:hover, .nav a.active { color: var(--blue); background: var(--blue-soft); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.phone .pico { width: 34px; height: 34px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.menu-toggle {
  display: none; align-items: center; justify-content: center; flex: none;
  width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  cursor: pointer; transition: border-color .2s ease, background .2s ease;
}
.menu-toggle:hover { border-color: var(--blue); background: var(--blue-soft); }
.mt-bars, .mt-bars::before, .mt-bars::after {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: currentColor; transition: transform .25s ease, opacity .2s ease;
}
.mt-bars { position: relative; color: var(--ink); }
.mt-bars::before, .mt-bars::after { content: ""; position: absolute; left: 0; }
.mt-bars::before { top: -7px; }
.mt-bars::after { top: 7px; }
.site-header.nav-open .mt-bars { background: transparent; }
.site-header.nav-open .mt-bars::before { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .mt-bars::after { transform: translateY(-7px) rotate(-45deg); }

/* Scroll-to-Top Button */
.scroll-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 70;
  width: 52px; height: 52px; border-radius: 50%;
  border: none; cursor: pointer; color: #fff;
  background: var(--blue); display: grid; place-items: center;
  box-shadow: var(--shadow-btn);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s, background .25s ease;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--blue-600); transform: translateY(-3px); }
.scroll-top svg { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--ink) center/cover no-repeat; background-image: url('md2x8.jpeg'); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,14,28,0.74) 0%, rgba(7,14,28,0.56) 48%, rgba(7,14,28,0.34) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  padding-block: clamp(44px, 6vw, 84px);
}
.hero-copy { max-width: 680px; }
.hero .eyebrow { margin-bottom: 20px; }
.hero h1 { font-size: clamp(32px, 4.6vw, 56px); margin-bottom: 20px; color: #fff; }
.hero-copy .lead { margin-bottom: 30px; color: rgba(255,255,255,0.88); }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust .ht { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.92); }
.hero-trust .ht svg { color: #fff; flex: none; }

/* Hero media */
.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--blue-soft);
}
.hero-media image-slot { width: 100%; height: auto; aspect-ratio: 4/5; display: block; }
.hero-media .float-card {
  position: absolute; left: -26px; bottom: 34px;
  background: #fff; border-radius: var(--r);
  box-shadow: var(--shadow-card);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.float-card .fc-ico { width: 46px; height: 46px; border-radius: 14px; background: var(--blue); color: #fff; display: grid; place-items: center; flex: none; }
.float-card .fc-num { font-family: var(--font-display); font-weight: 800; font-size: 24px; line-height: 1; color: var(--ink); }
.float-card .fc-lbl { font-size: 12.5px; font-weight: 600; color: var(--slate-2); margin-top: 3px; }
.hero-media .badge-top {
  position: absolute; right: -14px; top: 28px;
  background: #fff; border-radius: var(--pill); padding: 10px 18px;
  box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink);
}
.badge-top .dot { width: 9px; height: 9px; border-radius: 50%; background: #21c07a; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--sky); }
.stats .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding-block: clamp(40px, 5vw, 64px); }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px 32px; box-shadow: var(--shadow-soft); transition: transform .3s ease, box-shadow .3s ease; }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.stat-card .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 4.6vw, 60px); line-height: 1; color: var(--blue); letter-spacing: -0.03em; }
.stat-card .lbl { font-weight: 600; color: var(--slate); margin-top: 10px; font-size: 15.5px; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
section.block { padding-block: clamp(64px, 9vw, 120px); }
.block.white { background: #fff; }
.block.sky { background: var(--sky); }

.sec-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 20px; }
.sec-head .section-title { margin-bottom: 18px; }

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.intro-media { position: relative; }
.intro-media .frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); background: var(--blue-soft); }
.intro-media image-slot { width: 100%; height: auto; aspect-ratio: 5/4; display: block; }
.intro-media .play { position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-btn); cursor: pointer; transition: transform .3s ease; }
.intro-media .play:hover { transform: scale(1.08); }
.intro-media .video-frame { position: relative; aspect-ratio: 16/9; background: var(--ink); }
.intro-media .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.intro-copy h2 { margin-bottom: 20px; }
.intro-copy .lead { margin-bottom: 28px; }
.feat-list { display: grid; gap: 14px; margin: 26px 0 34px; }
.feat-list li { list-style: none; display: flex; align-items: flex-start; gap: 14px; font-weight: 600; color: var(--ink); }
.feat-list .ck { width: 30px; height: 30px; flex: none; border-radius: 10px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin-top: 1px; }
.feat-list span small { display: block; font-weight: 500; color: var(--slate); font-size: 14px; margin-top: 3px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.step-card .pic { position: relative; }
.step-card image-slot { width: 100%; height: auto; aspect-ratio: 4/3; display: block; background: var(--blue-soft); }
.step-card .num-badge {
  position: absolute; left: 18px; top: 18px;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--blue);
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  display: grid; place-items: center; box-shadow: var(--shadow-soft);
}
.step-card .body { padding: 24px 24px 28px; flex: 1; }
.step-card .kic { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--blue); }
.step-card h3 { font-size: 22px; margin: 8px 0 10px; }
.step-card p { font-size: 14.5px; color: var(--slate); line-height: 1.6; }

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 32px 36px; box-shadow: var(--shadow-soft);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.cap::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(160deg, var(--blue-soft), transparent 55%);
  opacity: 0; transition: opacity .35s ease;
}
.cap:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: var(--blue-soft-2); }
.cap:hover::before { opacity: 1; }
.cap > * { position: relative; }
.cap .cico { width: 58px; height: 58px; border-radius: 16px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 22px; transition: background .3s ease, color .3s ease, transform .35s ease; }
.cap:hover .cico { background: var(--blue); color: #fff; transform: scale(1.05) rotate(-4deg); }
.cap h3 { font-size: 22px; margin-bottom: 11px; }
.cap p { color: var(--slate); font-size: 15px; line-height: 1.6; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding-block: clamp(40px, 6vw, 80px); background: #fff; }
.cta-inner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-600) 60%, var(--blue-700) 100%);
  border-radius: clamp(24px, 3vw, 40px);
  padding: clamp(44px, 6vw, 76px) clamp(28px, 5vw, 72px);
  color: #fff;
  display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center;
}
.cta-inner::before {
  content: ""; position: absolute; right: -60px; top: -80px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 65%); pointer-events: none;
}
.cta-inner .eyebrow { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.25); color: #fff; margin-bottom: 18px; }
.cta-inner .eyebrow .dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.25); }
.cta-inner h2 { color: #fff; font-size: clamp(30px, 4vw, 50px); margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.92); max-width: 46ch; font-size: 17px; }

/* ============================================================
   FOOTER
   ============================================================ */
/* Legal pages (Impressum / Datenschutz) */
.legal { max-width: 820px; }
.legal-body h2 { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin: 38px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-family: var(--font-display); font-size: clamp(16px, 1.8vw, 19px); font-weight: 700; color: var(--ink); margin: 26px 0 8px; }
.legal-body p { color: var(--slate); font-size: 15.5px; line-height: 1.75; margin: 0 0 14px; }
.legal-body ul { color: var(--slate); font-size: 15.5px; line-height: 1.7; margin: 0 0 14px; padding-left: 22px; }
.legal-body li { margin-bottom: 7px; }
.legal-body strong { color: var(--ink); font-weight: 700; }
.legal-body a { color: var(--blue); text-decoration: none; border-bottom: 1px solid var(--blue-soft-2); transition: color .25s ease, border-color .25s ease; }
.legal-body a:hover { color: var(--blue-700); border-color: var(--blue); }
.legal-meta { margin-top: 32px; font-size: 13.5px; color: var(--slate-2); }

.site-footer { background: var(--sky); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1.2fr; gap: 44px; padding-block: clamp(52px, 6vw, 80px); }
.footer-brand .mark { width: 44px; height: 44px; margin-bottom: 18px; }
.footer-logo { height: 64px; width: auto; display: block; margin: -8px 0 4px -6px; }
.footer-brand b { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; display: block; line-height: 1; }
.footer-brand span { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-2); }
.footer-brand p { margin-top: 16px; color: var(--slate); font-size: 14.5px; max-width: 34ch; }
.footer-social { margin-top: 20px; display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; color: var(--slate); }
.footer-social .si { width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--blue); display: grid; place-items: center; transition: transform .3s ease, background .3s ease, color .3s ease; }
.footer-social:hover .si { background: var(--blue); color: #fff; transform: translateY(-3px); }

.fcol h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate-2); margin-bottom: 18px; }
.fcol ul { list-style: none; display: grid; gap: 12px; }
.fcol a { color: var(--slate); font-size: 15px; font-weight: 500; transition: color .2s ease; }
.fcol a:hover { color: var(--blue); }
.hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--slate); white-space: nowrap; }
.hours-row b { color: var(--ink); font-weight: 700; }
.hours-row .em { color: var(--blue); }
.fcol .kontakt-line { display: flex; flex-direction: column; gap: 12px; }
.fcol .kontakt-line a { font-weight: 600; color: var(--ink); }
.fcol .kontakt-line a:hover { color: var(--blue); }
.fcol .addr { color: var(--slate); font-size: 14px; font-weight: 500; line-height: 1.5; }

.footer-bottom { border-top: 1px solid var(--line); padding-block: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--slate-2); font-weight: 500; }
.footer-bottom a:hover { color: var(--blue); }

/* ============================================================
   SUBPAGE BANNER
   ============================================================ */
.page-hero { position: relative; overflow: hidden; background: var(--sky); border-bottom: 1px solid var(--line); }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(55% 70% at 88% 0%, rgba(23,102,255,0.12), transparent 70%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; padding-block: clamp(48px, 7vw, 88px); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--slate-2); margin-bottom: 22px; white-space: nowrap; }
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: var(--blue-soft-2); }
.page-hero h1 { font-size: clamp(38px, 5.6vw, 68px); font-weight: 800; letter-spacing: -0.025em; max-width: 16ch; }
.page-hero .lead { margin-top: 20px; }

/* ============================================================
   VALUES (Über uns)
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 30px; box-shadow: var(--shadow-soft); transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease; }
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.value .vico { width: 54px; height: 54px; border-radius: 15px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 20px; }
.value h3 { font-size: 21px; margin-bottom: 10px; }
.value p { color: var(--slate); font-size: 15px; line-height: 1.6; }

/* Story split */
.career-banner { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); background: var(--blue-soft); }
.career-banner image-slot { width: 100%; height: auto; aspect-ratio: 16/9; display: block; }
.story-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.story-media .frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); background: var(--blue-soft); }
.story-media image-slot { width: 100%; height: auto; aspect-ratio: 3/2; display: block; }
/* Über-uns Story-Bild: höher/dominanter (schneidet nur seitliche Regale, nicht die Köpfe) */
#about-story { aspect-ratio: 4/5; }
.story-copy h2 { margin-bottom: 18px; }
.story-copy p { color: var(--slate); margin-bottom: 16px; font-size: 16.5px; line-height: 1.65; }
.story-copy p:last-of-type { margin-bottom: 0; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.team-card image-slot { width: 100%; height: auto; aspect-ratio: 1/1; display: block; background: var(--blue-soft); }
.team-card .tc-body { padding: 18px 20px 22px; }
.team-card .tc-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.team-card .tc-role { color: var(--blue); font-size: 14px; font-weight: 600; margin-top: 3px; }

/* ============================================================
   DOWNLOADS
   ============================================================ */
.dl-cats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.dl-chip { font-family: var(--font-display); font-weight: 600; font-size: 14px; padding: 9px 18px; border-radius: var(--pill); background: #fff; border: 1.5px solid var(--line); color: var(--slate); cursor: pointer; transition: all .25s ease; }
.dl-chip:hover, .dl-chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.dl-list { display: grid; gap: 14px; }
.dl-row { display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px 22px; box-shadow: var(--shadow-soft); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.dl-row:hover { transform: translateX(4px); box-shadow: var(--shadow-card); border-color: var(--blue-soft-2); }
.dl-row .dl-ico { width: 52px; height: 52px; flex: none; border-radius: 14px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.dl-row .dl-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.dl-row .dl-name { display: block; }
.dl-row .dl-sub { display: block; }
.dl-row .dl-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.dl-row .dl-sub { color: var(--slate-2); font-size: 13.5px; font-weight: 500; margin-top: 3px; }
.dl-row .dl-tag { font-size: 12px; font-weight: 700; color: var(--blue); background: var(--blue-soft); padding: 4px 10px; border-radius: var(--pill); }
.dl-btn { width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; transition: transform .3s ease, box-shadow .3s ease; }
.dl-row:hover .dl-btn { transform: translateY(-2px); box-shadow: var(--shadow-btn); }

/* ============================================================
   KARRIERE
   ============================================================ */
.perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.perk { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; box-shadow: var(--shadow-soft); transition: transform .35s ease, box-shadow .35s ease; }
.perk:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.perk .pico2 { width: 50px; height: 50px; border-radius: 14px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 18px; }
.perk h3 { font-size: 18px; margin-bottom: 8px; }
.perk p { color: var(--slate); font-size: 14.5px; line-height: 1.55; }
.job-list { display: grid; gap: 16px; }
.btn-sm { padding: 9px 20px; font-size: 13.5px; }
.btn-sm .btn-ico { width: 20px; height: 20px; }
.sec-head-actions { margin-top: 20px; }
.job-card { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 30px; box-shadow: var(--shadow-soft); transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .3s ease; }
.job-card.clickable { cursor: pointer; }
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--blue-soft-2); }
.job-card .job-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.job-card .job-tag { font-size: 12.5px; font-weight: 700; color: var(--blue); background: var(--blue-soft); padding: 5px 12px; border-radius: var(--pill); }
.job-card h3 { font-size: 23px; margin-bottom: 6px; }
.job-card p { color: var(--slate); font-size: 15px; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(32px, 4vw, 56px); align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-card); }
.contact-form h2 { font-size: 28px; margin-bottom: 8px; }
.contact-form .fsub { color: var(--slate); margin-bottom: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 14px; margin-bottom: 8px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  background: var(--sky); border: 1.5px solid var(--line); border-radius: 14px;
  padding: 14px 16px; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(17,154,224,0.14); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 13px; color: var(--slate-2); margin-top: 6px; }

/* ---- Anfrage-Funnel ---- */
.funnel-progress { margin-bottom: 28px; }
.funnel-progress .fp-bar { height: 6px; border-radius: var(--pill); background: var(--blue-soft); overflow: hidden; }
.funnel-progress .fp-bar span { display: block; height: 100%; width: 0; border-radius: var(--pill); background: linear-gradient(90deg, var(--cyan), var(--blue)); transition: width .4s cubic-bezier(.4,0,.2,1); }
.fp-steps { display: flex; justify-content: space-between; margin-top: 10px; }
.fp-step { font-family: var(--font-display); font-weight: 600; font-size: 12.5px; letter-spacing: .02em; color: var(--slate-2); transition: color .3s ease; }
.fp-step.active { color: var(--blue); }
.fp-step.done { color: var(--ink); }

.funnel-step { display: none; animation: funnelIn .35s ease; }
.funnel-step.active { display: block; }
@keyframes funnelIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
.step-q { display: block; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 16px; }

.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.opt { position: relative; cursor: pointer; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt-card { display: flex; flex-direction: column; gap: 10px; padding: 18px; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: #fff; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--ink); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; height: 100%; }
.opt-card .opt-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; transition: background .2s ease, color .2s ease; }
.opt:hover .opt-card { border-color: var(--blue-soft-2); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.opt input:checked + .opt-card { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(17,154,224,0.14); }
.opt input:checked + .opt-card .opt-ic { background: var(--blue); color: #fff; }
.opt input:focus-visible + .opt-card { border-color: var(--blue); }

.dsgvo-label { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--slate); font-weight: 500; cursor: pointer; margin-top: 4px; }
.dsgvo-label input { width: auto; margin-top: 3px; flex: none; }

.funnel-nav { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.funnel-nav .btn-ghost { padding-left: 18px; }
@media (max-width: 540px) { .opt-grid { grid-template-columns: 1fr; } }

/* ---- Bewerbung: Datei-Upload ---- */
.upload-drop { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 34px 24px; border: 2px dashed var(--blue-soft-2); border-radius: var(--r-sm); background: var(--sky); cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.upload-drop input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-drop:hover, .upload-drop.drag { border-color: var(--blue); background: var(--blue-soft); }
.upload-drop.err { border-color: #E5484D; }
.upload-drop .ud-ico { width: 56px; height: 56px; border-radius: 16px; background: #fff; color: var(--blue); display: grid; place-items: center; box-shadow: var(--shadow-soft); }
.upload-drop .ud-main { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); }
.upload-drop .ud-main b { color: var(--blue); }
.upload-drop .ud-hint { font-size: 13px; color: var(--slate-2); }

.file-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.file-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; }
.file-item.too-big { border-color: #E5484D; }
.file-item .fi-ic { width: 34px; height: 34px; flex: none; border-radius: 10px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.file-item .fi-name { font-weight: 600; font-size: 14px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
.file-item .fi-size { font-size: 12.5px; color: var(--slate-2); flex: none; }
.file-item.too-big .fi-size { color: #E5484D; }
.file-item .fi-del { flex: none; width: 26px; height: 26px; border: none; border-radius: 50%; background: var(--blue-soft); color: var(--slate); font-size: 18px; line-height: 1; cursor: pointer; transition: background .2s ease, color .2s ease; }
.file-item .fi-del:hover { background: #E5484D; color: #fff; }
.contact-side { display: grid; gap: 16px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px 26px; box-shadow: var(--shadow-soft); display: flex; gap: 18px; align-items: flex-start; transition: transform .3s ease, box-shadow .3s ease; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.info-card .ic-ico { width: 50px; height: 50px; flex: none; border-radius: 14px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.info-card .ic-h { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.info-card .ic-h + * { color: var(--slate); font-size: 15px; line-height: 1.55; }
.info-card a { color: var(--slate); }
.info-card a:hover { color: var(--blue); }
.map-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); background: var(--blue-soft); }
.map-frame image-slot { width: 100%; height: auto; aspect-ratio: 16/9; display: block; }

.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .fs-ico { width: 70px; height: 70px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success h3 { font-size: 24px; margin-bottom: 8px; }
.form-success p { color: var(--slate); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    padding: 14px clamp(16px, 5vw, 40px) 22px;
    opacity: 0; visibility: hidden; transform: translateY(-10px); pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .site-header.nav-open .nav {
    opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
  }
  .nav a { padding: 13px 16px; font-size: 16.5px; border-radius: 12px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 440px; margin-inline: auto; }
  .hero-media image-slot { aspect-ratio: 16/12; }
  /* Floating-Cards nach innen holen, damit sie nicht abgeschnitten werden */
  .hero-media .float-card { left: 14px; bottom: 14px; padding: 13px 17px; }
  .hero-media .badge-top { right: 12px; top: 14px; }
  .intro-grid { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .phone .ptxt { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-media { max-width: 440px; margin-inline: auto; }
  /* Über-uns-Bild auf Mobil zentriert & weniger hoch (Hochformat war nur für Desktop-Spalte) */
  #about-story { aspect-ratio: 5/4; }
  .contact-grid { grid-template-columns: 1fr; }
  .job-card { grid-template-columns: 1fr; gap: 18px; padding: 24px 24px; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-block: 46px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
  /* Download-Zeile sauber: Kategorie-Pille weg (Filter-Chips oben reichen), Zeile bleibt einreihig */
  .dl-row { gap: 14px; }
  .dl-row .dl-tag { display: none; }
  .scroll-top { right: 16px; bottom: 16px; width: 46px; height: 46px; }

  /* Kompaktere vertikale Abstände auf dem Handy */
  section.block { padding-block: 54px; }
  .cta-band { padding-block: 46px; }
  .stats .wrap { padding-block: 40px; }
  .page-hero .wrap { padding-block: 42px; }
  .hero-grid { padding-block: 38px; }
  .sec-head { margin-bottom: 32px; }
  .hero-trust { gap: 12px 18px; margin-top: 26px; }

  /* Karten etwas schmaler einpolstern */
  .cap { padding: 28px 24px 30px; }
  .value { padding: 28px 24px; }
  .stat-card { padding: 26px 26px; }
  .contact-form { border-radius: var(--r); }

  /* Header entlasten: engere Abstände, kleineres Logo */
  .header-top { height: 66px; }
  .header-actions { gap: 10px; }
  .brand-logo { height: 42px; }
  .menu-toggle { width: 44px; height: 44px; }

  /* Buttons im Hero über volle Breite, sauber gestapelt */
  .hero-cta { gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 420px) {
  /* Termin-Button im Header ausblenden – Telefon + Menü reichen, sonst zu eng */
  .header-actions .btn-primary { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}
