/* ==========================================================================
   Saffamove – Landingpages (Fahrzeugüberführung / Abschleppdienst)
   Ergänzt style.css, wird immer danach eingebunden und nutzt deren Custom
   Properties. Keine Overrides an Klassen der Startseite.
   ========================================================================== */

:root {
  --lp-shadow-sm: 0 2px 10px rgba(10, 37, 64, 0.06);
  --lp-shadow: 0 10px 30px rgba(10, 37, 64, 0.10);
  --lp-shadow-lg: 0 22px 60px rgba(10, 37, 64, 0.18);
  --lp-line: #e2e8ef;
  --lp-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.lp-hero {
  position: relative;
  background-color: var(--color-dark);
  color: var(--color-white);
  border-bottom: 4px solid var(--color-primary);
  overflow: hidden;
}

/* Foto als eigenes <img> statt CSS-Hintergrund: trägt einen Alt-Text und wird
   vom Browser früher geladen (fetchpriority). Fehlt die Datei, bleibt der
   dunkle Farbverlauf darunter stehen. */
.lp-hero-img,
.cta-band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
/* Verlauf als eigene Ebene. Das Foto wird inline am <section> gesetzt – ohne
   Foto bleibt der Farbverlauf allein stehen und der Hero funktioniert weiter. */
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
    rgba(10, 37, 64, 0.97) 0%,
    rgba(10, 37, 64, 0.90) 42%,
    rgba(10, 37, 64, 0.55) 72%,
    rgba(10, 37, 64, 0.35) 100%);
}
.lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 78% 18%, rgba(0, 180, 204, 0.28) 0%, rgba(0, 180, 204, 0) 60%);
  pointer-events: none;
}
.lp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 2.75rem 0 3.25rem;
}
@media (min-width: 860px) {
  .lp-hero-inner { padding: 4.5rem 0 6.5rem; }
}

/* Brotkrumen sitzen im Hero – kein heller Balken zwischen Header und Bühne */
.lp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}
.lp-breadcrumb a { color: rgba(255, 255, 255, 0.72); }
.lp-breadcrumb a:hover { color: var(--color-white); text-decoration: none; }
.lp-breadcrumb [aria-current] { color: rgba(255, 255, 255, 0.9); }
.lp-breadcrumb .sep { opacity: 0.5; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 180, 204, 0.16);
  border: 1px solid rgba(0, 180, 204, 0.55);
  color: #a8ecf5;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.35rem;
}
.badge svg { width: 15px; height: 15px; color: var(--color-primary-light); }

.lp-hero h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 5.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 0.55em;
}
/* Betontes Wort mit Unterstrich statt Farbwechsel – bleibt auf Foto lesbar.
   Als Hintergrund statt ::after, damit der Strich bei Umbruch jede Zeile
   einzeln unterlegt (box-decoration-break) und der Text frei umbrechen darf. */
.lp-hero h1 em {
  font-style: normal;
  background-image: linear-gradient(var(--color-primary), var(--color-primary));
  background-size: 100% 0.14em;
  background-position: 0 92%;
  background-repeat: no-repeat;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.lp-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.hero-usps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem 1.75rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
@media (min-width: 560px) {
  .hero-usps { grid-template-columns: repeat(2, auto); justify-content: start; }
}
.hero-usps li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
}
.hero-usps svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary-light);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 560px) {
  .hero-cta { flex-direction: row; flex-wrap: wrap; align-items: center; }
}
/* Icons in Buttons an die Schriftgröße binden – ohne das werden die
   Inline-SVGs ohne width/height riesig. */
.btn > svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-dark);
}
.hero-note {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.hero-note strong { color: var(--color-primary-light); }

/* Kennzahlen, die den Hero überlappen */
.stats-bar { position: relative; z-index: 5; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: -2.25rem;
}
@media (min-width: 820px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: -3.5rem; }
}
.stat {
  background: var(--color-white);
  border: 1px solid var(--lp-line);
  border-radius: var(--radius);
  box-shadow: var(--lp-shadow);
  padding: 1.15rem 0.9rem;
  text-align: center;
}
@media (min-width: 820px) { .stat { padding: 1.4rem 1.2rem; } }
.stat-num {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.stat-num span { color: var(--color-primary-text); }
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
  line-height: 1.35;
}

/* ==========================================================================
   NOTFALL-LEISTE
   ========================================================================== */
.emergency-bar { background: var(--color-primary); color: var(--color-dark); }
.emergency-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  text-align: center;
  max-width: var(--max-width);
  margin-inline: auto;
}
.emergency-inner p { margin: 0; font-weight: 700; font-size: 1.05rem; }
.emergency-inner .btn {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}
.emergency-inner .btn:hover { background: #061a2c; color: var(--color-white); }
@media (min-width: 720px) {
  .emergency-inner { flex-direction: row; justify-content: center; gap: 1.5rem; }
}

/* ==========================================================================
   ANKERNAVIGATION
   ========================================================================== */
.anchor-nav {
  background: var(--color-dark-alt);
  border-bottom: 1px solid rgba(0, 180, 204, 0.28);
  position: sticky;
  top: 58px;
  z-index: 90;
}
.anchor-nav ul {
  display: flex;
  gap: 0.3rem;
  list-style: none;
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  max-width: var(--max-width);
  overflow-x: auto;
  scrollbar-width: none;
}
.anchor-nav ul::-webkit-scrollbar { display: none; }
.anchor-nav a {
  display: block;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 600;
  color: #cfe6ef;
}
.anchor-nav a:hover {
  background: rgba(0, 180, 204, 0.2);
  color: var(--color-white);
  text-decoration: none;
}

/* ==========================================================================
   SEKTIONS-BAUSTEINE
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-primary-text);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}
.section-dark .eyebrow, .lp-hero .eyebrow { color: var(--color-primary-light); }

.section-head {
  max-width: 46rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}
.section-head .eyebrow::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 0.5em;
  text-align: center;
}
.section-sub {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  margin-bottom: 0;
}
.section-dark .section-sub { color: #b3cddc; }

.section-head--left { text-align: left; margin-left: 0; }
.section-head--left .section-title { text-align: left; }

.grid { display: grid; gap: 1.1rem; }
@media (min-width: 760px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Karte mit Icon-Kachel ---------- */
.info-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--lp-line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--lp-shadow-sm);
  overflow: hidden;
  transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease), border-color 0.2s var(--lp-ease);
}
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--lp-ease);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow);
  border-color: #cfdae5;
}
.info-card:hover::before { transform: scaleX(1); }
.info-card h3 { font-size: 1.12rem; margin-bottom: 0.4em; }
.info-card p { font-size: 0.96rem; margin-bottom: 0; }

.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-dark);
  color: var(--color-primary-light);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.icon-tile svg { width: 22px; height: 22px; }
.info-card:nth-child(3n+2) .icon-tile { background: var(--color-dark-alt); }
.info-card:nth-child(3n) .icon-tile { background: var(--color-primary-text); color: var(--color-white); }

.section-dark .info-card {
  background: var(--color-dark-alt);
  border-color: rgba(0, 180, 204, 0.22);
  color: #d3e6f0;
  box-shadow: none;
}
.section-dark .info-card h3 { color: var(--color-primary-light); }
.section-dark .info-card:hover { border-color: rgba(0, 180, 204, 0.55); }
.section-dark .icon-tile,
.section-dark .info-card:nth-child(3n+2) .icon-tile { background: rgba(0, 180, 204, 0.16); color: var(--color-primary-light); }
.section-dark .info-card:nth-child(3n) .icon-tile { background: var(--color-primary); color: var(--color-dark); }

/* ---------- Vergleich (zwei Spalten) ---------- */
.compare { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 820px) { .compare { grid-template-columns: repeat(2, 1fr); } }
.compare-col {
  display: flex;
  flex-direction: column;
  background: var(--color-dark-alt);
  border: 1px solid rgba(0, 180, 204, 0.3);
  border-radius: var(--radius);
  padding: 1.9rem 1.75rem;
  color: #d3e6f0;
}
.compare-col h3 { color: var(--color-primary-light); font-size: 1.25rem; }
.compare-col .check-list { margin-bottom: 1.25rem; }
.compare-col .check-list li::before { color: var(--color-primary-light); }
.compare-foot {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: #9dc0d3;
}

/* ---------- Kostenfaktoren ---------- */
.factor-list { display: grid; gap: 1.1rem; }
.factor {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.factor .icon-tile { margin-bottom: 0; }
.factor strong {
  display: block;
  font-size: 1.02rem;
  color: var(--color-dark);
  margin-bottom: 0.15em;
}
.factor p { font-size: 0.94rem; margin-bottom: 0; color: var(--color-text-muted); }

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

/* ==========================================================================
   INFOBOX, FAQ, CROSSLINK, CTA
   ========================================================================== */
.info-box {
  max-width: 46rem;
  margin: 0 auto;
  background: var(--color-bg-soft);
  border: 1px solid var(--lp-line);
  border-left: 4px solid var(--color-primary-text);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}
.info-box p:last-child { margin-bottom: 0; }
.info-box--center { text-align: center; }

.faq { max-width: 48rem; margin: 0 auto; display: grid; gap: 0.7rem; }
.faq details {
  background: var(--color-white);
  border: 1px solid var(--lp-line);
  border-radius: var(--radius);
  transition: border-color 0.18s var(--lp-ease), box-shadow 0.18s var(--lp-ease);
}
.faq details[open] { border-color: #cfdae5; box-shadow: var(--lp-shadow-sm); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-primary-text);
  transform: translateY(-50%);
  transition: transform 0.24s var(--lp-ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:focus-visible { outline: 2px solid var(--color-primary); outline-offset: -2px; }
.faq details > p { padding: 0 1.35rem 1.25rem; margin: 0; }

/* ---------- Kurze Vertrauensleiste über dem Formular ---------- */
.form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.9rem;
  list-style: none;
  margin: -0.75rem auto 1.75rem;
  padding: 0;
  max-width: 46rem;
}
.form-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.form-trust svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-primary-text);
}

/* ---------- Nächster Schritt: typografisches Band statt Karte ---------- */
.next-step {
  background: var(--color-white);
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
}
.next-step-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 2.5rem 1.25rem;
}
@media (min-width: 820px) {
  .next-step-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}
.next-step .eyebrow { margin-bottom: 0.6rem; }
.next-step h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  text-align: left;
  letter-spacing: -0.015em;
  margin-bottom: 0.3em;
}
.next-step p { margin: 0; color: var(--color-text-muted); max-width: 42rem; }
.next-step-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.next-step-link svg { width: 1.1em; height: 1.1em; transition: transform 0.2s var(--lp-ease); }
.next-step-link:hover svg { transform: translateX(5px); }

.cta-band {
  position: relative;
  background-color: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  padding: 3.5rem 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(10, 37, 64, 0.96) 0%, rgba(10, 37, 64, 0.88) 55%, rgba(0, 119, 138, 0.75) 100%);
}
.cta-band > .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--color-white); font-size: clamp(1.6rem, 3.6vw, 2.4rem); letter-spacing: -0.015em; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 40rem; margin: 0 auto 1.85rem; }
.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 26rem;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .cta-band-actions { flex-direction: row; justify-content: center; max-width: none; }
}

.mt-2 { margin-top: 2rem; }

/* ==========================================================================
   KLEINE SCREENS
   ========================================================================== */
@media (max-width: 480px) {
  .anchor-nav { top: 54px; }
}
@media (max-width: 400px) {
  .lp-hero-inner { padding: 2.25rem 0 2.75rem; }
  .info-card { padding: 1.3rem 1.2rem; }
  .compare-col { padding: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover, .info-card:hover { transform: none; }
  .info-card, .faq details, .faq summary::after { transition: none; }
}

/* ==========================================================================
   SEKTIONSFORMEN ABSEITS DER KARTE
   Damit eine Seite nicht nur aus Kacheln besteht: Zeitleiste für Abläufe,
   Rasterzeilen mit Haarlinien statt Boxen, Faktenzeilen mit großer Zahl und
   ein farbiges Hinweisband über die volle Breite.
   ========================================================================== */

/* ---------- Zeitleiste (Ablauf) ---------- */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .timeline { grid-template-columns: repeat(4, 1fr); gap: 0 1.75rem; }
}

.tl-item {
  position: relative;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .tl-item { flex-direction: column; gap: 0; }
}

.tl-dot {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
  background: var(--color-dark);
  color: var(--color-primary-light);
  box-shadow: 0 0 0 5px var(--color-white);
}
.section-soft .tl-dot { box-shadow: 0 0 0 5px var(--color-bg-soft); }
@media (min-width: 900px) {
  .tl-dot { margin-bottom: 1.35rem; }
}

/* Verbindungslinie: waagerecht ab 900px, darunter senkrecht */
.tl-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: -2rem;
  width: 2px;
  background: linear-gradient(var(--color-primary), rgba(0, 180, 204, 0.25));
}
@media (min-width: 900px) {
  .tl-item:not(:last-child)::before {
    left: 48px;
    right: -1.75rem;
    top: 23px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), rgba(0, 180, 204, 0.25));
  }
}

.tl-body h3 { font-size: 1.1rem; margin-bottom: 0.35em; }
.tl-body p { font-size: 0.95rem; margin-bottom: 0; }
.tl-step {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.3rem;
}

/* ---------- Rasterzeilen mit Haarlinien statt Karten ---------- */
.feature-rows {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--lp-line);
}
@media (min-width: 760px) {
  .feature-rows { grid-template-columns: repeat(3, 1fr); }
}
.fr-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--lp-line);
}
@media (min-width: 760px) {
  .fr-item { padding: 1.9rem 1.75rem; border-right: 1px solid var(--lp-line); }
  .fr-item:nth-child(3n) { border-right: none; }
  .fr-item:first-child { padding-left: 0; }
  .fr-item:nth-child(3n+1) { padding-left: 0; }
  .fr-item:nth-child(3n) { padding-right: 0; }
}
.fr-item .icon-tile { margin-bottom: 0; width: 40px; height: 40px; border-radius: 10px; }
.fr-item .icon-tile svg { width: 20px; height: 20px; }
.fr-item h3 { font-size: 1.05rem; margin-bottom: 0.3em; }
.fr-item p { font-size: 0.94rem; margin-bottom: 0; }

.section-dark .feature-rows { border-top-color: rgba(255, 255, 255, 0.14); }
.section-dark .fr-item { border-bottom-color: rgba(255, 255, 255, 0.14); }
@media (min-width: 760px) {
  .section-dark .fr-item { border-right-color: rgba(255, 255, 255, 0.14); }
  .section-dark .fr-item:nth-child(3n) { border-right: none; }
}
.section-dark .fr-item h3 { color: var(--color-primary-light); }
.section-dark .fr-item p { color: #b3cddc; }

/* ---------- Faktenzeilen mit großer Zahl ---------- */
.facts {
  display: grid;
  max-width: 58rem;
  margin: 0 auto;
}
.fact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 1.9rem 0;
  border-top: 1px solid var(--lp-line);
}
@media (min-width: 760px) {
  .fact { grid-template-columns: minmax(0, 15rem) 1fr; gap: 2.5rem; align-items: start; }
}
.fact:last-child { border-bottom: 1px solid var(--lp-line); }
.section-dark .fact { border-top-color: rgba(255, 255, 255, 0.16); }
.section-dark .fact:last-child { border-bottom-color: rgba(255, 255, 255, 0.16); }

.fact-num {
  margin: 0;
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--color-primary-text);
}
.section-dark .fact-num { color: var(--color-primary-light); }
.fact-num small {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.3em;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.section-dark .fact-num small { color: #8fb6cc; }
.fact-body h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.fact-body p:last-child { margin-bottom: 0; }
.section-dark .fact-body h3 { color: var(--color-white); }
.section-dark .fact-body p { color: #b3cddc; }

/* ---------- Hinweisband über die volle Breite ---------- */
.highlight-band {
  background: rgba(0, 180, 204, 0.09);
  border-top: 1px solid rgba(0, 180, 204, 0.35);
  border-bottom: 1px solid rgba(0, 180, 204, 0.35);
}
.highlight-inner {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 1.85rem 1.25rem;
}
@media (min-width: 720px) {
  .highlight-inner { flex-direction: row; align-items: flex-start; gap: 1.35rem; }
}
.highlight-inner .icon-tile { margin-bottom: 0; background: var(--color-primary-text); color: var(--color-white); }
.highlight-inner h3 { font-size: 1.1rem; margin-bottom: 0.35em; }
.highlight-inner p:last-child { margin-bottom: 0; }
