/* ==========================================================================
   Winterdienst-Streudienst.ch – Corporate Design
   Angelehnt an das Andonov-Cooperation-Design:
   Navy #0D1B2A · Akzentblau #2F9BE6/#5BBAFF · Platinum #F5F8FB · Poppins
   ========================================================================== */

:root {
  /* Farben */
  --navy-900: #0D1B2A;
  --navy-800: #162B42;
  --navy-700: #1F3A56;
  --navy-600: #2E4A6B;
  --steel:    #415A77;
  --accent:       #2F9BE6;
  --accent-light: #5BBAFF;
  --accent-dark:  #1E7FC4;
  --accent-muted: rgba(91, 186, 255, 0.15);
  --platinum: #F5F8FB;
  --ink:      #2C3E50;
  --ink-soft: #4A5568;
  --muted:    #5B6B7F;
  --line:        rgba(13, 27, 42, 0.08);
  --line-accent: rgba(91, 186, 255, 0.22);
  --white:    #FFFFFF;
  --success:  #1E7F4F;
  --error:    #B4232A;

  /* Typografie */
  --font-sans: "Poppins", "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
  --fs-sm: 0.9rem;
  --fs-base: 1rem;
  --fs-lg: 1.15rem;

  /* Layout */
  --container: 1160px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-card: 0 2px 16px rgba(13, 27, 42, 0.06);
  --shadow-card-lg: 0 8px 40px rgba(13, 27, 42, 0.12);
  --shadow-navy: 0 8px 32px rgba(13, 27, 42, 0.25);
  --shadow-accent: 0 4px 24px rgba(91, 186, 255, 0.30);
}

/* Reset & Basis */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 300;
  line-height: 1.78;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--accent-dark); }
h1, h2, h3, h4 { line-height: 1.22; color: var(--navy-900); margin: 0 0 0.6em; font-weight: 600; overflow-wrap: break-word; }
h1 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.18rem; }
p  { margin: 0 0 1em; }
strong { font-weight: 600; }
p, li, a { overflow-wrap: break-word; }

/* Barrierefreiheit */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Container & Sektionen */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4.5rem 0; }
.section--tint { background: var(--platinum); }
.section__lead { max-width: 720px; color: var(--ink-soft); font-size: var(--fs-lg); }

/* Eyebrow & Akzentlinie (Andonov-Stil) */
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.9rem;
}
.eyebrow + h1::after,
.eyebrow + h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--accent);
  opacity: 0.65;
  margin-top: 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}
.header__logo img, .header__logo svg { height: 50px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a {
  text-decoration: none;
  color: var(--navy-900);
  font-weight: 500;
  font-size: 0.92rem;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent-dark); }
.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--navy-900);
}

/* Buttons (Andonov-Stil: kantig, Versalien, Letterspacing) */
.btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 0.95rem 1.7rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
              box-shadow 0.2s ease, transform 0.15s ease;
}
.btn--primary {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: var(--shadow-accent);
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn--primary:hover::after { left: 130%; }
@media (prefers-reduced-motion: reduce) { .btn--primary::after { display: none; } }
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(47, 155, 230, 0.40);
}
.nav a.btn--primary { color: #fff; padding: 0.75rem 1.4rem; }
.nav a.btn--primary:hover { color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent);
}
.btn--ghost:hover { background: var(--accent); color: #fff; }
.btn--light {
  background: #fff;
  color: var(--navy-900);
}
.btn--light:hover { background: var(--platinum); }
.btn--lg { padding: 1.05rem 2.2rem; font-size: 0.85rem; }

/* Hero (dunkles Navy wie Andonov) */
.hero {
  position: relative;
  overflow: hidden;
  perspective: 900px;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(47, 155, 230, 0.22) 0%, rgba(13, 27, 42, 0) 60%),
    linear-gradient(135deg, #0D1B2A 0%, #14293C 45%, #0D1B2A 100%);
  color: #DEE8F2;
  padding: 5rem 0 4.5rem;
}
.hero .container { position: relative; z-index: 2; }
.hero__snow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__flake3d {
  position: absolute;
  top: 10%;
  right: 4%;
  width: clamp(140px, 17vw, 280px);
  z-index: 0;
  opacity: 0.14;
  pointer-events: none;
  transform-style: preserve-3d;
  animation: flake-spin 28s linear infinite;
}
.hero__flake3d svg { width: 100%; height: auto; }
@keyframes flake-spin {
  0%   { transform: translateY(0) rotate3d(0.4, 1, 0.15, 0deg); }
  50%  { transform: translateY(-18px) rotate3d(0.4, 1, 0.15, 180deg); }
  100% { transform: translateY(0) rotate3d(0.4, 1, 0.15, 360deg); }
}
@media (max-width: 960px) { .hero__flake3d { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero__flake3d { animation: none; } }
.hero .eyebrow { color: var(--accent-light); }
.hero h1 { color: #fff; }
.hero h1 span { color: var(--accent-light); }
.hero .eyebrow + h1::after { background: var(--accent-light); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.hero__lead { font-size: 1.12rem; color: #B9C8D8; max-width: 580px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.8rem 0 1.2rem; }
.hero .btn--ghost { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.hero .btn--ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.hero__note { font-size: var(--fs-sm); color: #9FB0C2; }
.hero__note strong { color: var(--accent-light); }
.hero a:not(.btn) { color: var(--accent-light); }

.hero__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-navy);
  padding: 2rem;
  color: var(--ink);
}
.hero__card h2 { font-size: 1.1rem; margin-bottom: 1.2rem; color: var(--navy-900); }
.hero__card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.hero__card li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink-soft); font-size: 0.97rem; }
.check {
  flex: none;
  width: 1.45rem; height: 1.45rem;
  border-radius: 50%;
  background: var(--accent-muted);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

/* Zahlen / Trustbar */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.2rem 0.8rem; }
.stat__value { font-size: 2rem; font-weight: 600; color: var(--accent-dark); }
.stat__label { color: var(--muted); font-size: var(--fs-sm); }

/* Karten-Raster */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover { box-shadow: var(--shadow-card-lg); transform: translateY(-2px); }
.card__icon {
  width: 3rem; height: 3rem;
  border-radius: 8px;
  background: var(--accent-muted);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.card__icon svg { width: 1.5rem; height: 1.5rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card p { color: var(--ink-soft); margin-bottom: 0; font-size: 0.97rem; }

/* Prozess */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-card);
}
.step__num {
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 600;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.step p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

/* Zitate */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
}
.quote blockquote { margin: 0 0 1rem; color: var(--ink); font-style: italic; font-size: 0.97rem; }
.quote figcaption { color: var(--muted); font-size: var(--fs-sm); }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.faq summary {
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-weight: 500;
  color: var(--navy-900);
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent);
}
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 1.4rem 1.2rem; color: var(--ink-soft); }

/* CTA-Band */
.cta-band {
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(47, 155, 230, 0.25) 0%, rgba(13, 27, 42, 0) 60%),
    linear-gradient(135deg, var(--navy-900) 0%, #14293C 55%, var(--navy-800) 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 3rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-navy);
}
.cta-band h2 { color: #fff; margin: 0 0 0.3rem; }
.cta-band p { color: #B9C8D8; margin: 0; }

/* Formular */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  padding: 2.2rem;
  max-width: 720px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 500; font-size: var(--fs-sm); color: var(--navy-900); }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  background: var(--platinum);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.form-field { min-width: 0; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid var(--accent-muted);
  border-color: var(--accent);
}
.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--ink-soft); }
.form-consent input { margin-top: 0.3rem; width: 1.1rem; height: 1.1rem; }
.form-status { margin-top: 1rem; font-weight: 500; }
.form-status--ok { color: var(--success); }
.form-status--err { color: var(--error); }

/* Footer */
.footer {
  background: var(--navy-900);
  color: #B9C8D8;
  padding: 3.5rem 0 2rem;
  margin-top: 4rem;
}
.footer a { color: #E6EEF5; text-decoration: none; font-size: 0.93rem; }
.footer a:hover { color: var(--accent-light); text-decoration: underline; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer h3 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer__brand p { font-size: var(--fs-sm); max-width: 340px; }
.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--fs-sm);
}

/* Sticky Kontaktleiste (immer sichtbar am unteren Rand) */
body { padding-bottom: 60px; }
.contact-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: flex;
  align-items: stretch;
  min-height: 60px;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line-accent);
  padding-bottom: env(safe-area-inset-bottom);
}
.contact-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.contact-bar__phone { color: #fff; }
.contact-bar__phone svg { width: 1.15rem; height: 1.15rem; flex: none; }
.contact-bar__phone:hover { color: var(--accent-light); background: rgba(255, 255, 255, 0.06); }
.contact-bar__cta { background: var(--accent-dark); color: #fff; }
.contact-bar__cta:hover { background: var(--accent); }
@media print { .contact-bar { display: none; } body { padding-bottom: 0; } }

/* Avatar-Strip (CTA-Band) */
.avatar-strip { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.3rem; }
.avatar-strip__imgs { display: flex; }
.avatar-strip__imgs img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: var(--shadow-card);
}
.avatar-strip__imgs img + img { margin-left: -12px; }
.avatar-strip p { margin: 0; color: #B9C8D8; font-size: var(--fs-sm); }
.avatar-strip p strong { color: #fff; }

/* Cookie-Banner */
.cookie-banner {
  position: fixed;
  inset-inline: 1rem;
  bottom: calc(60px + 1rem);
  z-index: 200;
  max-width: 560px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  padding: 1.6rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.cookie-banner p { font-size: var(--fs-sm); color: var(--ink-soft); }
.cookie-banner__options { display: grid; gap: 0.5rem; margin: 1rem 0; font-size: var(--fs-sm); }
.cookie-banner__options label { display: flex; gap: 0.6rem; align-items: center; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.cookie-banner .btn { padding: 0.6rem 1.2rem; font-size: 0.75rem; }

/* Ratgeber-Artikel */
.article { max-width: 780px; }
.article h2 { margin-top: 2.4rem; font-size: 1.45rem; }
.article h3 { margin-top: 1.8rem; font-size: 1.12rem; }
.article p, .article li { color: var(--ink-soft); }
.article ul, .article ol { padding-left: 1.4rem; display: grid; gap: 0.45rem; margin: 0 0 1.2em; }
.article strong { color: var(--navy-900); }
.article table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.2rem 0;
  font-size: 0.93rem;
  display: block;
  overflow-x: auto;
}
.article th, .article td { border: 1px solid var(--line); padding: 0.65rem 0.9rem; text-align: left; color: var(--ink-soft); vertical-align: top; min-width: 9rem; }
.article th { background: var(--platinum); color: var(--navy-900); }
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; color: #9FB0C2; font-size: var(--fs-sm); margin: 0.4rem 0 0; }
.cta-inline {
  background: var(--platinum);
  border: 1px solid var(--line-accent);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  margin: 2.4rem 0;
}
.cta-inline h3 { margin-top: 0; }
.cta-inline p { color: var(--ink-soft); }
.hub-card { display: flex; flex-direction: column; text-decoration: none; }
.hub-card h3 { color: var(--navy-900); }
.hub-card:hover h3 { color: var(--accent-dark); }
.hub-card p { color: var(--ink-soft); }
.hub-card .hub-card__tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-muted);
  border-radius: 4px;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.9rem;
}
.hub-card .hub-card__more { margin-top: auto; padding-top: 0.8rem; color: var(--accent-dark); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* Rechtstexte */
.legal { max-width: 780px; }
.legal h2 { margin-top: 2.2rem; font-size: 1.3rem; }
.legal p, .legal li { color: var(--ink-soft); }

/* Scroll-Reveal – nur aktiv, wenn JS läuft (html.js), sonst immer sichtbar */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; }
}

/* 3D-Tilt (Karten folgen der Maus; nur Geräte mit Hover und feinem Zeiger) */
.tilt { will-change: transform; transform-style: preserve-3d; }
html.js .reveal.is-visible.tilt { transition: transform 0.15s ease, box-shadow 0.25s ease; }

/* Mit aktivem GSAP übernehmen Tweens die Reveals – CSS-Transitions abschalten */
html.gsap .reveal { transition: none; }

/* Schneepflug am unteren Bildschirmrand */
.plow-runner {
  position: fixed;
  bottom: calc(60px + env(safe-area-inset-bottom));
  left: 0;
  z-index: 140;
  width: 130px;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(13, 27, 42, 0.25));
}
.plow-runner svg { width: 100%; height: auto; display: block; }
.plow-beacon { animation: beacon-blink 0.7s steps(2, start) infinite; }
@keyframes beacon-blink {
  0%, 55% { fill: #E8650D; }
  56%, 100% { fill: #FFB566; }
}
@media (max-width: 640px) { .plow-runner { width: 92px; } }

/* Weihnachtsschlitten */
.santa-flyer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 145;
  width: clamp(180px, 24vw, 300px);
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(13, 27, 42, 0.35));
}
.santa-flyer svg { width: 100%; height: auto; display: block; }

/* Easter-Egg-Toast */
.egg-toast {
  position: fixed;
  left: 50%;
  bottom: calc(60px + 1.2rem + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(12px);
  z-index: 210;
  max-width: min(92vw, 460px);
  background: rgba(13, 27, 42, 0.96);
  color: #fff;
  border: 1px solid var(--line-accent);
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  font-size: 0.92rem;
  text-align: center;
  box-shadow: var(--shadow-navy);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.egg-toast--show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Bild-Text-Sektionen (Einsatzfotos) */
.media-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.media-split--flip { grid-template-columns: 1.1fr 0.9fr; }
.media-split--flip .media-split__img { order: 2; }
.media-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-lg);
  border: 1px solid var(--line);
  background: var(--platinum);
}
.media-split__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.media-split__body p { color: var(--ink-soft); }

/* Founder (Andonov-Stil: Portrait mit Namensbadge) */
.founder-figure { position: relative; padding-bottom: 1.6rem; }
.founder-figure .media-split__img img { aspect-ratio: 4 / 3.2; object-position: center top; }

/* Areal-Werke-Branding */
.footer__product {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
  background: #fff;
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  text-decoration: none !important;
  box-shadow: var(--shadow-card);
}
.footer__product img { width: 92px; height: auto; }
.footer__product span { color: var(--muted); font-size: 0.78rem; line-height: 1.4; }
.footer__product strong { color: var(--navy-900); font-size: 0.86rem; }
.footer__product:hover strong { color: var(--accent-dark); }

.brand-strip {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.2rem 2.5rem;
}
.brand-strip img { width: clamp(140px, 16vw, 210px); height: auto; flex: none; }
.brand-strip h2 { font-size: 1.4rem; }
.brand-strip p { margin-bottom: 0; }
@media (max-width: 700px) {
  .brand-strip { flex-direction: column; align-items: flex-start; gap: 1.4rem; padding: 1.6rem; }
}
.founder-badge {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line-accent);
  border-radius: 8px;
  padding: 0.55rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.founder-badge strong {
  display: block;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.founder-badge span { color: var(--muted); font-size: 0.78rem; }

/* Link-Hub (Leistungen / Regionen – interne Verlinkung) */
.linkhub { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.linkhub a {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem 1.2rem;
  text-decoration: none;
  color: var(--navy-900);
  font-weight: 500;
  font-size: 0.93rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.linkhub a:hover { border-color: var(--accent); box-shadow: var(--shadow-card-lg); color: var(--accent-dark); }
.linkhub a span { display: block; font-weight: 300; color: var(--muted); font-size: 0.82rem; margin-top: 0.15rem; }

/* Responsive */
@media (max-width: 1080px) {
  .nav { gap: 1.1rem; }
  .nav a { font-size: 0.88rem; }
}
@media (max-width: 960px) {
  .section { padding: 3.5rem 0; }
  .nav {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-card-lg);
  }
  .nav[hidden] { display: none; }
  .nav__toggle { display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .grid-3, .quotes, .steps { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .linkhub { grid-template-columns: 1fr 1fr !important; }
  .media-split, .media-split--flip { grid-template-columns: 1fr; gap: 2rem; }
  .media-split--flip .media-split__img { order: 0; }
  .media-split__img img { aspect-ratio: 4 / 3; }
}
@media (max-width: 640px) {
  .section { padding: 3rem 0; }
  h1, h2, h3 { hyphens: auto; }
  .grid-3, .grid-4, .quotes, .steps { grid-template-columns: 1fr; }
  .linkhub { grid-template-columns: 1fr !important; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 2.2rem 1.6rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero { padding: 3.5rem 0 3rem; }
  .btn--lg { width: 100%; }
  .hero__cta { flex-direction: column; align-items: stretch; }
}

/* Referenzen / Partner-Logos */
.ref-block { margin-top: 3.2rem; padding-top: 2.4rem; border-top: 1px solid rgba(13, 27, 42, 0.08); }
.ref-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.2rem 3.2rem;
  margin-top: 1.4rem;
}
.ref-logos img {
  height: 44px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}
.ref-logos img:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }
@media (max-width: 640px) {
  .ref-logos { gap: 1.6rem 2rem; }
  .ref-logos img { height: 34px; max-width: 160px; }
}
.ref-logos a { display: inline-flex; line-height: 0; }

/* Kontaktformular: Fehlerstatus & Honeypot */
.form-status--error { color: #C0392B; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Karriere: Stellen-Karten */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
@media (max-width: 900px) {
  .jobs-grid { grid-template-columns: 1fr; }
}
.job-card h3 { margin-bottom: 0.4rem; }
.job-card h4 {
  margin: 1.1rem 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.job-card ul { margin: 0; padding-left: 1.1rem; }
.job-card ul li { margin-bottom: 0.35rem; }
.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 0.4rem;
}
.job-card__meta span {
  background: var(--platinum);
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.job-card__cta { margin-top: 1.3rem; }

/* Karriere: klickbare Stellen-Karten + Detailseiten */
.job-card--link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.job-card--link:hover { transform: translateY(-3px); }
.job-card--link .hub-card__more { margin-top: auto; padding-top: 1rem; }
.job-card__meta--hero { margin: 0.4rem 0 1.2rem; }
.job-card__meta--hero span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.breadcrumb-nav { margin: 0 0 1.2rem; font-size: 0.9rem; }
.breadcrumb-nav a { color: var(--accent-soft, #5BBAFF); text-decoration: none; }
.breadcrumb-nav a:hover { text-decoration: underline; }
.job-list { padding-left: 1.2rem; }
.job-list li { margin-bottom: 0.5rem; }

/* Footer: Adresse / NAP */
.footer__nap { font-size: 0.85rem; line-height: 1.7; }
.footer__nap a { color: inherit; }

/* ===== Ads-Landingpages ===== */
.lp-header__actions { display: flex; align-items: center; gap: 1.2rem; }
.lp-header__phone { color: var(--navy-900, #0D1B2A); font-weight: 600; text-decoration: none; white-space: nowrap; }
.lp-header__phone:hover { text-decoration: underline; }
.header.lp-header .header__inner { justify-content: space-between; }

.lp-hero { padding: 3.2rem 0 3rem; }
.lp-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}
.lp-hero__sub { color: var(--snow-soft, #C9D6E4); font-size: 1.05rem; line-height: 1.7; max-width: 560px; margin: 0.9rem 0 1.4rem; }
.lp-hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.7rem; margin-bottom: 1.1rem; }
.lp-phone { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.lp-trust { font-size: 0.85rem; color: var(--snow-soft, #C9D6E4); letter-spacing: 0.01em; }

.lp-form { background: #fff; border-radius: 14px; padding: 1.6rem 1.5rem; box-shadow: 0 18px 50px rgba(0,0,0,0.35); }
.lp-form__title { font-size: 1.15rem; margin: 0 0 1rem; color: var(--ink, #0D1B2A); }
.lp-form .form-field { margin-bottom: 0.85rem; }
.lp-form .form-field label { font-size: 0.85rem; }
.lp-form .form-field input { width: 100%; min-width: 0; }
.lp-form button[type="submit"] { width: 100%; margin-top: 0.3rem; }
.lp-form__note { font-size: 0.75rem; color: var(--ink-soft); margin: 0.7rem 0 0; }
.lp-form__note a { color: inherit; }

.footer__legal--lp { flex-wrap: wrap; gap: 0.6rem; margin-bottom: 0.8rem; }
.footer__legal--lp a { color: inherit; }

@media (max-width: 900px) {
  .lp-hero { padding: 1.6rem 0 2.2rem; }
  .lp-hero__grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .lp-hero h1 { font-size: 1.75rem; }
  .lp-hero__sub { font-size: 0.95rem; margin: 0.6rem 0 1rem; }
  .lp-hero__cta { gap: 0.55rem; margin-bottom: 0.8rem; }
  .lp-hero__cta .btn { width: 100%; }
  .lp-trust { display: none; }
  .lp-form { padding: 1.2rem 1.1rem; }
  .lp-header__phone { font-size: 0.9rem; }
  .lp-header__actions .btn { display: none; }
}
.lp-form--inline { max-width: 480px; margin-top: 1.6rem; }
