/* ============================================================
   AKS Kälte-Klima GmbH – zentrales Stylesheet
   Design-Basis: Claude-Design-Projekt "AKS Kälte-Klima Redesign"
   ============================================================ */

/* ---------- Fonts (selbst gehostet, DSGVO-konform) ---------- */
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/sora-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/sora-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/sora-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/sora-latin-800-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/manrope-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/manrope-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/manrope-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/manrope-latin-700-normal.woff2') format('woff2'); }

/* ---------- Design-Tokens ---------- */
:root {
  --navy: #0A2540;
  --navy-dark: #071a2e;
  --navy-mid: #0d3a63;
  --blue: #0E6DB6;
  --blue-light: #1E90D6;
  --sky: #4FB3E0;
  --red: #E0392B;
  --orange: #f5843a;
  --ink: #0A2540;
  --ink-soft: #33475b;
  --ink-muted: #46586b;
  --gray: #5b7089;
  --gray-light: #8496a8;
  --line: #e9eef3;
  --line-soft: #eef2f6;
  --bg-soft: #f5f9fc;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --radius-card: 22px;
  --radius-btn: 13px;
  --maxw: 1240px;
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: #0a5290; }
img { max-width: 100%; height: auto; }
::selection { background: #cfe6f7; }

/* Fokus-Stile (Barrierefreiheit) */
:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 2px; border-radius: 4px; }
.on-dark :focus-visible, .site-footer :focus-visible { outline-color: var(--sky); }

/* Skip-Link */
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; font-weight: 700;
  padding: 12px 20px; border-radius: 0 0 10px 10px; transition: top .2s;
}
.skip-link:focus { top: 0; color: #fff; }

.container { max-width: var(--maxw); margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Topbar ---------- */
.topbar { background: var(--navy); color: #cfe0f0; font-size: 13.5px; font-weight: 500; }
.topbar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 9px 28px;
  display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between;
}
.topbar__links { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.topbar__links a { color: #cfe0f0; display: flex; align-items: center; gap: 7px; }
.topbar__links a:hover { color: #fff; }
.topbar__status { display: flex; align-items: center; gap: 8px; opacity: .85; }
.topbar__dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.2); flex: none;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s, background .3s;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(10,37,64,.09); background: rgba(255,255,255,.96); }
.site-header__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-header__logo { display: flex; align-items: center; }
.site-header__logo img { height: 72px; width: auto; display: block; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: var(--ink-soft); font-weight: 600; font-size: 15px; }
.main-nav a:hover { color: var(--blue); }
.main-nav a[aria-current="page"] { color: var(--blue); font-weight: 700; }
.main-nav a.is-red[aria-current="page"] { color: var(--red); }
.site-header__actions { display: flex; align-items: center; gap: 14px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 11px 20px; border-radius: 11px;
  border: none; cursor: pointer; font-family: inherit;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn--primary { background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: #fff; box-shadow: 0 6px 18px rgba(14,109,182,.28); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(14,109,182,.4); color: #fff; }
.btn--warm { background: linear-gradient(135deg, var(--red), var(--orange)); color: #fff; box-shadow: 0 10px 30px rgba(224,57,43,.35); }
.btn--warm:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(224,57,43,.5); color: #fff; }
.btn--ghost { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.16); color: #fff; }
.btn--lg { font-size: 16px; padding: 15px 26px; border-radius: var(--radius-btn); }
.btn--white { background: #fff; color: var(--navy); font-weight: 800; font-size: 17px; padding: 17px 30px; border-radius: 14px; box-shadow: 0 14px 34px rgba(0,0,0,.3); }
.btn--white:hover { transform: translateY(-3px); color: var(--navy); }

.burger {
  display: none; background: #f1f6fa; border: none; border-radius: 10px;
  padding: 9px; cursor: pointer;
}
.mobile-menu { overflow: hidden; max-height: 0; transition: max-height .35s ease; background: #fff; }
.mobile-menu.is-open { max-height: 480px; }
.mobile-menu__inner {
  padding: 8px 28px 22px; display: flex; flex-direction: column; gap: 2px;
  border-top: 1px solid var(--line-soft);
}
.mobile-menu__inner a { padding: 13px 0; color: var(--ink); font-weight: 600; border-bottom: 1px solid #f2f5f8; }
.mobile-menu__inner a[aria-current="page"] { color: var(--blue); font-weight: 700; }
.mobile-menu__inner .btn { margin-top: 12px; border-bottom: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: radial-gradient(1100px 520px at 80% -20%, var(--navy-mid) 0%, var(--navy) 50%, var(--navy-dark) 100%);
}
.hero--home { background: radial-gradient(1200px 600px at 78% -10%, var(--navy-mid) 0%, var(--navy) 45%, var(--navy-dark) 100%); }
.hero--warm { background: radial-gradient(1100px 520px at 80% -20%, #7a2318 0%, var(--navy) 55%, var(--navy-dark) 100%); }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero__blob--cold { top: -100px; left: -60px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(79,179,224,.32), transparent 70%); }
.hero__blob--warm { bottom: -160px; right: 8%; width: 460px; height: 460px; background: radial-gradient(circle, rgba(224,57,43,.28), transparent 70%); filter: blur(12px); }
.hero__blob--warm-top { top: -100px; right: -40px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(224,57,43,.35), transparent 70%); filter: blur(12px); }
.hero__grid {
  position: relative; max-width: var(--maxw); margin: 0 auto; padding: 56px 28px 72px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center;
}
.hero__grid--home { padding: 84px 28px 92px; grid-template-columns: 1.05fr .95fr; gap: 56px; }
.hero__grid--contact { grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #8fb4d4; font-weight: 600; margin-bottom: 22px; }
.breadcrumb ol { display: flex; align-items: center; gap: 8px; list-style: none; }
.breadcrumb a { color: #8fb4d4; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current="page"] { color: #fff; }
.hero--warm .breadcrumb a { color: #e0a89f; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 15px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 22px;
}
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); flex: none; }
.hero__badge-dot--warm { background: var(--orange); }
.hero__badge-dot--duo { background: linear-gradient(90deg, var(--sky), var(--red)); }
.hero h1 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(34px, 4.6vw, 54px); line-height: 1.05; letter-spacing: -1.3px; margin-bottom: 20px;
}
.hero--home h1 { font-size: clamp(38px, 5vw, 62px); line-height: 1.04; letter-spacing: -1.5px; margin-bottom: 22px; }
.hero__gradient-text {
  background: linear-gradient(100deg, #7FC9E8, var(--sky) 35%, #ff8a4c 75%, var(--red));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% auto; animation: shimmer 6s linear infinite alternate;
}
.hero__lead { font-size: 18px; line-height: 1.6; color: #c3d4e4; max-width: 520px; margin-bottom: 30px; }
.hero--home .hero__lead { font-size: 19px; margin-bottom: 34px; }
.hero--warm .hero__lead { color: #e8d3ce; }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__media {
  border-radius: 24px; overflow: hidden; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.12);
}
.hero__media img { display: block; width: 100%; height: 400px; object-fit: cover; }
.hero__media--frame { border-radius: 18px; box-shadow: 0 18px 44px rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.1); }
.hero__media--frame img { height: 420px; }
.hero__media-wrap { position: relative; }
.hero__stat-card {
  position: absolute; bottom: -26px; left: -26px; background: #fff; color: var(--ink);
  border-radius: 18px; padding: 18px 22px; box-shadow: 0 24px 50px rgba(0,0,0,.25);
  display: flex; align-items: center; gap: 16px; animation: floaty 6s ease-in-out infinite;
}
.hero__stat-card .num { font-family: var(--font-head); font-weight: 800; font-size: 20px; }
.hero__stat-card .lbl { font-size: 13px; color: var(--gray); font-weight: 600; }
.icon-tile {
  width: 50px; height: 50px; border-radius: 14px; flex: none;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: grid; place-items: center;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; }
.trust-row__item { display: flex; align-items: center; gap: 10px; }
.trust-badge { background: #fff; border-radius: 12px; padding: 8px 12px; display: flex; align-items: center; gap: 10px; }
.trust-badge__ring {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--navy);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.trust-badge__text { font-family: var(--font-head); line-height: 1; color: var(--navy); text-align: left; }
.trust-badge__text .l1 { font-weight: 800; font-size: 13px; letter-spacing: -.2px; }
.trust-badge__text .l2 { font-weight: 700; font-size: 10px; letter-spacing: 1px; opacity: .75; margin-top: 4px; }
.trust-row__caption { font-size: 13.5px; line-height: 1.3; color: #c3d4e4; }
.trust-row__caption strong { color: #fff; }

/* Kontakt-Infos (dunkler Hintergrund) */
.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-list__item { display: flex; gap: 16px; align-items: center; color: #fff; }
.contact-list__item--top { align-items: flex-start; }
.contact-list__icon {
  width: 48px; height: 48px; border-radius: 13px; flex: none;
  background: linear-gradient(135deg, var(--blue), var(--sky)); display: grid; place-items: center;
}
.contact-list__icon--outline { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); }
.contact-list__label { font-size: 13px; color: #8fa8bf; font-weight: 600; }
.contact-list__value { font-size: 17px; font-weight: 700; }
.contact-list__text { font-size: 14.5px; line-height: 1.6; color: #c3d4e4; }
.contact-list__text strong { display: block; font-weight: 700; color: #fff; margin-bottom: 2px; }

/* ---------- Stats-Leiste ---------- */
.stats-band { background: var(--navy); }
.stats-grid {
  background: linear-gradient(180deg, #fff, #f8fbfd); border-radius: 16px;
  transform: translateY(-34px); box-shadow: 0 12px 32px rgba(10,37,64,.09);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.stats-grid__cell { padding: 22px; text-align: center; border-right: 1px solid var(--line-soft); }
.stats-grid__cell:last-child { border-right: none; }
.stats-grid__num {
  font-family: var(--font-head); font-weight: 800; font-size: 30px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats-grid__num--warm { background: linear-gradient(135deg, var(--red), var(--orange)); -webkit-background-clip: text; background-clip: text; }
.stats-grid__label { font-size: 14.5px; font-weight: 600; color: var(--gray); margin-top: 4px; }

/* ---------- Sektionen ---------- */
.section { padding: 80px 28px; max-width: var(--maxw); margin: 0 auto; }
.section--flush-bottom { padding-bottom: 0; }
.section--services { padding: 40px 28px 90px; }
.section-head { max-width: 660px; margin-bottom: 48px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; margin-bottom: 52px; }
.eyebrow {
  font-weight: 700; color: var(--blue); letter-spacing: 1.5px; font-size: 13.5px;
  text-transform: uppercase; margin-bottom: 12px;
}
.eyebrow--warm { color: var(--red); }
.section-head h2, .split h2, .cta-band h2 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -1px; line-height: 1.1;
}
.section-head--xl h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.08; }
.section-head p { font-size: 17.5px; color: var(--gray); line-height: 1.6; margin-top: 16px; }

/* ---------- Karten ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  display: block; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 28px; position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover, .card:focus-visible { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(10,37,64,.12); border-color: #d6e4ef; }
a.card { color: inherit; }
a.card:hover { color: inherit; }
.card--service { padding: 30px 26px; }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, #e6f4fb, #cfe8f6);
  display: grid; place-items: center; margin-bottom: 22px;
}
.card__icon--warm { background: linear-gradient(135deg, #fdebe5, #fbd9cd); }
.card__num {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, #e6f4fb, #cfe8f6); display: grid; place-items: center;
  margin-bottom: 18px; color: var(--blue); font-family: var(--font-head); font-weight: 800; font-size: 20px;
}
.card__num--warm { background: linear-gradient(135deg, #fdebe5, #fbd9cd); color: var(--red); }
.card h3 { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.card--service h3 { font-size: 21px; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--gray); line-height: 1.6; }
.card--service p { margin-bottom: 18px; }
.card__link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 700; font-size: 14.5px; }
.card__link--warm { color: var(--red); }
.card__flag {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--red), var(--orange)); color: #fff;
  font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 8px; letter-spacing: .4px;
}

/* Miet-Karten (Kühlanhänger) */
.rent-card { display: flex; flex-direction: column; padding: 0; }
.rent-card img { display: block; width: 100%; height: 190px; object-fit: cover; }
.rent-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.rent-card__tags { display: flex; align-items: center; gap: 10px; }
.rent-card__size {
  background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 800;
  font-size: 12px; letter-spacing: 1px; padding: 5px 10px; border-radius: 7px;
}
.rent-card__aud { font-size: 13px; font-weight: 700; color: var(--blue); }
.rent-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 23px; letter-spacing: -.3px; margin: 0; }
.rent-card > .rent-card__body > p { font-size: 15px; line-height: 1.65; }
.check-list { display: flex; flex-direction: column; gap: 9px; margin-top: 2px; list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); font-weight: 600; }
.check-list svg { flex-shrink: 0; margin-top: 2px; }
.check-list--lg li { font-size: 15.5px; align-items: center; }
.check-list--lg { gap: 14px; }
.rent-card__cta { margin-top: auto; padding-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 700; font-size: 15px; }

/* ---------- Split-Sektionen ---------- */
.split-band { background: linear-gradient(180deg, var(--bg-soft), #eef5fa); padding: 80px 28px; }
.split-band--warm { background: linear-gradient(180deg, #fdf5f2, #faeae4); }
.split {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split--why { grid-template-columns: .95fr 1.05fr; gap: 60px; }
.split__media { border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(10,37,64,.16); }
.split__media img { display: block; width: 100%; height: 420px; object-fit: cover; }
.split h2 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.8px; line-height: 1.12; margin-bottom: 18px; }
.split__text { font-size: 16.5px; color: var(--ink-muted); line-height: 1.65; margin-bottom: 26px; }
.split__badge {
  display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid #f5d6cc;
  color: var(--red); padding: 7px 15px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-bottom: 18px;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-grid__item { display: flex; gap: 13px; align-items: flex-start; }
.why-grid__icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), var(--sky)); display: grid; place-items: center;
}
.why-grid__item h3 { font-weight: 700; font-size: 15.5px; margin-bottom: 2px; font-family: inherit; }
.why-grid__item p { font-size: 13.5px; color: var(--gray); line-height: 1.5; }

.badge-float {
  position: absolute; bottom: 24px; right: -20px; background: #fff; border-radius: 18px;
  padding: 18px 22px; box-shadow: 0 24px 50px rgba(10,37,64,.18); text-align: center;
}
.badge-float__row { display: flex; align-items: center; gap: 10px; justify-content: center; margin: 0 auto 12px; }
.badge-float__note { font-size: 12.5px; font-weight: 700; color: var(--blue); letter-spacing: .5px; }

/* ---------- Schritte ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.step__num {
  width: 52px; height: 52px; border-radius: 15px; color: #fff; flex: none;
  font-family: var(--font-head); font-weight: 800; font-size: 22px; display: grid; place-items: center;
}
.step__num--1 { background: var(--navy); }
.step__num--2 { background: var(--blue); }
.step__num--3 { background: var(--blue-light); }
.step__num--4 { background: linear-gradient(135deg, var(--red), var(--orange)); }
.step__line { flex: 1; height: 2px; background: linear-gradient(90deg, #cfe8f6, transparent); }
.step__line--warm { background: linear-gradient(90deg, #fbd9cd, transparent); }
.step h3 { font-family: var(--font-head); font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--gray); line-height: 1.6; }

/* ---------- Chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; list-style: none; }
.chip-row li {
  background: #fff; border: 1px solid #e2e9f0; border-radius: 100px;
  padding: 12px 22px; font-weight: 600; font-size: 15px; color: var(--ink-soft);
}
.chip-row--warm li { border-color: #f0dcd6; }

/* ---------- Recruiting / CTA-Bänder ---------- */
.recruit-band {
  position: relative; border-radius: 26px; overflow: hidden;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 55%, #8a2a20 130%);
  color: #fff; padding: 52px 56px;
  display: grid; grid-template-columns: 1.4fr .9fr; gap: 40px; align-items: center;
}
.recruit-band__glow {
  position: absolute; top: -80px; right: 20%; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,57,43,.35), transparent 70%); filter: blur(10px);
}
.recruit-band__badge {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); padding: 7px 15px; border-radius: 100px;
  font-size: 13px; font-weight: 700; letter-spacing: .5px; margin-bottom: 20px;
}
.recruit-band h2 {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -.5px; line-height: 1.1; margin-bottom: 16px;
}
.recruit-band p { font-size: 16.5px; color: #c3d4e4; line-height: 1.6; max-width: 560px; }
.recruit-band > div { position: relative; }
.recruit-band__cta { text-align: center; }

.cta-band {
  position: relative; border-radius: 26px; overflow: hidden; color: #fff;
  background: radial-gradient(700px 400px at 80% 0, var(--navy-mid), var(--navy));
  padding: 56px; text-align: center;
}
.cta-band--warm { background: radial-gradient(700px 400px at 80% 0, #7a2318, var(--navy)); }
.cta-band__glow {
  position: absolute; bottom: -120px; left: 30%; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,179,224,.3), transparent 70%); filter: blur(12px);
}
.cta-band--warm .cta-band__glow { background: radial-gradient(circle, rgba(224,57,43,.32), transparent 70%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.8px; margin-bottom: 14px; }
.cta-band p { font-size: 17px; color: #c3d4e4; max-width: 520px; margin: 0 auto 28px; }
.cta-band--warm p { color: #e8d3ce; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Kontakt-Sektion (dunkel) ---------- */
.contact-band { background: var(--navy); color: #fff; padding: 90px 28px; }
.contact-band__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px;
}
.contact-band .eyebrow { color: var(--sky); }
.contact-band h2 {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -1px; line-height: 1.08; margin-bottom: 18px;
}
.contact-band__lead { font-size: 17px; color: #c3d4e4; line-height: 1.6; margin-bottom: 36px; }

/* ---------- Formular ---------- */
.form-card { background: #fff; border-radius: var(--radius-card); padding: 36px; box-shadow: 0 30px 70px rgba(0,0,0,.35); color: var(--ink); }
.form-card h2, .form-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--ink); margin-bottom: 6px; }
.form-card__note { color: var(--gray); font-size: 14.5px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { margin-bottom: 14px; }
.form-field--last { margin-bottom: 20px; }
.form-field label, .form-row label { display: block; font-size: 13px; font-weight: 700; color: var(--ink-soft); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea,
.form-row input {
  width: 100%; padding: 12px 14px; border: 1.5px solid #e0e7ee; border-radius: 11px;
  font-family: inherit; font-size: 15px; color: var(--ink); outline: none;
  background: #fff; transition: border-color .2s;
}
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus, .form-row input:focus { border-color: var(--blue); }
.form-submit {
  width: 100%; background: linear-gradient(135deg, var(--red), var(--orange)); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 16.5px; padding: 15px;
  border: none; border-radius: var(--radius-btn); cursor: pointer;
  box-shadow: 0 10px 28px rgba(224,57,43,.35); transition: transform .2s, box-shadow .2s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(224,57,43,.5); }
.form-privacy { font-size: 12px; color: #93a3b4; text-align: center; margin-top: 14px; }
.form-privacy a { text-decoration: underline; }
.form-success { text-align: center; padding: 40px 10px; }
.form-success__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: grid; place-items: center; margin: 0 auto 22px;
}
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { color: var(--gray); font-size: 16px; line-height: 1.6; }
.form-error { display: none; background: #fdecea; border: 1px solid #f5c6c0; color: #a02318; border-radius: 11px; padding: 12px 14px; font-size: 14px; margin-bottom: 14px; }
.form-error.is-visible { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #8fa8bf; padding: 56px 28px 30px; }
.site-footer__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer__logo { background: #fff; display: inline-block; padding: 12px 16px; border-radius: 14px; margin-bottom: 18px; }
.site-footer__logo img { height: 46px; width: auto; display: block; }
.site-footer__about { font-size: 14.5px; line-height: 1.6; max-width: 300px; }
.site-footer h2 { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 15px; margin-bottom: 16px; }
.site-footer__links { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; list-style: none; }
.site-footer a { color: #8fa8bf; }
.site-footer a:hover { color: #fff; }
.site-footer address { font-style: normal; font-size: 14.5px; line-height: 1.8; }
.site-footer address .tel { margin-top: 12px; }
.site-footer__bottom {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 13.5px;
}
.site-footer__legal { display: flex; gap: 22px; list-style: none; }

/* ---------- Cookie-Consent ---------- */
.consent-backdrop { position: fixed; inset: 0; background: rgba(7,26,46,.45); z-index: 90; }
.consent {
  position: fixed; z-index: 100; left: 50%; bottom: 24px; transform: translateX(-50%);
  width: min(560px, calc(100vw - 32px));
  background: #fff; border-radius: 18px; box-shadow: 0 30px 70px rgba(7,26,46,.35);
  padding: 26px 28px; color: var(--ink);
}
.consent h2 { font-family: var(--font-head); font-weight: 800; font-size: 18px; margin-bottom: 8px; }
.consent p { font-size: 14px; color: var(--gray); line-height: 1.55; margin-bottom: 16px; }
.consent p a { text-decoration: underline; }
.consent__options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.consent__option { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.consent__option input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--blue); }
.consent__option .t { font-weight: 700; color: var(--ink-soft); }
.consent__option .d { color: var(--gray-light); font-size: 13px; }
.consent__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.consent__actions .btn { flex: 1 1 auto; justify-content: center; font-size: 14.5px; padding: 12px 16px; }
.btn--outline { background: #fff; color: var(--ink-soft); border: 1.5px solid #dbe4ec; }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.consent-reopen {
  position: fixed; left: 18px; bottom: 18px; z-index: 80;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 16px; font-size: 13px; font-weight: 700; color: var(--ink-soft);
  box-shadow: 0 8px 24px rgba(10,37,64,.14); cursor: pointer; font-family: inherit;
}
.consent-reopen:hover { color: var(--blue); }

/* Karten-/Einbettungs-Platzhalter (bis Consent erteilt) */
.embed-consent {
  border-radius: var(--radius-card); border: 1.5px dashed #c7d6e2; background: var(--bg-soft);
  padding: 40px 28px; text-align: center; color: var(--gray);
}
.embed-consent p { font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; }
.map-embed { border-radius: var(--radius-card); overflow: hidden; box-shadow: 0 20px 50px rgba(10,37,64,.12); }
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Animationen ---------- */
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Inhaltsseiten (Impressum/Datenschutz) ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 64px 28px 90px; }
.legal h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 4vw, 42px); letter-spacing: -1px; margin-bottom: 28px; }
.legal h2 { font-family: var(--font-head); font-weight: 700; font-size: 22px; margin: 36px 0 12px; }
.legal h3 { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin: 24px 0 8px; }
.legal p, .legal li { font-size: 15.5px; color: var(--ink-muted); line-height: 1.7; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal .placeholder { background: #fff8e6; border: 1px dashed #e8c96a; border-radius: 8px; padding: 2px 8px; color: #8a6d1a; font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .burger { display: inline-flex; }
  .hero__grid, .hero__grid--home, .hero__grid--contact { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid__cell:nth-child(2) { border-right: none; }
  .stats-grid__cell:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .card-grid, .card-grid--4 { grid-template-columns: 1fr 1fr; }
  .split, .split--why { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .recruit-band { grid-template-columns: 1fr; padding: 40px 32px; }
  .contact-band__grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .badge-float { right: 8px; }
}
@media (max-width: 560px) {
  .card-grid, .card-grid--4, .steps-grid, .why-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .hero__stat-card { left: 8px; bottom: -20px; }
  .site-header__logo img { height: 56px; }
}

/* ---------- Druckansicht ---------- */
@media print {
  .topbar, .site-header, .site-footer, .consent, .consent-reopen, .consent-backdrop, .cta-band, .recruit-band { display: none !important; }
  body { color: #000; }
}
