/* =====================================================
   internet SELECT · Corporate Design 2026 · v7
   Basis: CD-Katalog Version 3.0
   ——————————————————————————————————————————————————
   Font:      DM Sans (einzige Schrift, 300/400/500/700)
   Kernfarben: Dunkelblau #0288B8 · Hellblau #84B2C7
               Gelb #F5C518 (Signal, nur auf dunkel!)
   Neutral:   Midnight #1A2340 · Cream #FAF5E4
              Blanc #FAFAF7 · Sand #F0EEE8
   Text:      #1A2340 stark · #4F4F56 mittel · #6B6B6B schwach
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&display=swap');

/* ── Variables (1:1 aus CD-Katalog) ── */
:root {
  /* Kernfarben */
  --hellblau:   #84B2C7;
  --dunkelblau: #0288B8;
  --gelb:       #F5C518;

  /* Erweiterte Palette */
  --midnight:   #1A2340;
  --cream:      #FAF5E4;
  --blanc:      #FAFAF7;
  --sand:       #F0EEE8;

  /* Text */
  --text-1:     #1A2340;   /* stark — Headlines, primärer Text */
  --text-2:     #4F4F56;   /* mittel — WCAG AA, Fließtext */
  --text-3:     #6B6B6B;   /* schwach — Meta, Captions */

  /* Abgeleitete UI-Farben */
  --hellblau-bg: #EAF4F8;  /* Hellblau-Fläche für Karten/Tags */
  --dunkelblau-bg: #E6F4FA;

  /* Font */
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing (8px-Skala aus CD) */
  --s1: 4px;  --s2: 8px;   --s3: 12px;  --s4: 16px;
  --s6: 24px; --s8: 32px;  --s12: 48px; --s16: 64px; --s24: 96px;

  /* Radius (aus CD) */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-pill: 9999px;

  /* Shadows — flach, kein Drama (CD: keine 3D-Effekte) */
  --sh-1: 0 1px 4px rgba(26,35,64,.07);
  --sh-2: 0 2px 12px rgba(26,35,64,.09);
  --sh-3: 0 4px 24px rgba(26,35,64,.11);

  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-1);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ══════════════════════════════════════════════════
   TYPOGRAFIE — DM Sans, vier Gewichte, kein Serif
   Quelle: CD Kapitel 03
══════════════════════════════════════════════════ */

/* Eyebrow: Medium 500, Uppercase, 10-12px, +0.18em */
.t-eyebrow {
  font-family: var(--font);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dunkelblau);
  display: block;
}

/* Hero Headline: Bold 700, 40-56px, line-height 1.1 */
.t-display {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--text-1);
}
/* auf dunklem Hintergrund */
.t-display--light { color: #fff; }
/* Akzent-Wort in Headline (Dunkelblau auf hell, Hellblau auf dunkel) */
.t-display em { font-style: normal; color: var(--dunkelblau); }
.t-display--light em { font-style: normal; color: var(--hellblau); }

/* Section H2: Bold 700, etwas kleiner */
.t-h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -.018em;
  color: var(--text-1);
}
.t-h2--light { color: #fff; }

/* Subline: Light 300, 20-28px, line-height 1.4 */
.t-subline {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
  color: var(--text-2);
}

/* Card title: Medium/Bold */
.t-h3 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--text-1);
}

/* Body: Regular 400, 14-16px, line-height 1.7 */
.t-body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-2);
}

/* ── Layout ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

/* ══════════════════════════════════════════════════
   LOGO — Wortmarke, dreifarbig
   j: #84B2C7 · nternet: DM Sans Regular #0288B8
   SELECT: DM Sans Bold Uppercase #F5C518
   Quelle: CD Kapitel 01
══════════════════════════════════════════════════ */
.logo { display: inline-flex; align-items: baseline; user-select: none; }

.logo__j {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.65rem;
  color: var(--hellblau);
  line-height: 1;
  /* Stilisiertes j — schräg gestellt als Annäherung */
  font-style: italic;
  letter-spacing: -.05em;
}

.logo__nternet {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--dunkelblau);
  letter-spacing: -.01em;
}

.logo__select {
  font-family: var(--font);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gelb);
  margin-left: .3em;
  align-self: center;
}

/* Auf dunklem Hintergrund */
.logo--dark .logo__nternet { color: #fff; }
/* SELECT bleibt Gelb auf dunkel — das ist der Gelb-auf-Dunkel-Anwendungsfall */
/* j bleibt Hellblau */

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: .875rem 0;
  transition: background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(250,245,228,.93); /* cream mit blur */
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom-color: rgba(26,35,64,.08);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav__links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav__links a {
  font-family: var(--font); font-weight: 500; font-size: 13px;
  color: rgba(255,255,255,.75);
  transition: color .18s;
  white-space: nowrap;
}
.nav__links a:hover { color: #fff; }
.nav--scrolled .nav__links a { color: var(--text-2); }
.nav--scrolled .nav__links a:hover { color: var(--dunkelblau); }
/* CTA in Nav: Dunkelblau-Button */
.nav__cta {
  background: var(--dunkelblau) !important;
  color: #fff !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  padding: .45rem 1rem;
  border-radius: var(--r-pill);
  transition: background .18s !important;
}
.nav__cta:hover { background: #0270A0 !important; }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0;
}
.nav__hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: rgba(255,255,255,.85); transition: all .3s;
}
.nav--scrolled .nav__hamburger span { background: var(--midnight); }
.nav__mobile {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(26,35,64,.97); backdrop-filter: blur(20px);
  padding: 1.5rem 32px 2rem; border-top: 1px solid rgba(255,255,255,.07);
}
.nav__mobile.is-open { display: block; }
.nav__mobile ul { list-style: none; }
.nav__mobile a {
  display: block; font-size: 16px; font-weight: 400;
  color: rgba(255,255,255,.8); padding: .875rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07); transition: color .18s;
}
.nav__mobile a:hover { color: var(--gelb); }

/* ══════════════════════════════════════════════════
   BUTTONS — CD Kapitel 06
   Primary: Dunkelblau, Pill
   Yellow CTA: NUR auf dunklem Hintergrund
   Outline: Dunkelblau-Rahmen auf hellem BG
══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font); font-weight: 500; font-size: 14px;
  border: none; cursor: pointer;
  border-radius: var(--r-pill); padding: .75rem 1.6rem;
  transition: background .18s, transform .18s var(--ease), box-shadow .18s;
  text-decoration: none; white-space: nowrap;
}

/* PRIMARY — Dunkelblau (auf hellen Hintergründen) */
.btn--primary {
  background: var(--dunkelblau); color: #fff;
}
.btn--primary:hover {
  background: #0270A0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2,136,184,.3);
}

/* YELLOW CTA — NUR auf Midnight-Hintergrund */
.btn--yellow {
  background: var(--gelb); color: var(--midnight); font-weight: 700;
}
.btn--yellow:hover {
  background: #E8B918;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,197,24,.35);
}

/* OUTLINE — auf hellen Hintergründen */
.btn--outline {
  background: transparent; color: var(--dunkelblau);
  border: 1.5px solid var(--dunkelblau);
}
.btn--outline:hover { background: var(--hellblau-bg); }

/* OUTLINE auf dunklem BG */
.btn--outline-light {
  background: transparent; color: rgba(255,255,255,.88);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}

/* ══════════════════════════════════════════════════
   HERO — Midnight Anker, Yellow CTA
   CD: "Dunkler Anker, Gelb-CTA als einziger Fokus"
══════════════════════════════════════════════════ */
.hero {
  background: var(--midnight);
  min-height: 100svh; display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
/* Hellblau-Atmosphäre (kein harter Gradient — CD: keine Verläufe) */
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 65% 35%,
      rgba(132,178,199,.12) 0%, transparent 100%),
    radial-gradient(ellipse 40% 40% at 15% 75%,
      rgba(2,136,184,.1) 0%, transparent 100%);
}
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; position: relative; z-index: 1;
}
.hero__eyebrow {
  font-weight: 500; font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--hellblau); display: block; margin-bottom: var(--s6);
}
.hero__title { margin-bottom: var(--s6); }
.hero__subline {
  font-weight: 300; font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.55; color: rgba(255,255,255,.65);
  margin-bottom: var(--s12); max-width: 460px;
}
.hero__btns { display: flex; flex-wrap: wrap; gap: var(--s3); }

/* Hero right panel */
.hero__cards {
  display: flex; flex-direction: column;
  gap: 1px; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid rgba(255,255,255,.08);
}
.hero__card {
  background: rgba(255,255,255,.04);
  padding: var(--s6) var(--s8);
  display: flex; gap: var(--s4); align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .25s;
}
.hero__card:last-child { border-bottom: none; }
.hero__card:hover { background: rgba(255,255,255,.07); }
.hero__card-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(132,178,199,.15);
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.hero__card-icon svg { width: 16px; height: 16px; fill: none; stroke: var(--hellblau); stroke-width: 1.75; }
.hero__card-title { font-weight: 700; font-size: 14px; color: rgba(255,255,255,.92); margin-bottom: 3px; }
.hero__card-text { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ══════════════════════════════════════════════════
   SEGMENT (Weichenstellung)
   Auf Cream-Hintergrund, Dunkelblau-Akzente
══════════════════════════════════════════════════ */
.segment { background: var(--cream); padding: var(--s24) 0; }
.segment__header { text-align: center; margin-bottom: var(--s16); }
.segment__header .t-eyebrow { margin-bottom: var(--s2); }
.segment__sub {
  font-weight: 300; font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.4; color: var(--text-2); margin-top: var(--s3);
}
.segment__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.segment__card {
  display: flex; flex-direction: column;
  background: var(--blanc); border: 1px solid rgba(26,35,64,.1);
  border-radius: var(--r-md); padding: var(--s8);
  text-decoration: none; color: inherit;
  transition: all .3s var(--ease); box-shadow: var(--sh-1);
  position: relative; overflow: hidden;
}
/* Hellblau-Akzentlinie oben beim Hover */
.segment__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--dunkelblau); transform: scaleX(0);
  transform-origin: left; transition: transform .3s var(--ease);
}
.segment__card:hover { box-shadow: var(--sh-3); transform: translateY(-3px); }
.segment__card:hover::before { transform: scaleX(1); }
/* Premium-Karte: Midnight-Hintergrund */
.segment__card--premium { background: var(--midnight); border-color: transparent; }
.segment__card--premium::before { background: var(--gelb); }
.segment__card--premium:hover { box-shadow: 0 8px 32px rgba(26,35,64,.25); }
.segment__card-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gelb); border: 1px solid rgba(245,197,24,.4);
  padding: .2rem .7rem; border-radius: var(--r-pill); margin-bottom: var(--s3); width: fit-content;
}
.segment__card-icon {
  width: 40px; height: 40px; margin-bottom: var(--s4);
  background: var(--hellblau-bg); border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
}
.segment__card-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--dunkelblau); stroke-width: 1.75; }
.segment__card--premium .segment__card-icon { background: rgba(132,178,199,.12); }
.segment__card--premium .segment__card-icon svg { stroke: var(--hellblau); }
.segment__card-title { font-weight: 700; font-size: 15px; color: var(--text-1); line-height: 1.3; margin-bottom: var(--s2); }
.segment__card--premium .segment__card-title { color: #fff; }
.segment__card-text { font-size: 14px; color: var(--text-2); line-height: 1.65; flex-grow: 1; margin-bottom: var(--s6); }
.segment__card--premium .segment__card-text { color: rgba(255,255,255,.55); }
.segment__card-cta { font-size: 13px; font-weight: 500; color: var(--dunkelblau); display: inline-flex; align-items: center; gap: .35rem; transition: gap .2s; }
.segment__card--premium .segment__card-cta { color: var(--hellblau); }
.segment__card:hover .segment__card-cta { gap: .6rem; }

/* ══════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════ */
.stats { background: var(--midnight); padding: var(--s16) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stats__item { padding: var(--s8) var(--s6); text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.stats__item:last-child { border-right: none; }
.stats__number {
  font-family: var(--font); font-weight: 700;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -.03em; color: #fff;
  display: block; line-height: 1; margin-bottom: var(--s2);
}
/* Mittlere Zahl in Dunkelblau als Akzent */
.stats__item:nth-child(2) .stats__number { color: var(--hellblau); }
.stats__label { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.55); line-height: 1.5; max-width: 180px; margin: 0 auto; }

/* ══════════════════════════════════════════════════
   REFERENZEN
══════════════════════════════════════════════════ */
.referenzen { background: var(--blanc); padding: var(--s16) 0; border-top: 1px solid rgba(26,35,64,.07); border-bottom: 1px solid rgba(26,35,64,.07); }
.referenzen__eyebrow { text-align: center; margin-bottom: var(--s8); }
.referenzen__logos { display: flex; flex-wrap: wrap; gap: var(--s3); justify-content: center; }
.ref-badge {
  font-family: var(--font); font-weight: 500; font-size: 12px;
  color: var(--text-2); padding: .45rem 1.1rem;
  border: 1px solid rgba(26,35,64,.12);
  border-radius: var(--r-pill); background: var(--blanc); transition: all .2s;
  letter-spacing: .02em;
}
.ref-badge:hover { border-color: var(--dunkelblau); color: var(--dunkelblau); background: var(--hellblau-bg); }

/* ══════════════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════════════ */
.problem { background: var(--sand); padding: var(--s24) 0; }
.problem__header { text-align: center; margin-bottom: var(--s16); }
.problem__header .t-eyebrow { margin-bottom: var(--s2); }
.problem__header .t-h2 { margin-bottom: var(--s4); }
.problem__header p { font-weight: 300; font-size: 17px; color: var(--text-2); max-width: 500px; margin: 0 auto; line-height: 1.7; }
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }
.problem__card { background: var(--cream); border: 1px solid rgba(26,35,64,.08); border-radius: var(--r-md); padding: var(--s8); box-shadow: var(--sh-1); }
.problem__card-tag { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--dunkelblau); background: var(--hellblau-bg); padding: .25rem .75rem; border-radius: var(--r-pill); margin-bottom: var(--s6); }
.problem__card-title { font-weight: 700; font-size: 17px; color: var(--text-1); margin-bottom: var(--s6); line-height: 1.35; }
.problem__pain-list { list-style: none; }
.problem__pain-list li { display: flex; gap: var(--s3); font-size: 14px; color: var(--text-2); line-height: 1.65; padding: .5rem 0; border-top: 1px solid rgba(26,35,64,.07); }
.problem__pain-list li:first-child { border-top: none; }
.problem__pain-list li::before { content: '—'; color: var(--dunkelblau); flex-shrink: 0; font-weight: 700; }

/* ══════════════════════════════════════════════════
   SOLUTIONS
══════════════════════════════════════════════════ */
.solutions { background: var(--blanc); padding: var(--s24) 0; }
.solutions__header { text-align: center; margin-bottom: var(--s16); }
.solutions__header .t-eyebrow { margin-bottom: var(--s2); }
.solutions__header .t-h2 { margin-bottom: var(--s4); }
.solutions__header p { font-weight: 300; font-size: 17px; color: var(--text-2); max-width: 480px; margin: 0 auto; line-height: 1.7; }
.solutions__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.solution-card {
  background: var(--cream); border: 1px solid rgba(26,35,64,.08);
  border-radius: var(--r-md); padding: var(--s8);
  display: flex; flex-direction: column; box-shadow: var(--sh-1);
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.solution-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--dunkelblau); transform: scaleX(0);
  transform-origin: left; transition: transform .3s var(--ease);
}
.solution-card:hover { box-shadow: var(--sh-3); transform: translateY(-3px); background: var(--blanc); }
.solution-card:hover::after { transform: scaleX(1); }
.solution-card__num { font-weight: 700; font-size: 44px; letter-spacing: -.05em; color: var(--hellblau); opacity: .4; line-height: 1; margin-bottom: var(--s6); }
.solution-card__title { font-weight: 700; font-size: 16px; color: var(--text-1); line-height: 1.3; margin-bottom: var(--s2); }
.solution-card__tag { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--dunkelblau); background: var(--hellblau-bg); padding: .2rem .7rem; border-radius: var(--r-pill); margin-bottom: var(--s6); }
.solution-card__text { font-size: 14px; color: var(--text-2); line-height: 1.75; flex-grow: 1; margin-bottom: var(--s8); }
.solution-card__benefits { list-style: none; margin-bottom: var(--s8); }
.solution-card__benefits li { font-size: 13px; color: var(--text-2); padding: .4rem 0; padding-left: 1rem; position: relative; border-top: 1px solid rgba(26,35,64,.06); line-height: 1.5; }
.solution-card__benefits li:first-child { border-top: none; }
.solution-card__benefits li::before { content: '✓'; position: absolute; left: 0; color: var(--dunkelblau); font-weight: 700; font-size: 12px; }
.solution-card__cta { font-size: 13px; font-weight: 500; color: var(--dunkelblau); margin-top: auto; display: inline-flex; align-items: center; gap: .35rem; transition: gap .2s; }
.solution-card__cta:hover { gap: .6rem; }

/* ══════════════════════════════════════════════════
   WHY — Midnight, Hellblau-Akzente
══════════════════════════════════════════════════ */
.why { background: var(--midnight); padding: var(--s24) 0; }
.why__grid { display: grid; grid-template-columns: 1fr 1.65fr; gap: var(--s24); align-items: center; }
.why__image-wrap { position: relative; }
.why__photo { width: 100%; border-radius: var(--r-md); object-fit: cover; aspect-ratio: 3/4; display: block; }
.why__photo-placeholder { width: 100%; aspect-ratio: 3/4; border-radius: var(--r-md); background: rgba(132,178,199,.08); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.08); }
/* Hellblau Akzentlinie links neben Foto */
.why__image-wrap::after { content: ''; position: absolute; left: -1px; top: 20%; bottom: 20%; width: 3px; background: var(--hellblau); border-radius: 2px; }
.why__badge { position: absolute; bottom: -1.25rem; right: -1.25rem; background: var(--cream); border-radius: var(--r-sm); padding: var(--s4) var(--s6); box-shadow: var(--sh-3); text-align: center; min-width: 96px; }
.why__badge-num { font-weight: 700; font-size: 26px; letter-spacing: -.03em; color: var(--dunkelblau); display: block; line-height: 1; }
.why__badge-label { font-size: 11px; color: var(--text-2); display: block; margin-top: 3px; }
.why__content .t-eyebrow { color: var(--hellblau); margin-bottom: var(--s2); }
.why__content .t-h2 { color: #fff; margin-bottom: var(--s4); }
.why__subline { font-weight: 300; font-size: clamp(15px, 1.6vw, 18px); color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: var(--s12); }
.why__pillars { margin-bottom: var(--s12); }
.why__pillar { display: flex; gap: var(--s6); align-items: flex-start; padding: var(--s4) 0; border-top: 1px solid rgba(255,255,255,.08); }
.why__pillar:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }
.why__pillar-icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(132,178,199,.12); border-radius: var(--r-xs); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.why__pillar-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--hellblau); stroke-width: 1.75; }
.why__pillar-title { font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 3px; }
.why__pillar-text { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ══════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════ */
.process { background: var(--blanc); padding: var(--s24) 0; border-top: 1px solid rgba(26,35,64,.07); }
.process__header { text-align: center; margin-bottom: var(--s16); }
.process__header .t-eyebrow { margin-bottom: var(--s2); }
.process__header .t-h2 { margin-bottom: var(--s4); }
.process__header p { font-weight: 300; font-size: 17px; color: var(--text-2); max-width: 440px; margin: 0 auto; }
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.process__step { background: var(--cream); border: 1px solid rgba(26,35,64,.08); border-radius: var(--r-md); padding: var(--s8); transition: background .2s; }
.process__step:hover { background: var(--hellblau-bg); }
.process__step-num { font-weight: 700; font-size: 40px; letter-spacing: -.05em; color: var(--dunkelblau); opacity: .18; line-height: 1; margin-bottom: var(--s4); }
.process__step:nth-child(2) .process__step-num { opacity: .28; }
.process__step:nth-child(3) .process__step-num { opacity: .38; }
.process__step-title { font-weight: 700; font-size: 16px; color: var(--text-1); margin-bottom: var(--s2); }
.process__step-text { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   LEAD MAGNET
══════════════════════════════════════════════════ */
.leadmagnet { background: var(--sand); padding: var(--s24) 0; border-top: 1px solid rgba(26,35,64,.07); }
.leadmagnet__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--s24); align-items: center; }
.leadmagnet__content .t-eyebrow { margin-bottom: var(--s2); }
.leadmagnet__content .t-h2 { margin-bottom: var(--s4); }
.leadmagnet__text { font-weight: 300; font-size: 16px; color: var(--text-2); line-height: 1.75; margin-bottom: var(--s4); }
.leadmagnet__list { list-style: none; margin-bottom: var(--s12); }
.leadmagnet__list li { font-size: 14px; color: var(--text-2); padding: .5rem 0; border-top: 1px solid rgba(26,35,64,.07); padding-left: 1.2rem; position: relative; line-height: 1.55; }
.leadmagnet__list li:first-child { border-top: none; }
.leadmagnet__list li::before { content: '—'; position: absolute; left: 0; color: var(--dunkelblau); font-weight: 700; }
.leadmagnet__visual { display: flex; justify-content: center; }
.leadmagnet__mock {
  background: var(--midnight); border-radius: var(--r-lg); padding: var(--s8);
  width: 100%; max-width: 268px; box-shadow: var(--sh-3);
  transform: rotate(1.5deg); transition: transform .5s var(--ease);
  border: 1px solid rgba(255,255,255,.07); position: relative;
}
/* Gelb-Linie ganz oben — auf Midnight ist Gelb erlaubt */
.leadmagnet__mock::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gelb); border-radius: var(--r-lg) var(--r-lg) 0 0; }
.leadmagnet__mock:hover { transform: rotate(0deg) scale(1.02); }
.leadmagnet__mock-eye { font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--hellblau); margin-bottom: var(--s3); display: block; }
.leadmagnet__mock-title { font-weight: 700; font-size: 16px; color: #fff; line-height: 1.4; margin-bottom: var(--s6); letter-spacing: -.01em; }
.leadmagnet__mock-lines { display: flex; flex-direction: column; gap: 1px; margin-bottom: var(--s6); }
.leadmagnet__mock-q { font-size: 12px; color: rgba(255,255,255,.5); padding: .45rem var(--s3); background: rgba(255,255,255,.04); border-left: 2px solid var(--dunkelblau); }
.leadmagnet__mock-foot { font-size: 12px; font-weight: 400; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.08); padding-top: var(--s3); }
.leadmagnet__mock-j { font-style: italic; color: var(--hellblau); margin-right: -1px; }

/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
.faq { background: var(--blanc); padding: var(--s24) 0; }
.faq__header { text-align: center; margin-bottom: var(--s16); }
.faq__header .t-eyebrow { margin-bottom: var(--s2); }
.faq__list { max-width: 720px; margin: 0 auto; border: 1px solid rgba(26,35,64,.1); border-radius: var(--r-md); overflow: hidden; }
.faq__item { border-bottom: 1px solid rgba(26,35,64,.08); }
.faq__item:last-child { border-bottom: none; }
.faq__question { width: 100%; background: none; border: none; padding: var(--s6) var(--s8); display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--font); font-weight: 500; font-size: 15px; color: var(--text-1); text-align: left; gap: var(--s4); transition: background .15s; }
.faq__question:hover { background: var(--cream); }
.faq__icon { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(26,35,64,.15); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-2); flex-shrink: 0; transition: all .25s var(--ease); }
.faq__item.is-open .faq__icon { background: var(--dunkelblau); border-color: var(--dunkelblau); color: #fff; transform: rotate(45deg); }
.faq__answer { display: none; padding: 0 var(--s8) var(--s6); font-size: 14px; color: var(--text-2); line-height: 1.8; background: var(--cream); }
.faq__item.is-open .faq__answer { display: block; }

/* ══════════════════════════════════════════════════
   CTA BANNER — Midnight, Gelb-CTA (CD konform)
   CD: "Nur auf dunklem Hintergrund (Midnight)"
══════════════════════════════════════════════════ */
.cta-banner { background: var(--midnight); padding: var(--s24) 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(132,178,199,.1) 0%, transparent 100%);
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner .t-eyebrow { color: var(--hellblau); margin-bottom: var(--s2); }
.cta-banner__title { font-weight: 700; font-size: clamp(26px, 4vw, 44px); letter-spacing: -.02em; line-height: 1.1; color: #fff; margin-bottom: var(--s4); }
.cta-banner__sub { font-weight: 300; font-size: 16px; color: rgba(255,255,255,.6); max-width: 460px; margin: 0 auto var(--s12); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer { background: var(--midnight); border-top: 1px solid rgba(132,178,199,.15); padding: var(--s16) 0 var(--s8); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--s16); margin-bottom: var(--s16); padding-bottom: var(--s12); border-bottom: 1px solid rgba(255,255,255,.07); }
.footer__brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: var(--s3); max-width: 260px; }
.footer__col-title { font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: var(--s4); }
.footer__links { list-style: none; }
.footer__links li + li { margin-top: var(--s2); }
.footer__links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .18s; }
.footer__links a:hover { color: rgba(255,255,255,.88); }
.footer__contact-item { display: flex; gap: var(--s3); font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: var(--s2); align-items: flex-start; }
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; width: 14px; height: 14px; fill: none; stroke: rgba(255,255,255,.4); stroke-width: 1.75; }
.footer__contact-item a { color: rgba(255,255,255,.5); transition: color .18s; }
.footer__contact-item a:hover { color: rgba(255,255,255,.88); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: var(--s3); }
.footer__legal { display: flex; gap: var(--s6); }
.footer__legal a { color: rgba(255,255,255,.3); transition: color .18s; }
.footer__legal a:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ══════════════════════════════════════════════════
   SUBPAGE HERO (inline style helper)
══════════════════════════════════════════════════ */
.page-hero { background: var(--midnight); padding: 130px 0 80px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 64px; background: var(--blanc); clip-path: polygon(0 100%, 100% 30%, 100% 100%); z-index: 2; }
.page-hero__inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero .t-eyebrow { color: var(--hellblau); margin-bottom: var(--s3); }
.page-hero .t-display--light { margin-bottom: var(--s6); }
.page-hero__sub { font-weight: 300; font-size: clamp(16px, 1.8vw, 20px); color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: var(--s8); }
.page-hero__btns { display: flex; gap: var(--s3); flex-wrap: wrap; }

/* ══════════════════════════════════════════════════
   RESPONSIVE — stapeln, nie verstecken
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s16); }
  .hero__cards { max-width: 500px; margin: 0 auto; width: 100%; }
  .hero__subline { max-width: 100%; }
  .why__grid { grid-template-columns: 1fr; gap: var(--s16); }
  .why__image-wrap { max-width: 280px; margin: 0 auto; }
  .leadmagnet__inner { grid-template-columns: 1fr; gap: var(--s16); }
  .leadmagnet__visual { max-width: 268px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .segment__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stats__item:last-child { border-bottom: none; }
  .problem__grid { grid-template-columns: 1fr; }
  .solutions__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--s8); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__btns { flex-direction: column; width: 100%; }
  .hero__btns .btn { justify-content: center; width: 100%; }
  .why__badge { bottom: -.75rem; right: -.75rem; }
}
