/* ===========================================================
   SCHÜTZE Leuchtenmontage — Design-Tokens & globale Styles
   =========================================================== */

:root {
  /* Farben */
  --color-graphite: #1C2126;
  --color-steel: #3A5A78;
  --color-offwhite: #F5F4F1;
  --color-white: #FFFFFF;
  --color-amber: #E8A33D;
  --color-amber-hover: #D1922F;
  --color-greyblue: #8A9399;
  --color-border: rgba(28, 33, 38, 0.10);
  --color-text: #1C2126;
  --color-text-inverse: #F5F4F1;
  --color-text-muted: rgba(28, 33, 38, 0.62);

  /* Typografie */
  --font-display: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Abstände (8px Grundraster) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-12: 96px;
  --sp-16: 128px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 8px;

  /* Schatten */
  --shadow-card: 0 2px 8px rgba(28, 33, 38, 0.06);
  --shadow-card-hover: 0 6px 20px rgba(28, 33, 38, 0.10);

  --container-max: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden; /* Sicherheitsnetz zusätzlich zu den strukturellen Fixes (min-width:0 etc.) —
                          fängt z.B. Viewer ab, die das viewport-Meta-Tag ignorieren (iOS Quick Look) */
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; font-weight: 700; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 2px;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}
.section {
  padding: var(--sp-12) 0;
}
.section--tight { padding: var(--sp-8) 0; }
.section--dark {
  background: var(--color-graphite);
  color: var(--color-text-inverse);
}
.section--white { background: var(--color-white); }

@media (max-width: 768px) {
  .section { padding: var(--sp-8) 0; }
  .section--tight { padding: var(--sp-6) 0; }
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-steel);
  margin-bottom: var(--sp-2);
  display: block;
}
.section--dark .eyebrow { color: var(--color-amber); }

h1, .h1 {
  font-size: clamp(30px, 5vw, 56px);
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  letter-spacing: -0.01em;
  font-weight: 600;
}
h3, .h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
}
.lede {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--color-text-muted);
  max-width: 640px;
}
.section--dark .lede { color: rgba(245,244,241,0.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
  min-height: 44px;
  white-space: normal;
  overflow-wrap: break-word;
  text-align: center;
}
.btn-primary {
  background: var(--color-amber);
  color: var(--color-graphite);
}
.btn-primary:hover { background: var(--color-amber-hover); }
.btn-outline {
  background: transparent;
  border-color: var(--color-graphite);
  color: var(--color-graphite);
}
.btn-outline:hover { background: rgba(28,33,38,0.05); }
.section--dark .btn-outline {
  border-color: var(--color-text-inverse);
  color: var(--color-text-inverse);
}
.section--dark .btn-outline:hover { background: rgba(245,244,241,0.08); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; min-height: 38px; }

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.logo__mark {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.logo__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-amber);
}
.logo__dot:nth-child(2) { width: 7px; height: 7px; }
.logo__dot:nth-child(3) { width: 9px; height: 9px; }
.logo__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--color-graphite);
}
.logo__sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-steel);
  margin-left: 1px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,244,241,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-2) 0;
  gap: var(--sp-3);
}
.nav {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
}
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}
.nav a:hover, .nav a[aria-current="page"] {
  border-color: var(--color-amber);
}
.header-actions { display: flex; align-items: center; gap: var(--sp-3); }
.header-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-steel);
  display: none;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.menu-toggle svg { width: 24px; height: 24px; }

@media (min-width: 900px) {
  .header-phone { display: inline; }
}
@media (max-width: 899px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions .btn-primary { display: none; }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: var(--sp-2) 0 var(--sp-3);
  border-top: 1px solid var(--color-border);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 12px 4px;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav .btn { margin-top: var(--sp-2); }

/* Sticky bottom bar (mobile only) */
.mobile-bottom-bar {
  display: none;
}
@media (max-width: 899px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: var(--sp-1) var(--sp-2);
    gap: var(--sp-2);
    box-shadow: 0 -4px 16px rgba(28,33,38,0.08);
  }
  .mobile-bottom-bar a { flex: 1; }
  body { padding-bottom: 72px; }
}

/* ---------- Placeholder images ---------- */
.placeholder-img {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, #2B333B 0%, #3A5A78 55%, #1C2126 100%);
  display: flex;
  align-items: flex-end;
  color: rgba(245,244,241,0.85);
}
.placeholder-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(232,163,61,0.18), transparent 45%),
    repeating-linear-gradient(45deg, rgba(245,244,241,0.035) 0 2px, transparent 2px 14px);
}
.placeholder-img__label {
  position: relative;
  z-index: 1;
  padding: var(--sp-2) var(--sp-3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(28,33,38,0.55);
  width: 100%;
}
.placeholder-img__label code {
  display: block;
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 2px;
}
.ratio-16-10 { aspect-ratio: 16 / 10; min-height: 220px; }
.ratio-4-3 { aspect-ratio: 4 / 3; min-height: 220px; }
.ratio-16-9 { aspect-ratio: 16 / 9; min-height: 200px; }
.ratio-1-1 { aspect-ratio: 1 / 1; min-height: 220px; }
.ratio-panorama { aspect-ratio: 2.9 / 1; min-height: 140px; } /* nah am tatsächlichen Fahrzeugfoto-Format, minimiert object-fit:cover-Beschnitt */
@media (min-width: 640px) {
  .ratio-16-10 { min-height: 300px; }
  .ratio-4-3 { min-height: 280px; }
  .ratio-16-9 { min-height: 260px; }
  .ratio-1-1 { min-height: 280px; }
  .ratio-panorama { min-height: 240px; }
}

/* ---------- Hero ---------- */
.hero {
  padding: var(--sp-8) 0 var(--sp-12);
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-8);
  align-items: center;
}
.hero__stat-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: var(--sp-3);
}
.hero__stat-inline strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-steel);
}
.hero h1 { margin-bottom: var(--sp-2); }
.hero .lede { margin-bottom: var(--sp-1); }
.hero__note {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: var(--sp-1);
  margin-bottom: var(--sp-4);
}
.hero__cta-row {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
}
.hero__big-number {
  position: absolute;
  bottom: -18px;
  left: -14px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-2) var(--sp-3);
  box-shadow: var(--shadow-card);
}
.hero__big-number .num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--color-graphite);
  line-height: 1;
}
.hero__big-number .label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

@media (max-width: 899px) {
  .hero { min-height: auto; padding: var(--sp-4) 0 var(--sp-8); }
  .hero__grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .hero__visual { order: -1; }
  .hero__big-number { position: static; margin-top: var(--sp-2); display: inline-block; }
}

/* ===========================================================
   STATS / KENNZAHLEN — komplett neu aufgebaut
   Mobile-first: eine gemeinsame HTML-Struktur für alle Breiten,
   Mobile ist die Basis-Regel (kein Media Query nötig), Desktop
   wird explizit ab 768px per Media Query aufgeschaltet.
   Keine absolute Positionierung. Kein CSS Grid auf Mobile.
   =========================================================== */

/* --- Basis / Mobile (< 768px): vertikale Liste --- */
.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--sp-4) var(--sp-3);
}

.stats__accent {
  flex: 0 0 auto;
  width: 22px;
  height: 2px;
  margin-top: 14px;
  background: var(--color-amber);
}

.stats__content {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

.stats__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 7.5vw, 34px);
  line-height: 1.1;
  color: var(--color-graphite);
  overflow-wrap: anywhere;
  word-break: normal;
}

.stats__label {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-steel);
  overflow-wrap: anywhere;
  word-break: normal;
}

/* --- Desktop (>= 768px): horizontale Editorial-Reihe --- */
@media (min-width: 768px) {
  .stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    flex-direction: row;
    gap: 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }
  .stats__item {
    display: block;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border-right: 1px solid var(--color-border);
    padding: var(--sp-6) var(--sp-3) var(--sp-2);
    position: relative;
  }
  .stats__item:last-child { border-right: none; }
  .stats__accent {
    position: absolute;
    top: 0;
    left: var(--sp-3);
    width: 32px;
    height: 2px;
    margin-top: 0;
  }
  .stats__content { margin-left: 0; }
  .stats__number { font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.02em; }
  .stats__label { color: var(--color-greyblue); margin-top: var(--sp-1); }
}

@media (min-width: 768px) and (max-width: 899px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(3), .stats__item:nth-child(4) { border-top: 1px solid var(--color-border); }
}

/* ---------- Two-column content ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.split--reverse .split__text { order: 2; }
.split--reverse .split__media { order: 1; }
@media (max-width: 899px) {
  .split { grid-template-columns: 1fr; gap: var(--sp-4); }
  .split--reverse .split__text,
  .split--reverse .split__media { order: initial; }
}
.split__text .lede { margin-bottom: var(--sp-3); }

/* ---------- Process arrow row ---------- */
.flow {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-top: var(--sp-4);
}
.flow__step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-2) var(--sp-3);
  font-size: 14px;
  font-weight: 600;
  flex: 1 1 140px;
  text-align: center;
}
.flow__arrow {
  color: var(--color-amber);
  font-size: 18px;
  flex: 0 0 auto;
}
@media (max-width: 640px) {
  .flow { flex-direction: column; align-items: stretch; }
  .flow__step { flex: 0 0 auto; padding: 12px var(--sp-3); }
  .flow__arrow { transform: rotate(90deg); align-self: center; }
}

/* ---------- Cards grid ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  box-shadow: var(--shadow-card);
  transition: box-shadow 160ms ease, transform 160ms ease;
}
.card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(58,90,120,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  color: var(--color-steel);
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--color-text-muted); font-size: 15px; }

@media (max-width: 899px) {
  .cards, .cards--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .cards, .cards--3 { grid-template-columns: 1fr; }
}

/* ---------- Why-us row ---------- */
.reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.reason__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--color-amber);
  margin-bottom: var(--sp-1);
}
.reason h3 { margin-bottom: 6px; font-size: 17px; }
.reason p { font-size: 14px; color: var(--color-text-muted); }
@media (max-width: 899px) { .reasons { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reasons { grid-template-columns: 1fr; } }

.reasons--stacked {
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.reasons--stacked .reason {
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--color-border);
}
.reasons--stacked .reason:last-child { border-bottom: none; padding-bottom: 0; }

/* ---------- Pricing formula ---------- */
.formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin: var(--sp-6) 0;
  padding: var(--sp-4);
  border: 1px solid rgba(245,244,241,0.16);
  border-radius: var(--radius-md);
}
.formula__part {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 2vw, 19px);
  text-align: center;
}
.formula__op { color: var(--color-amber); font-size: 20px; }
.formula small { display: block; font-weight: 400; font-size: 12px; opacity: 0.65; margin-top: 4px; }

/* ---------- Target group cards ---------- */
.target-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.target-card__media { aspect-ratio: 4/3; }
.target-card__body { padding: var(--sp-3); flex: 1; display: flex; flex-direction: column; gap: var(--sp-1); }
.target-card__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-steel); }
.target-card h3 { margin: 2px 0 6px; }
.target-card__row { font-size: 14px; }
.target-card__row b { color: var(--color-graphite); }
.target-card__row span { color: var(--color-text-muted); }
.target-card .btn { margin-top: var(--sp-2); align-self: flex-start; }

/* ---------- Timeline ---------- */
.timeline {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--color-border);
}
.timeline__step {
  flex: 1;
  text-align: left;
  position: relative;
  padding-right: var(--sp-2);
}
.timeline__num-col {
  display: contents; /* Desktop: kein eigenes Layout-Element, Kreis bleibt wie bisher im Fluss */
}
.timeline__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-graphite);
  color: var(--color-text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  position: relative;
  z-index: 1;
  margin-bottom: var(--sp-2);
  flex-shrink: 0;
}
.timeline__content { }
.timeline__step h3 { font-size: 16px; margin-bottom: 4px; }
.timeline__step p { font-size: 13px; color: var(--color-text-muted); }

/* ---------- Mobile: robustes 2-Spalten-Grid statt absoluter Positionierung ---------- */
@media (max-width: 899px) {
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .timeline::before { display: none; } /* ersetzt durch Linien-Segmente pro Schritt, siehe unten */
  .timeline__step {
    display: flex;
    align-items: flex-start;
    column-gap: var(--sp-3);
    padding: 0 0 var(--sp-4) 0;
  }
  .timeline__num-col {
    display: block;
    flex: 0 0 40px;
    width: 40px;
    position: relative;
  }
  .timeline__num {
    margin-bottom: 0;
  }
  /* Verbindungslinie: eigenes Segment pro Schritt, sauber innerhalb der 40px-Spalte,
     reicht vom unteren Rand des Kreises bis zum Beginn des nächsten Kreises.
     Keine einzelne durchgehende absolute Linie über die ganze Liste mehr. */
  .timeline__step:not(:last-child) .timeline__num-col::after {
    content: "";
    position: absolute;
    top: 38px;
    bottom: calc(-1 * var(--sp-4));
    left: 19px;
    width: 1px;
    background: var(--color-border);
  }
  .timeline__content {
    flex: 1 1 auto;
    min-width: 0;
  }
}

/* ---------- References ---------- */
.ref-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
  margin-top: var(--sp-6);
  align-items: center;
}
.ref-row__item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-text-muted);
  filter: grayscale(1);
  opacity: 0.75;
  letter-spacing: 0.01em;
}
.ref-disclaimer {
  margin-top: var(--sp-4);
  font-size: 13px;
  color: var(--color-text-muted);
  max-width: 640px;
}

/* ---------- History strip ---------- */
.history {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp-4);
  align-items: center;
}
@media (max-width: 899px) { .history { grid-template-columns: 1fr; gap: var(--sp-3); } }

/* ---------- Scope check/cross list ---------- */
.scope {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
}
.scope__col h3 { margin-bottom: var(--sp-2); font-size: 16px; }
.scope__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}
.scope__icon { flex: 0 0 auto; margin-top: 3px; width: 18px; height: 18px; }
.scope__icon--yes { color: var(--color-steel); }
.scope__icon--no { color: var(--color-greyblue); }
@media (max-width: 640px) { .scope { grid-template-columns: 1fr; } }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
}
.final-cta h2 { margin-bottom: var(--sp-2); }
.final-cta .lede { margin: 0 auto var(--sp-4); }
.final-cta__actions {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-3);
}
.final-cta__contact {
  font-size: 15px;
  color: rgba(245,244,241,0.75);
}
.final-cta__contact a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-graphite);
  color: rgba(245,244,241,0.85);
  padding: var(--sp-8) 0 var(--sp-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--sp-6);
}
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-amber);
  margin-bottom: var(--sp-2);
}
.footer-grid a, .footer-grid p { font-size: 14px; color: rgba(245,244,241,0.75); }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid ul a:hover { color: var(--color-amber); }
.footer-bottom {
  margin-top: var(--sp-6);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(245,244,241,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
  font-size: 13px;
  color: rgba(245,244,241,0.5);
}
.footer-bottom a { color: rgba(245,244,241,0.5); }
.footer-bottom a:hover { color: var(--color-amber); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
}
.footer-logo .logo__word, .footer-logo .logo__sub { color: var(--color-text-inverse); }
.footer-logo .logo__sub { color: rgba(245,244,241,0.6); }

/* ---------- Page hero (Unterseiten) ---------- */
.page-hero {
  padding: var(--sp-8) 0 var(--sp-6);
}
.page-hero .eyebrow { margin-bottom: var(--sp-2); }
.page-hero h1 { max-width: 780px; margin-bottom: var(--sp-2); }
.breadcrumb {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-3);
}
.breadcrumb a:hover { color: var(--color-steel); }

/* ---------- Form ---------- */
.form-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: var(--sp-8);
  align-items: start;
}
@media (max-width: 899px) { .form-layout { grid-template-columns: 1fr; } }

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}
.field { margin-bottom: var(--sp-2); }
.field--full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-graphite);
}
.field label .opt { font-weight: 400; color: var(--color-text-muted); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--color-white);
  color: var(--color-text);
  min-height: 44px;
}
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-steel);
}
.form-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  box-shadow: var(--shadow-card);
}
.form-hint {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: var(--sp-2);
}
.side-trust {
  background: var(--color-graphite);
  color: var(--color-text-inverse);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
}
.side-trust h3 { color: var(--color-text-inverse); margin-bottom: var(--sp-3); font-size: 16px; }
.side-trust .stats { border: none; grid-template-columns: 1fr 1fr; }
.side-trust .stats__item { border-right: 1px solid rgba(245,244,241,0.14); padding: var(--sp-2) 0; }
.side-trust .stats__item:nth-child(2) { border-right: none; }
.side-trust .stats__number { color: var(--color-text-inverse); font-size: 26px; }
.side-trust .stats__label { color: rgba(245,244,241,0.65); }
.side-trust__contact { margin-top: var(--sp-3); padding-top: var(--sp-3); border-top: 1px solid rgba(245,244,241,0.14); }
.side-trust__contact a { font-weight: 600; color: var(--color-amber); }

/* ---------- Fade in on scroll ---------- */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 500ms ease, transform 500ms ease;
}
.js .reveal {
  opacity: 0;
  transform: translateY(12px);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ===========================================================
   PREMIUM REDESIGN — Phase 3
   Editoriale Verfeinerung der bestehenden Komponenten.
   Ergänzt/überschreibt gezielt die Basis-Styles oben, ohne
   Markup-Klassen zu entfernen (Rückwärtskompatibilität).
   =========================================================== */

/* ---------- Header: dezente Kompaktierung beim Scrollen ---------- */
.site-header {
  transition: padding 220ms ease, background-color 220ms ease;
}
.site-header__inner { transition: padding 220ms ease; }
.site-header.is-compact .site-header__inner { padding: 10px 0; }
.site-header.is-compact { background: rgba(245,244,241,0.97); box-shadow: 0 1px 0 rgba(28,33,38,0.06); }

/* ---------- Eyebrow: feine Linie statt reiner Text ---------- */
.eyebrow--rule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow--rule::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--color-amber);
}

/* ---------- Placeholder-Bilder: hochwertige Komposition statt "Platzhalter-Look" ---------- */
.placeholder-img {
  background:
    linear-gradient(160deg, rgba(232,163,61,0.10), transparent 40%),
    linear-gradient(135deg, #262E36 0%, #3A5A78 48%, #1C2126 100%);
  align-items: stretch;
  justify-content: flex-end;
  flex-direction: column;
}
.placeholder-img::before {
  background-image:
    radial-gradient(circle at 78% 12%, rgba(232,163,61,0.16), transparent 38%),
    radial-gradient(circle at 10% 90%, rgba(245,244,241,0.06), transparent 45%),
    repeating-linear-gradient(115deg, rgba(245,244,241,0.028) 0 1px, transparent 1px 22px);
}
.placeholder-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28,33,38,0.55) 0%, transparent 32%);
}
.placeholder-img__label {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  z-index: 2;
  background: rgba(28,33,38,0.55);
  backdrop-filter: blur(3px);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  width: auto;
  max-width: calc(100% - 32px);
}
.placeholder-img__label code {
  display: none; /* Dateiname bleibt im Quelltext dokumentiert, stört aber die visuelle Wirkung */
}
.placeholder-img--full { border-radius: 0; }

/* Full-bleed Variante ohne Innenabstand-Beschränkung */
.media-bleed {
  position: relative;
  overflow: hidden;
}

/* ---------- HERO: asymmetrisches Premium-Layout ---------- */
.hero {
  padding: 0;
  min-height: 92vh;
  display: block;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 0;
  align-items: stretch;
  min-height: 92vh;
}
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-8) var(--sp-4) var(--sp-8) max(var(--sp-3), calc((100vw - var(--container-max)) / 2 + var(--sp-3)));
  background: var(--color-offwhite);
}
.hero__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-steel);
  margin-bottom: var(--sp-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__label::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--color-amber);
}
.hero h1 {
  font-size: clamp(34px, 3.3vw, 46px);
  margin-bottom: var(--sp-3);
}
.hero h1 .hero__line2 { display: block; color: var(--color-steel); }
.hero .lede { max-width: 480px; margin-bottom: var(--sp-1); }
.hero__note { max-width: 460px; }
.hero__visual {
  position: relative;
  min-height: 340px;
}
.hero__visual .placeholder-img {
  position: absolute;
  inset: 0;
  border-radius: 0;
  height: 100%;
}
.hero__big-number {
  position: absolute;
  left: var(--sp-4);
  bottom: var(--sp-4);
  background: rgba(28,33,38,0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(245,244,241,0.14);
  border-radius: var(--radius-md);
  padding: var(--sp-2) var(--sp-3);
  box-shadow: none;
}
.hero__big-number .num { color: var(--color-text-inverse); font-size: 32px; }
.hero__big-number .label { color: rgba(245,244,241,0.72); }
.hero__stat-inline { display: none; } /* durch hero__label + Bild-Badge ersetzt */

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero { min-height: auto; }
  .hero__text { padding: var(--sp-6) var(--sp-3); }
  .hero__visual { min-height: 320px; order: -1; }
}
@media (max-width: 640px) {
  .hero__visual { min-height: 260px; }
  .hero__big-number { left: var(--sp-2); bottom: var(--sp-2); padding: var(--sp-1) var(--sp-2); }
  .hero__big-number .num { font-size: 24px; }

  /* 1. Mobile-Hero: kompaktere H1, bessere Zeilenumbrüche (~12% kleiner) */
  .hero h1 {
    font-size: 27px;
    line-height: 1.16;
    letter-spacing: -0.01em;
  }
  .hero__label { margin-bottom: var(--sp-2); }
  .hero__text { padding-top: var(--sp-4); padding-bottom: var(--sp-4); }
}

/* 2. Mobile-Header: Logo sauber ausgerichtet, exakt auf einer Linie mit Hamburger */
@media (max-width: 899px) {
  .site-header__inner {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 4px; /* zusätzlicher Sicherheitsabstand zum Container-Padding, damit das Logo nicht randnah wirkt */
  }
  .logo {
    flex-shrink: 0;
    justify-content: center;
  }
  .logo__word { line-height: 1.05; }
  .header-actions {
    align-items: center;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
  }
}

/* 3. Sticky Bottom Bar: kompakter (weniger Höhe/Padding/Button-Größe) + iOS Safe-Area */
@media (max-width: 899px) {
  .mobile-bottom-bar {
    padding: 8px var(--sp-2);
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    gap: 8px;
  }
  .mobile-bottom-bar .btn {
    padding: 9px 14px;
    font-size: 14px;
    min-height: 36px;
  }
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
}

/* 4. Hero-/Content-Platzhalter: dezentes Label statt dominanter Textmarke */
.placeholder-img__label {
  top: auto;
  bottom: var(--sp-2);
  right: var(--sp-2);
  left: auto;
  max-width: none;
  background: rgba(28,33,38,0.38);
  padding: 5px 10px 5px 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 100px;
}
.placeholder-img__label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-amber);
  display: inline-block;
}

/* Kennzahlen-Desktop-Editorial-Styling ist bereits vollständig im neu aufgebauten
   Stats-Block weiter oben enthalten (siehe "STATS / KENNZAHLEN — komplett neu aufgebaut"). */

/* ---------- BENTO-GRID für Leistungen ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.bento__item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  border: 1px solid var(--color-border);
  transition: border-color 160ms ease, transform 160ms ease;
}
.bento__item:hover { border-color: var(--color-steel); transform: translateY(-2px); }
/* Alternierendes Raster: Zeile 1 = breit + schmal, Zeile 2 = schmal + breit.
   Bewusst asymmetrisch, aber ohne überhohe Karten mit Leerraum. */
.bento__item--lg { grid-column: span 4; }
.bento__item--sm { grid-column: span 2; }
.bento__item--wide { grid-column: span 4; }
.bento__item--wide .bento__body { max-width: none; }
.bento__num { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--color-amber); letter-spacing: 0.04em; }
.bento__item h3 { font-size: 20px; }
.bento__item p { color: var(--color-text-muted); font-size: 15px; }

@media (max-width: 899px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__item--lg, .bento__item--sm, .bento__item--wide { grid-column: span 2; grid-row: auto; min-height: auto; }
  .bento__item--wide { flex-direction: column; align-items: flex-start; }
}

/* ---------- Große Statement-Zahl (100/Tag) ---------- */
.statement-number {
  text-align: center;
  padding: var(--sp-4) 0;
}
.statement-number__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(90px, 16vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--color-text-inverse);
  position: relative;
  display: inline-block;
}
.statement-number__num::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--color-amber);
}
.statement-number__label {
  margin-top: var(--sp-2);
  font-size: 16px;
  color: rgba(245,244,241,0.72);
}

/* ---------- Stückpreis-Formel: nummeriert & reduziert ---------- */
.formula { border: none; padding: 0; margin: var(--sp-6) 0 0; gap: var(--sp-2); }
.formula__part {
  position: relative;
  padding-top: 28px;
  min-width: 130px;
  flex: 1 1 130px;
}
@media (max-width: 480px) {
  .formula__part { min-width: 0; flex: 1 1 100%; }
}
.formula__part::before {
  content: attr(data-step);
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-amber);
}

/* ---------- Editoriale Zielgruppen-Karten ---------- */
.target-card {
  box-shadow: none;
  border: 1px solid var(--color-border);
}
.target-card__media { aspect-ratio: 3/2; }
.target-card__eyebrow { color: var(--color-amber); }

/* ---------- Timeline: reduzierter, editorialer ---------- */
.timeline__num {
  background: transparent;
  color: var(--color-graphite);
  border: 1.5px solid var(--color-graphite);
  font-size: 15px;
}
.timeline::before { background: var(--color-border); }

/* ---------- Referenzen: ruhiger, mehr Raum ---------- */
.ref-row {
  gap: var(--sp-6) var(--sp-8);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--color-border);
}
.ref-row__item {
  font-size: 16px;
  letter-spacing: 0.02em;
}

/* ---------- Elektro-Abgrenzung: dezent statt Warnbox ---------- */
.scope-quiet {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin: var(--sp-3) 0 var(--sp-2);
}
.scope-quiet__tag {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--color-border);
  color: var(--color-graphite);
}
.scope-quiet__note {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 560px;
}

/* ---------- Split: leicht ungleiche Spalten für mehr Editorial-Feel ---------- */
.split--wide-media { grid-template-columns: 0.85fr 1.15fr; }
.split--wide-text { grid-template-columns: 1.15fr 0.85fr; }
@media (max-width: 899px) {
  .split--wide-media, .split--wide-text { grid-template-columns: 1fr; }
}

/* ---------- Reveal-Varianten (subtile Bewegung) ---------- */
.reveal--rise { transform: translateY(20px); }
.reveal--fade { transform: none; }

/* ===========================================================
   PHASE 4 — RESPONSIVE BUGFIX: horizontales Overflow beheben
   Ursache: Flex-/Grid-Kinder haben per CSS-Spezifikation einen
   impliziten min-width:auto, wodurch langer, nicht umbrechbarer
   Text (z.B. "Deutschlandweit", Button-Labels) die Spalte/das
   Flex-Item nie unter seine Inhaltsbreite schrumpfen lässt — das
   sprengt den Container. Fix: min-width:0 an allen betroffenen
   Flex-/Grid-Kindern, plus Wortumbruch-Absicherung bei langen
   Wörtern/Zahlen. Layout/Design bleibt unverändert.
   =========================================================== */

.stats__item,
.bento__item,
.card,
.reason,
.target-card,
.timeline__step,
.formula__part,
.split__text,
.split__media,
.footer-grid > div,
.nav,
.header-actions,
.hero__cta-row > a,
.mobile-bottom-bar > a,
.cards > *,
.reasons > *,
.form-layout > *,
.history > * {
  min-width: 0;
}

.stats__number,
.stats__label,
.bento__item h3,
.reason h3,
.card h3,
.target-card h3,
h1, h2, h3 {
  overflow-wrap: normal;
  word-break: normal;
}

/* Bilder/Platzhalter dürfen nie breiter als ihr Container sein (echte Größenbegrenzung, kein overflow-Masking) */
.placeholder-img { max-width: 100%; }

/* ===========================================================
   BILDINTEGRATION — echte Fotos statt Platzhalter
   =========================================================== */
.media-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}
.hero__visual .media-photo {
  border-radius: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.target-card__media .media-photo,
.split__media .ratio-4-3 .media-photo,
.split__media .ratio-16-9 .media-photo,
.history .ratio-4-3 .media-photo,
.history .ratio-16-10.media-photo,
.history .ratio-panorama.media-photo {
  border-radius: var(--radius-md);
}

/* Gezielt zusätzlicher Weißraum vor dem dunklen "Stückleistung"-Block auf Mobile,
   damit der Übergang nicht gedrängt wirkt. Betrifft ausschließlich diese eine
   Sektion, keine globale Section-Abstandsänderung. */
@media (max-width: 767px) {
  .section--pre-dark-gap {
    padding-bottom: calc(var(--sp-8) + 80px);
  }
}
@media (min-width: 768px) {
  .section--pre-dark-gap {
    padding-bottom: calc(var(--sp-12) + 32px);
  }
}

/* (Entfernungs-Regel für Logo-Punkte zurückgenommen — die Punkte sind
   gewolltes Logo-Element und bleiben erhalten, siehe weiter unten für
   die eigentliche Positionierungs-Korrektur.) */

/* ===========================================================
   REFERENZEN — Premium Dark Section
   Eigenständige Klassen (refs__*), damit keine Kollision mit
   bestehenden Regeln entsteht. Betrifft ausschließlich den
   Referenzen-Bereich.
   =========================================================== */
.refs-section {
  background: var(--color-graphite);
  color: var(--color-text-inverse);
}
.refs-section .eyebrow { color: var(--color-amber); }
.refs-section h2 { color: var(--color-text-inverse); }
.refs-section .refs__intro {
  color: rgba(245, 244, 241, 0.72);
  max-width: 640px;
  margin-top: var(--sp-2);
  font-size: clamp(15px, 2vw, 17px);
}

/* Grid: Mobile 1 Spalte (Basis), Desktop 2 Spalten.
   Flexbox-Fallback zuerst, Grid überschreibt in modernen Browsern. */
.refs__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--sp-6);
}
.refs__grid > .refs__item { flex: 1 1 100%; }

@supports (display: grid) {
  .refs__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 700px) {
  .refs__grid { gap: 14px; }
  .refs__grid > .refs__item { flex: 1 1 calc(50% - 7px); }
  @supports (display: grid) {
    .refs__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
}

.refs__item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(232, 163, 61, 0.28);
  border-radius: var(--radius-md);
  background: rgba(245, 244, 241, 0.03);
  transition: border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}
.refs__item:hover {
  border-color: rgba(232, 163, 61, 0.65);
  background: rgba(245, 244, 241, 0.055);
  box-shadow: 0 0 0 1px rgba(232, 163, 61, 0.12), 0 6px 20px rgba(0, 0, 0, 0.25);
}

.refs__icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  color: var(--color-amber);
  opacity: 0.85;
}
.refs__icon svg { width: 100%; height: 100%; display: block; }

.refs__name {
  min-width: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(245, 244, 241, 0.94);
  overflow-wrap: normal;
  word-break: normal;
}

.refs__disclaimer {
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(245, 244, 241, 0.12);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245, 244, 241, 0.6);
  max-width: 720px;
}

/* Dezent mehr Abstand nach dem Prozess-/Dokumentationsblock auf Mobile,
   damit der Übergang zur nächsten Sektion nicht gequetscht wirkt. */
@media (max-width: 767px) {
  .flow { margin-bottom: var(--sp-4); }
}

/* Korrektur: Kennzahlen im dunklen Vertrauensblock (Kontaktseite).
   Der neu aufgebaute Stats-Block setzt weiße Karten als Basis — auf
   dunklem Grund muss das zurückgenommen werden (Lesbarkeit). */
.side-trust .stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: none;
}
.side-trust .stats__item {
  display: block;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border-right: 1px solid rgba(245,244,241,0.14);
  padding: var(--sp-2) var(--sp-2) var(--sp-2) 0;
}
.side-trust .stats__item:nth-child(2n) { border-right: none; padding-left: var(--sp-2); }
.side-trust .stats__accent { display: none; }
.side-trust .stats__number { color: var(--color-text-inverse); font-size: 24px; }
.side-trust .stats__label { color: rgba(245,244,241,0.7); }
