/* ==========================================================================
   A&L SERVICE & TECHNOLOGY — BASIS, LAYOUT & SEKTIONEN
   style.css
   Reset, Grid-System, Container, Sektionslayouts, Hero, Utilities.
   Präzises Raster, großzügige Weißräume, klare Linien.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET / NORMALISIERUNG
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h-scroll) + 24px);
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;            /* kein horizontales Verschieben der Seite   */
}
html, body { max-width: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  min-height: 100vh;
  background: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;               /* kein horizontales Scrollen           */
  overflow-wrap: break-word;        /* lange Wörter umbrechen statt überlaufen */
  text-underline-offset: 2px;
}
/* Sehr lange deutsche Komposita in Überschriften nie überlaufen lassen */
h1, h2, h3, h4, h5, h6, .display, p, li, a, span, .hero__mark {
  overflow-wrap: break-word;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

ul[role="list"], ol[role="list"] { list-style: none; padding: 0; margin: 0; }

:target { scroll-margin-top: calc(var(--header-h-scroll) + 24px); }

/* Fokus-Sichtbarkeit (Barrierefreiheit) */
:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 3px;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 3px;
}

/* Skip-Link */
.skip-link {
  position: absolute;
  top: -60px;
  left: var(--gutter);
  z-index: 2000;
  background: var(--c-ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  transition: top var(--dur) var(--ease-out);
}
.skip-link:focus { top: 12px; color: #fff; }

/* --------------------------------------------------------------------------
   2. CONTAINER & GRID
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide   { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }

.grid { display: grid; gap: var(--sp-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--12 { grid-template-columns: repeat(12, 1fr); }

.col-span-4 { grid-column: span 4; }
.col-span-5 { grid-column: span 5; }
.col-span-6 { grid-column: span 6; }
.col-span-7 { grid-column: span 7; }
.col-span-8 { grid-column: span 8; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.gap-5 { gap: var(--sp-5); }
.gap-6 { gap: var(--sp-6); }

/* --------------------------------------------------------------------------
   3. SEKTIONEN
   -------------------------------------------------------------------------- */
.section { padding-block: var(--section-y); position: relative; }
.section--sm { padding-block: var(--section-y-sm); }
.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }

.section--alt   { background: var(--c-bg-alt); }
.section--muted { background: var(--c-bg-muted); }
.section--dark {
  background: var(--c-bg-dark);
  color: var(--c-text-invert);
}
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark h5, .section--dark h6,
.section--dark .display { color: #fff; }
.section--dark .lead { color: var(--c-text-invert-muted); }
.section--dark p { color: var(--c-text-invert-muted); }
.section--dark .text-strong { color: #fff; }

.section--darker { background: var(--c-bg-darker); color: var(--c-text-invert); }
.section--darker h1, .section--darker h2, .section--darker h3 { color: #fff; }

/* Sektionskopf */
.section-head {
  max-width: 760px;
  margin-bottom: clamp(2.25rem, 1.5rem + 2vw, 3.75rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .eyebrow { justify-content: center; }
.section-head .lead { margin-top: 1.1rem; }

.section-head--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.section-head--split .section-head__text { max-width: 640px; }

/* dünne obere Trennlinie für gegliederte Sektionen */
.section--ruled { border-top: var(--rule); }

/* --------------------------------------------------------------------------
   4. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--c-ink);
  overflow: hidden;
  padding-top: calc(var(--header-h) + var(--topbar-h));
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Abdunkelung für Lesbarkeit — ruhiger, technischer Verlauf */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,20,25,0.55) 0%, rgba(15,20,25,0.25) 35%, rgba(15,20,25,0.82) 100%),
    linear-gradient(90deg, rgba(15,20,25,0.65) 0%, rgba(15,20,25,0.15) 60%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(3rem, 2rem + 5vw, 6rem);
}
.hero__content { max-width: 820px; }
.hero .display { color: #fff; }
.hero__lead {
  margin-top: 1.5rem;
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
  max-width: 60ch;
}
.hero__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}
.hero__eyebrow { color: #fff; }
.hero__eyebrow::before { background: var(--c-accent); }

/* Technischer Hero-Hintergrund (dezent) — bis ein echtes Bild eingesetzt wird.
   Zum Ersetzen: <img> in .hero__media einfügen, .hero-canvas entfernen. */
.hero-canvas {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 120% at 85% -10%, rgba(14,147,210,0.30), transparent 55%),
    radial-gradient(70% 90% at 5% 110%, rgba(14,147,210,0.10), transparent 60%),
    linear-gradient(155deg, #10151a 0%, #191f27 55%, #0f141a 100%);
}
.hero-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(130% 110% at 80% 0%, #000 28%, transparent 78%);
  mask-image: radial-gradient(130% 110% at 80% 0%, #000 28%, transparent 78%);
}
/* schmale, blau leuchtende Kante rechts */
.hero-canvas::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(14,147,210,0.6), transparent);
}

/* dünne Akzentlinie links am Hero-Text */
.hero__content--ruled {
  padding-left: clamp(1.25rem, 2vw, 2rem);
  border-left: 2px solid var(--c-accent);
}

/* Hero-Kennzahlenleiste am unteren Rand */
.hero__stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: clamp(2.5rem, 4vw, 4rem);
}
.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero__stat {
  padding: 1.5rem 0;
  padding-right: 1.5rem;
}
.hero__stat + .hero__stat {
  padding-left: 1.75rem;
  border-left: 1px solid rgba(255,255,255,0.14);
}
.hero__stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero__stat-num .unit { color: var(--c-accent); }
.hero__stat-label {
  margin-top: 0.55rem;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}

/* Pagehead (kompakter Hero für Unterseiten) */
.pagehead {
  position: relative;
  background: var(--c-ink);
  color: #fff;
  padding-top: calc(var(--header-h) + var(--topbar-h) + clamp(2.5rem, 5vw, 5rem));
  padding-bottom: clamp(2.5rem, 4vw, 4.5rem);
  overflow: hidden;
}
.pagehead__media { position: absolute; inset: 0; z-index: 0; opacity: 0.32; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehead__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,24,28,0.6), rgba(20,24,28,0.92));
}
.pagehead__inner { position: relative; z-index: 2; max-width: 820px; }
.pagehead h1 { color: #fff; margin-bottom: 0; }
.pagehead__lead {
  margin-top: 1.25rem;
  font-size: var(--fs-lead);
  color: rgba(255,255,255,0.82);
  max-width: 58ch;
}

/* --------------------------------------------------------------------------
   5. BREADCRUMB
   -------------------------------------------------------------------------- */
.breadcrumb {
  font-size: var(--fs-small);
  margin-bottom: 1.5rem;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; margin: 0; }
.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current="page"] { color: var(--c-accent); }

/* Breadcrumb auf hellem Grund */
.breadcrumb--light li:not(:last-child)::after { color: var(--c-gray-400); }
.breadcrumb--light a { color: var(--c-text-muted); }
.breadcrumb--light a:hover { color: var(--c-accent-700); }
.breadcrumb--light [aria-current="page"] { color: var(--c-text-strong); }

/* --------------------------------------------------------------------------
   6. MEDIEN / BILDCONTAINER — bewusst eckig
   -------------------------------------------------------------------------- */
.media {
  position: relative;
  overflow: hidden;
  background: var(--c-gray-100);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--4x3  { aspect-ratio: 4 / 3; }
.media--3x2  { aspect-ratio: 3 / 2; }
.media--16x9 { aspect-ratio: 16 / 9; }
.media--1x1  { aspect-ratio: 1 / 1; }
.media--portrait { aspect-ratio: 3 / 4; }
.media--tall { aspect-ratio: 4 / 5; }

/* Platzhalter-Grafik (bis echte Bilder vorliegen) */
.placeholder {
  position: relative;
  background:
    linear-gradient(135deg, var(--c-gray-100) 0%, var(--c-gray-150) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gray-400);
  overflow: hidden;
}
.placeholder::before {
  /* feines technisches Raster als Platzhalter-Textur */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--c-gray-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-gray-200) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}
.placeholder__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--c-gray-500);
  background: rgba(255,255,255,0.75);
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--c-border);
}
.placeholder__label svg { width: 16px; height: 16px; }
.placeholder--dark {
  background: linear-gradient(135deg, var(--c-ink-800), var(--c-ink));
}
.placeholder--dark::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  opacity: 1;
}
.placeholder--dark .placeholder__label {
  background: rgba(20,24,28,0.6);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
}

/* Bild mit dezentem Akzentrahmen (Eck-Detail) */
.media-framed { position: relative; }
.media-framed::after {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -14px;
  width: 46%;
  height: 46%;
  border-left: 3px solid var(--c-accent);
  border-bottom: 3px solid var(--c-accent);
  z-index: -1;
}

/* --------------------------------------------------------------------------
   7. SPLIT / FEATURE-LAYOUTS
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--media-right { direction: ltr; }
.split__media { min-width: 0; }
.split__body { min-width: 0; }
.split--top { align-items: flex-start; }

/* Spalten-Verhältnisse (als Klassen statt Inline-Styles, damit der
   responsive Umbruch bei <= 900px zuverlässig greift) */
.split--40-60 { grid-template-columns: 0.9fr 1.1fr; }
.split--50-50 { grid-template-columns: 1fr 1fr; }
.split--55-45 { grid-template-columns: 1.1fr 0.9fr; }
.split--60-40 { grid-template-columns: 1.15fr 0.85fr; }

/* Wechselnde Feature-Zeilen */
.feature-row { align-items: center; }
.feature-row + .feature-row { margin-top: clamp(3rem, 6vw, 6rem); }

/* --------------------------------------------------------------------------
   8. LISTEN — Check / Merkmale
   -------------------------------------------------------------------------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.9rem; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin: 0;
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 10px;
  border-left: 2px solid var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
  transform: rotate(-45deg);
}
.check-list--tight { gap: 0.55rem; }
.section--dark .check-list li::before { border-color: var(--c-accent); }

/* nummerierte Prozessliste */
.step-list { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 0; }
.step-list li {
  position: relative;
  counter-increment: step;
  padding: 1.5rem 0 1.5rem 4.25rem;
  border-top: var(--rule);
  margin: 0;
}
.step-list li:last-child { border-bottom: var(--rule); }
.step-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-accent-700);
  letter-spacing: 0.02em;
}
.step-list h3 { margin-bottom: 0.35rem; font-size: 1.15rem; }
.step-list p { margin: 0; color: var(--c-text-muted); }

/* --------------------------------------------------------------------------
   9. KENNZAHLEN / STATS (heller Grund)
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--rule);
  background: var(--c-white);
}
.stat {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: var(--rule);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--c-text-strong);
  letter-spacing: -0.02em;
}
.stat__num .unit { color: var(--c-accent); }
.stat__label {
  margin-top: 0.6rem;
  color: var(--c-text-muted);
  font-size: var(--fs-small);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   10. LOGO-ZEILE / VERTRAUEN
   -------------------------------------------------------------------------- */
.trustbar { border-block: var(--rule); }
.trustbar__inner {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
  justify-content: center;
  padding-block: 2rem;
}
.trustbar__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.trustbar__item {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--c-gray-400);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   11. CTA-BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--c-ink);
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(14,147,210,0.22), transparent 55%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-7);
  flex-wrap: wrap;
  padding-block: clamp(3rem, 4vw, 4.5rem);
}
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255,255,255,0.8); margin: 0; max-width: 52ch; }
.cta-band__text { max-width: 640px; }
.cta-band__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   12. AKKORDEON (FAQ)
   -------------------------------------------------------------------------- */
.accordion { border-top: var(--rule); }
.accordion__item { border-bottom: var(--rule); }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-text-strong);
  transition: color var(--dur-fast) var(--ease-out);
}
.accordion__trigger:hover { color: var(--c-accent-700); }
.accordion__icon {
  flex: none;
  position: relative;
  width: 20px;
  height: 20px;
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  background: var(--c-accent);
  transition: transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}
.accordion__icon::before { left: 0; top: 9px; width: 20px; height: 2px; }
.accordion__icon::after  { left: 9px; top: 0; width: 2px; height: 20px; }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: scaleY(0); opacity: 0; }
.accordion__panel {
  overflow: hidden;
  height: 0;
  transition: height var(--dur) var(--ease-out);
}
.accordion__panel-inner {
  padding: 0 0 1.75rem;
  max-width: 68ch;
  color: var(--c-text-muted);
}
.accordion__panel-inner p { color: var(--c-text-muted); }

/* --------------------------------------------------------------------------
   13. „ZURÜCK NACH OBEN"
   -------------------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  z-index: var(--z-toTop);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--c-ink);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), background var(--dur-fast);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--c-accent); color: #fff; }
.to-top svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   14. UTILITIES
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.no-scroll { overflow: hidden; }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.mt-8 { margin-top: var(--sp-8); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }

.w-full { width: 100%; }
.block { display: block; }
.relative { position: relative; }

.divider { border: 0; border-top: var(--rule); margin: 0; }
.divider--dark { border-top: var(--rule-dark); }

.bg-white { background: var(--c-white); }
.bg-alt   { background: var(--c-bg-alt); }

/* Akzent-Detailmarke (kleines Quadrat / Linien-Ornament) */
.tick { display: inline-block; width: 26px; height: 3px; background: var(--c-accent); }

/* Chip / Tag */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-accent-700);
  background: var(--c-accent-soft);
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--c-accent-line);
}
.chip--neutral {
  color: var(--c-gray-600);
  background: var(--c-gray-100);
  border-color: var(--c-border);
}

/* ==========================================================================
   15. ERWEITERUNGEN (Redesign) — Hero-Panel, USP-Leiste, Prinzipien,
       Marken-Kennzahlen, Split-Verhältnisse, CTA-Varianten
   ========================================================================== */

/* Split-Verhältnisse (ersetzen Inline-Styles) */
.split--50-50 { grid-template-columns: 1fr 1fr; }
.split--40-60 { grid-template-columns: 2fr 3fr; }
.split--60-40 { grid-template-columns: 3fr 2fr; }
.split--45-55 { grid-template-columns: 9fr 11fr; }

/* --------------------------------------------------------------------------
   HERO-PANEL — gibt dem Text einen ruhigen, klaren Hintergrund
   -------------------------------------------------------------------------- */
.hero { align-items: center; }
.hero__panel {
  position: relative;
  max-width: 680px;
  padding: clamp(1.9rem, 1.4rem + 2vw, 3rem) clamp(1.6rem, 1.2rem + 2vw, 3rem);
  background: rgba(16, 21, 26, 0.66);
  border-left: 3px solid var(--c-accent);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
/* kleine blaue Ecke oben links als Markendetail */
.hero__panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-color: var(--c-accent) transparent transparent transparent;
}
.hero__panel .hero__lead { color: rgba(255,255,255,0.9); }
.hero__actions { margin-top: 2rem; }

/* --------------------------------------------------------------------------
   USP-LEISTE — vier Kernvorteile direkt unter dem Hero (klare Linien)
   -------------------------------------------------------------------------- */
.usp-strip {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
}
.usp-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.usp {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: clamp(1.5rem, 1rem + 1.6vw, 2.25rem) clamp(1.25rem, 1rem + 1vw, 2rem);
  border-right: 1px solid var(--c-border);
  position: relative;
}
.usp:last-child { border-right: 0; }
.usp::before {
  /* dünne blaue Oberkante, die bei Hover einläuft */
  content: "";
  position: absolute;
  top: -1px; left: 0;
  height: 3px; width: 0;
  background: var(--c-accent);
  transition: width var(--dur) var(--ease-out);
}
.usp:hover::before { width: 100%; }
.usp__icon {
  flex: none;
  color: var(--c-accent-700);
  margin-top: 2px;
}
.usp__icon svg { width: 30px; height: 30px; }
.usp__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--c-text-strong);
  margin: 0 0 0.25rem;
  letter-spacing: -0.01em;
}
.usp__text { font-size: 0.86rem; color: var(--c-text-muted); margin: 0; line-height: 1.5; }

/* --------------------------------------------------------------------------
   PRINZIPIEN-LISTE — „Warum A&L" (hell, editorial, keine Icon-Boxen)
   -------------------------------------------------------------------------- */
.principles { display: grid; }
.principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.5rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--c-border);
  align-items: start;
}
.principle:last-child { border-bottom: 1px solid var(--c-border); }
.principle__icon {
  grid-row: span 2;
  color: var(--c-accent-700);
  width: 34px; height: 34px;
  display: grid; place-items: center;
}
.principle__icon svg { width: 30px; height: 30px; }
.principle__title { font-size: 1.2rem; margin: 0; }
.principle__text { color: var(--c-text-muted); margin: 0; max-width: 58ch; }
.principle:hover .principle__title { color: var(--c-accent-700); }
.principle__title { transition: color var(--dur-fast) var(--ease-out); }

/* --------------------------------------------------------------------------
   MARKEN-KENNZAHLEN — Signaturblock „A&L in Zahlen" (Logo-Blau)
   -------------------------------------------------------------------------- */
.section--brand {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--c-brand-blue) 0%, var(--c-brand-blue-800) 100%);
}
.section--brand::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(130% 120% at 100% 0%, #000 25%, transparent 78%);
  mask-image: radial-gradient(130% 120% at 100% 0%, #000 25%, transparent 78%);
  pointer-events: none;
}
.section--brand > .container { position: relative; z-index: 1; }
.section--brand h2, .section--brand .display { color: #fff; }
.section--brand .lead { color: rgba(255,255,255,0.9); }
.section--brand .eyebrow { color: #fff; }
.section--brand .eyebrow::before { background: #fff; }

.figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.3);
}
.figure {
  padding: clamp(1.75rem, 1rem + 2vw, 2.75rem) clamp(1.1rem, 0.8rem + 1vw, 2rem);
  border-right: 1px solid rgba(255,255,255,0.22);
}
.figure:last-child { border-right: 0; }
.figure__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.6rem, 1.9rem + 3vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
}
.figure__num .unit { color: rgba(255,255,255,0.75); font-size: 0.5em; margin-left: 0.05em; }
.figure__bar { width: 38px; height: 3px; background: #fff; opacity: 0.9; margin: 1.15rem 0 0; }
.figure__label {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
}
.figures__note {
  margin-top: 1.5rem;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.72);
}
.section--brand .section-head__text .lead,
.section--brand .section-head .lead { color: rgba(255,255,255,0.9); }

/* --------------------------------------------------------------------------
   CTA-BAND — Marken-Blau-Variante (löst dunkle Fläche ab)
   -------------------------------------------------------------------------- */
.cta-band--brand {
  background: linear-gradient(120deg, var(--c-brand-blue) 0%, var(--c-brand-blue-800) 100%);
}
.cta-band--brand::before {
  background: radial-gradient(120% 150% at 0% 100%, rgba(255,255,255,0.16), transparent 55%);
}
.cta-band--brand .eyebrow { color: #fff; }
.cta-band--brand .eyebrow::before { background: #fff; }
.cta-band--brand h2 { color: #fff; }
.cta-band--brand p { color: rgba(255,255,255,0.92); }
/* Buttons auf blauem CTA-Band: primär/dunkel als weiße Buttons darstellen */
.cta-band--brand .btn--primary,
.cta-band--brand .btn--dark { background: #fff; color: var(--c-ink); border-color: #fff; }
.cta-band--brand .btn--primary::after,
.cta-band--brand .btn--dark::after { display: none; }
.cta-band--brand .btn--primary:hover,
.cta-band--brand .btn--dark:hover { background: var(--c-gray-100); border-color: var(--c-gray-100); color: var(--c-ink); }

/* --------------------------------------------------------------------------
   MARKEN-BLAU-SEKTIONEN — Inhalte lesbar (weiße Typo, helle Linien),
   damit beliebige Bausteine (Prozess, Check-Liste, Features, Stats) passen
   -------------------------------------------------------------------------- */
.section--brand p,
.section--brand .text-muted { color: rgba(255,255,255,0.9); }
.section--brand .eyebrow,
.section--brand .eyebrow--invert { color: #fff; }
.section--brand .eyebrow::before,
.section--brand .eyebrow--invert::before { background: #fff; }

.section--brand .check-list li::before { border-color: #fff; }

.section--brand .step-list li { border-color: rgba(255,255,255,0.25); }
.section--brand .step-list li::before { color: #fff; }
.section--brand .step-list h3 { color: #fff; }
.section--brand .step-list p { color: rgba(255,255,255,0.85); }

.section--brand .feature { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); }
.section--brand .feature__title { color: #fff; }
.section--brand .feature__text { color: rgba(255,255,255,0.85); }
.section--brand .feature__icon { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.32); color: #fff; }

.section--brand .stats { background: transparent; }
.section--brand .stat { border-color: rgba(255,255,255,0.22); }
.section--brand .stat__num { color: #fff; }
.section--brand .stat__label { color: rgba(255,255,255,0.85); }

.section--brand .btn--dark { background: #fff; color: var(--c-ink); border-color: #fff; }
.section--brand .btn--dark::after { display: none; }
.section--brand .btn--dark:hover { background: var(--c-gray-100); border-color: var(--c-gray-100); color: var(--c-ink); }

.section--brand .link-arrow { color: #fff; }
.section--brand .link-arrow:hover { color: #fff; border-bottom-color: #fff; }

.section--brand .media-corner::before,
.section--brand .media-corner::after { border-color: #fff; }
.section--brand .placeholder { background: rgba(255,255,255,0.06); }
.section--brand .placeholder__label { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.28); color: #fff; }
.section--brand .placeholder::before { background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px); }

/* --------------------------------------------------------------------------
   HERO-HEADLINE — Hintergrund-Markierung hinter dem Text (kein Panel-Look)
   -------------------------------------------------------------------------- */
.hero__content { max-width: 860px; }
.hero__headline { margin: 0 0 0.2em; line-height: 1.46; }
.hero__mark {
  display: inline;
  background: rgba(16, 20, 25, 0.9);
  color: #fff;
  padding: 0.08em 0.36em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero__mark-accent { color: var(--c-accent); }
.hero__lead {
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
  max-width: 54ch;
}
/* etwas mehr Luft unter der markierten Headline */
.hero__headline + .hero__lead { margin-top: 1.6rem; }

/* --------------------------------------------------------------------------
   MEDIEN-RAHMEN mit blauer Ecke (für Sektionsbilder) — Markendetail
   -------------------------------------------------------------------------- */
.media-corner { position: relative; }
.media-corner::before {
  content: "";
  position: absolute;
  top: -12px; left: -12px;
  width: 56px; height: 56px;
  border-top: 3px solid var(--c-accent);
  border-left: 3px solid var(--c-accent);
  z-index: 2;
}
.media-corner::after {
  content: "";
  position: absolute;
  bottom: -12px; right: -12px;
  width: 56px; height: 56px;
  border-bottom: 3px solid var(--c-accent);
  border-right: 3px solid var(--c-accent);
  z-index: 2;
}
