/* ==========================================================================
   KOVEKO® Landingpage — Design-System Bollwein GmbH
   ========================================================================== */

:root {
  --bordeaux: #8A1F2D;
  --bordeaux-dark: #6E1622;
  --dark-warm: #2A1114;
  --cream: #FAF7F4;
  --white: #FFFFFF;
  --text: #1E1E1E;
  --gray: #6B6B6B;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 8px;
  --shadow-soft: 0 12px 40px rgba(30, 30, 30, .10);
  --shadow-video: 0 30px 80px rgba(138, 31, 45, .25);
  --container: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px; /* Anker landen nicht unter dem Sticky-Header */
}

/* Kein horizontales Scrollen (iOS!): waehrend Einflug-Animationen ragen
   Elemente seitlich raus. "clip" statt "hidden", damit position:sticky
   intakt bleibt (clip erzeugt keinen Scroll-Container). */
html, body {
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--bordeaux); color: var(--white); }

:focus-visible {
  outline: 3px solid rgba(138, 31, 45, .55);
  outline-offset: 3px;
  border-radius: 4px;
}

img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.container--narrow { max-width: 820px; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.012em;
  text-wrap: balance;
}
h2 { font-size: clamp(1.9rem, 1.2rem + 3vw, 3.1rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
/* Feine Schmucklinie unter zentrierten Sektions-Titeln */
.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  margin: 1.1rem auto 0;
  background: linear-gradient(90deg, var(--bordeaux), #C04A58);
}
.section--light { background: var(--white); }
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--dark-warm);
  color: var(--cream);
  overflow: hidden;
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section-content { position: relative; z-index: 2; }
.section-title { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-intro { max-width: 760px; margin: 0 auto 1.2rem; text-align: center; }
.section--dark .section-intro { color: rgba(250, 247, 244, .88); }

/* Parallax-Hintergrund dunkler Sektionen */
.parallax-bg {
  position: absolute;
  inset: -18% 0;
  z-index: 1;
  /* weiche Radial-Verlaeufe statt filter:blur(28px) — Blur pro Frame war
     der Haupt-Ruckler beim Scrollen (v. a. mobil) */
  background:
    radial-gradient(ellipse 70% 55% at 20% 25%, rgba(138, 31, 45, .30), transparent 78%),
    radial-gradient(ellipse 65% 60% at 85% 75%, rgba(110, 22, 34, .36), transparent 78%),
    radial-gradient(ellipse 50% 45% at 60% 15%, rgba(138, 31, 45, .15), transparent 78%);
  pointer-events: none;
  will-change: transform;
}

/* Finaler CTA: echtes Foto als abgedunkelter Parallax-Hintergrund */
.section--final .parallax-bg {
  /* Vor-geblurrtes Bild statt Live-filter:blur — spart massiv GPU beim Scrollen.
     center 18%: Bild nach unten versetzt, damit die Köpfe im Ausschnitt bleiben */
  background:
    linear-gradient(rgba(42, 17, 20, .82), rgba(42, 17, 20, .88)),
    url("/assets/img/birgit-pool-blur.jpg") center 18% / cover no-repeat;
}

/* ==========================================================================
   Progress-Bar & Header
   ========================================================================== */

.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 100%;
  background: var(--bordeaux);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 1001;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(30, 30, 30, .06);
  transition: box-shadow .3s ease, padding .3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  transition: padding .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(30, 30, 30, .10); }
.site-header.is-scrolled .header-inner { padding: .55rem 0; }
.header-logo img { width: 150px; height: auto; }
.header-nav { display: flex; gap: 1.6rem; margin-left: auto; }
.header-nav a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  padding: .3rem 0;
  transition: color .2s ease;
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--bordeaux);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .28s ease;
}
.header-nav a:hover { color: var(--bordeaux); }
.header-nav a:hover::after { transform: scaleX(1); }

/* ==========================================================================
   CTA-Buttons
   ========================================================================== */

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #9B2536 0%, var(--bordeaux) 45%, var(--bordeaux-dark) 100%);
  color: var(--white);
  font-weight: 800;
  font-family: var(--font-body);
  font-size: 1.05rem;
  letter-spacing: .01em;
  text-decoration: none;
  text-align: center;
  padding: 1.05rem 2.2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 14px 36px rgba(138, 31, 45, .35);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.cta-btn:hover {
  filter: brightness(.92);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 20px 44px rgba(138, 31, 45, .45);
}
.cta-btn:active { transform: translateY(0) scale(.99); filter: brightness(.85); }
.cta-btn:focus-visible { outline-offset: 4px; }
.cta-btn--small { padding: .7rem 1.3rem; font-size: .92rem; }
.cta-btn--big { padding: 1.25rem 2.8rem; font-size: 1.18rem; }

.cta-block { text-align: center; margin-top: 2.4rem; }
.micro-text { margin-top: .8rem; color: var(--gray); font-size: .92rem; }
.micro-text--light { color: rgba(250, 247, 244, .75); }

/* ==========================================================================
   Hero
   ========================================================================== */

/* Fold-sicherer Hero: alle vertikalen Masse zusaetzlich an die
   Viewport-HOEHE gekoppelt (svh) — CTA + Micro-Text bleiben auf jedem
   Bildschirm ohne Scrollen sichtbar. */
.hero { padding-top: min(4rem, 1.8svh); overflow: hidden; }
/* Warmer Bordeaux-Schimmer hinter dem Hero */
.hero::before {
  content: "";
  position: absolute;
  top: -30%; left: 50%;
  width: 1100px; height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(138, 31, 45, .07), transparent 65%);
  pointer-events: none;
}
.hero .container { position: relative; }
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: clamp(.72rem, .6rem + .5vw, .9rem);
  color: var(--bordeaux);
  margin-bottom: 1.2rem;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  flex: 0 0 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 31, 45, .5));
}
.eyebrow::after { background: linear-gradient(90deg, rgba(138, 31, 45, .5), transparent); }

.hero-bullets { gap: 1.1rem; }
.hero-bullets li { font-size: 1rem; line-height: 1.55; }
.hero .video-card { margin-inline: auto; }

/* Fold-Kompression NUR auf Desktop/Laptop: dort koppeln die svh-Caps die
   Vertikalmasse an flache Bildschirme. Auf Handys (schmal + hoch) wuerden
   sie die Schrift unlesbar klein machen — dort sorgt stattdessen die
   CTA-vor-Bullets-Umsortierung fuer den sichtbaren Button. */
@media (min-width: 861px) {
  .hero .eyebrow { margin-bottom: min(1.2rem, 1.5svh); font-size: min(clamp(.72rem, .6rem + .5vw, .9rem), 1.7svh); }
  .hero .video-card { width: min(100%, 67.5svh); } /* 38svh Hoehe × 16/9 */
  .hero-bullets { gap: min(1.1rem, 1.2svh); }
  .hero-bullets li { font-size: min(1rem, 1.9svh); }
  .hero .cta-block { margin-top: min(2.4rem, 2.2svh); }
  .hero .cta-btn { padding-top: min(1.05rem, 1.7svh); padding-bottom: min(1.05rem, 1.7svh); }
  .hero .micro-text { margin-top: min(.8rem, 1svh); font-size: min(.92rem, 1.9svh); }
  .hero .badge-bar { margin-top: min(3rem, 2.4svh); }
}
.hero-h1 {
  text-align: center;
  font-size: min(clamp(2.2rem, 1.3rem + 3.2vw, 3.6rem), 5.1svh);
  max-width: 960px;
  margin: 0 auto min(1.3rem, 1.6svh);
}
.h1-line { display: block; }
.hero-subline {
  text-align: center;
  font-weight: 700;
  font-size: min(clamp(1.05rem, .9rem + .8vw, 1.35rem), 2.5svh);
  max-width: 860px;
  margin: 0 auto min(2.4rem, 2.4svh);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
}

.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(138, 31, 45, .16);
  box-shadow:
    0 0 0 6px rgba(138, 31, 45, .05),
    var(--shadow-video);
  transition: transform .3s ease, box-shadow .3s ease;
  aspect-ratio: 16 / 9;
  background: var(--dark-warm);
}
.video-card img,
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card:hover { transform: translateY(-6px); box-shadow: 0 40px 96px rgba(138, 31, 45, .32); }
/* Kleines Info-Badge auf Video-Karten (z. B. „Imagefilm · 5 Min.") */
.video-badge {
  position: absolute;
  top: .9rem;
  left: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(26, 11, 13, .72);
  color: var(--cream);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .35rem .75rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
/* Film in dunkler Sektion: vertikal zum Text zentriert (wie alle two-col-Sektionen) */
.two-col__media--film .video-card { aspect-ratio: 16 / 9; }
.section--dark .two-col__media figcaption { color: rgba(250, 247, 244, .65); }

/* Grosser Play-Button ueber Videos: ganze Flaeche klickbar
   (native Controls sind vor dem Start ausgeblendet) */
.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.play-overlay.is-hidden { display: none; }
.play-overlay__btn {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--bordeaux);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.play-overlay__btn svg { margin-left: 4px; }
.play-overlay:hover .play-overlay__btn {
  transform: scale(1.1);
  box-shadow: 0 16px 40px rgba(138, 31, 45, .45);
}
@media (max-width: 640px) {
  .play-overlay__btn { width: 60px; height: 60px; }
}

.play-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 74px; height: 74px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .92);
  color: var(--bordeaux);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  transition: transform .25s ease;
}
.play-badge:hover { transform: translate(-50%, -50%) scale(1.08); }

.hero-bullets { list-style: none; display: grid; gap: 1.1rem; }
.hero-bullets li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: 1rem;
}
.check-icon {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bordeaux);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-top: .15rem;
}
.check-icon svg { width: 15px; height: 15px; }

.badge-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2rem;
  margin-top: 3rem;
}
.badge-item {
  color: var(--gray);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  text-decoration: none;
}
.badge-press {
  border: 1px solid rgba(107, 107, 107, .3);
  border-radius: 6px;
  padding: .45rem 1rem;
  opacity: .75;
  transition: color .2s ease, border-color .2s ease, opacity .2s ease;
}
a.badge-press:hover { color: var(--bordeaux); border-color: var(--bordeaux); opacity: 1; }
.badge-press--logo {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  opacity: 1;
  padding: .55rem 1.1rem;
  border-color: rgba(107, 107, 107, .18);
}
.badge-press--logo img { height: 22px; width: auto; display: block; }
.badge-press--on-dark { background: #1E1E1E; border-color: #1E1E1E; }
a.badge-press--logo:hover { border-color: var(--bordeaux); transform: translateY(-1px); }
.badge-provenexpert { display: flex; align-items: center; gap: .5rem; color: var(--text); }
a.badge-provenexpert:hover { color: var(--bordeaux); }

/* ProvenExpert-Rating-Chip (Widget-Look) */
.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: var(--white);
  border: 1px solid rgba(107, 107, 107, .18);
  border-radius: 12px;
  padding: .55rem 1.1rem;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 6px 20px rgba(30, 30, 30, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rating-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(138, 31, 45, .35);
  box-shadow: 0 10px 26px rgba(138, 31, 45, .14);
}
.rating-chip .stars { font-size: 1.1rem; }
.rating-chip__text { display: flex; flex-direction: column; line-height: 1.25; }
.rating-chip__text strong { font-size: .95rem; }
.rating-chip__text span { font-size: .78rem; color: var(--gray); font-weight: 600; }

/* „Bekannt aus"-Label vor den Presse-Logos */
.badge-label {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gray);
  opacity: .8;
}
.badge-bar--dark .badge-label { color: rgba(250, 247, 244, .55); }
.badge-koveko { color: var(--bordeaux); font-family: var(--font-head); font-size: 1.1rem; }
.badge-bar--dark { justify-content: flex-start; margin-top: 2rem; }
.badge-bar--dark .badge-item { color: rgba(250, 247, 244, .7); border-color: rgba(250, 247, 244, .25); }

.stars { color: #E8A33D; letter-spacing: .1em; font-size: 1.05rem; }
.stars--big { font-size: 2.2rem; }

/* ==========================================================================
   Zweispaltige Sektionen
   ========================================================================== */

.two-col {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.two-col--reverse { grid-template-columns: .95fr 1.05fr; }
.two-col__text p { margin-bottom: 1.1rem; }
.two-col__media img {
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  width: 100%;
}
.two-col__media figcaption {
  margin-top: .7rem;
  font-size: .9rem;
  color: var(--gray);
  text-align: center;
}

.pain-list { list-style: none; display: grid; gap: .7rem; margin: 1rem 0 1.6rem; }
.pain-list li {
  padding-left: 1.7rem;
  position: relative;
  font-weight: 600;
}
.pain-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--bordeaux);
  font-weight: 800;
}
.closing-bold { font-size: 1.08rem; }

/* ==========================================================================
   Karten-Grids & Icon-Karten
   ========================================================================== */

.card-grid { display: grid; gap: 1.4rem; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.icon-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 2.4rem 1.8rem 2.2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.icon-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bordeaux), #C04A58);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .4s ease;
}
.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(138, 31, 45, .14);
}
.icon-card:hover::before { transform: scaleX(1); }
.icon-circle {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(138, 31, 45, .09);
  color: var(--bordeaux);
  margin-bottom: 1.2rem;
}
.icon-circle svg { width: 32px; height: 32px; }

/* ==========================================================================
   Prozess-Schaubild (Sektion 5)
   ========================================================================== */

/* KOVEKO-Konzept: 4 Glas-Karten mit Verbindungslinie, sequenzielles Aufleuchten */
.concept-steps { position: relative; margin-top: clamp(2rem, 4vw, 3.2rem); }
.concept-line {
  position: absolute;
  top: 28px;
  left: 12.5%;
  width: 75%;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}
.concept-line-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--bordeaux), #C04A58);
  box-shadow: 0 0 14px rgba(138, 31, 45, .9);
  transform-origin: 0 50%;
}
.concept-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  padding: 28px 0 0; /* Punkt-Zentren (56px-Dot, -28px versetzt) liegen auf der Linie bei top:28px */
  margin: 0;
}
.concept-card {
  position: relative;
  z-index: 1;
  text-align: center;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 18px;
  padding: 0 1.3rem 1.7rem;
  transition: border-color .4s ease, background .4s ease;
}
/* backdrop-blur nur auf Desktop — mobil ein Scroll-Performance-Killer */
@media (min-width: 861px) {
  .concept-card {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}
.concept-card.is-lit {
  border-color: rgba(138, 31, 45, .55);
  background: rgba(138, 31, 45, .10);
}
.concept-dot {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin: -28px auto 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  border: 4px solid var(--dark-warm);
  box-shadow: 0 0 0 0 rgba(138, 31, 45, .4);
  transition: box-shadow .5s ease, transform .5s ease;
}
.concept-card.is-lit .concept-dot {
  box-shadow: 0 0 0 8px rgba(138, 31, 45, .2), 0 0 26px rgba(138, 31, 45, .8);
  transform: scale(1.06);
}
.concept-card h3 { font-size: 1.08rem; margin-bottom: .55rem; }
.concept-card p { font-size: .88rem; color: rgba(250, 247, 244, .78); line-height: 1.55; }

@media (max-width: 1023px) {
  .concept-line { display: none; }
  .concept-grid { grid-template-columns: repeat(2, 1fr); }
  .concept-steps { margin-top: 3rem; }
  .concept-grid { row-gap: 2.6rem; }
}
@media (max-width: 640px) {
  .concept-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Fallstudien
   ========================================================================== */

.case-study {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  background: var(--cream);
  border-radius: 18px;
  margin-bottom: 2rem;
}
.video-card--case { aspect-ratio: 16 / 9; }
.case-quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.14rem;
  line-height: 1.4;
  margin-top: 1.2rem;
  color: var(--bordeaux-dark);
}
.case-attribution { margin-top: .6rem; font-size: .92rem; color: var(--gray); }

.case-para { margin-bottom: 1.2rem; }
.case-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
  font-weight: 800;
  color: var(--white);
  background: var(--bordeaux);
  border-radius: 4px;
  padding: .2rem .6rem;
  margin-bottom: .4rem;
}

.kpi-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(107, 107, 107, .2);
}
.kpi-value { font-weight: 800; font-size: 1.3rem; font-family: var(--font-head); }
.kpi-arrow { width: 64px; height: 22px; color: var(--bordeaux); }
.kpi-card {
  background: var(--bordeaux);
  color: var(--white);
  font-weight: 800;
  padding: .55rem 1.1rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(138, 31, 45, .3);
}

/* Jede zweite Fallstudie gespiegelt: Video rechts, Text links */
.case-study--flip .case-study__media { order: 2; }
.case-study--flip .case-study__text { order: 1; }

/* Video-Stimmen-Slider: ein Testimonial pro Ansicht, Pfeile links/rechts */
.voice-title {
  text-align: center;
  font-size: clamp(1.3rem, 1rem + 1.4vw, 1.8rem);
  margin: clamp(2.4rem, 5vw, 3.6rem) 0 1.6rem;
}
.voice-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.voice-viewport { overflow: hidden; border-radius: 16px; }
/* Slider-Layout nur mit aktivem GSAP — ohne JS stehen die Videos untereinander */
html.gsap-ready .voice-track { display: flex; }
html.gsap-ready .voice-slide { flex: 0 0 100%; min-width: 0; }
.voice-slide { margin: 0 0 1.2rem; }
html.gsap-ready .voice-slide { margin-bottom: 0; }

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(138, 31, 45, .18);
  background: var(--white);
  color: var(--bordeaux);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(30, 30, 30, .16);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.slider-nav:hover {
  background: var(--bordeaux);
  color: var(--white);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 14px 34px rgba(138, 31, 45, .35);
}
.slider-nav--prev { left: -26px; }
.slider-nav--next { right: -26px; }
html:not(.gsap-ready) .slider-nav,
html:not(.gsap-ready) .voice-dots { display: none; }

.voice-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.3rem;
}
.voice-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(138, 31, 45, .22);
  transition: background .25s ease, transform .25s ease;
}
.voice-dot.is-active { background: var(--bordeaux); transform: scale(1.25); }

@media (max-width: 900px) {
  .slider-nav { width: 44px; height: 44px; }
  .slider-nav--prev { left: .4rem; }
  .slider-nav--next { right: .4rem; }
}

.footnote {
  font-size: .82rem;
  color: var(--gray);
  text-align: center;
  margin-top: 1.5rem;
}

/* ==========================================================================
   ProvenExpert
   ========================================================================== */

.trust-summary { text-align: center; margin-bottom: 2.5rem; }
.trust-score { font-weight: 700; font-size: 1.15rem; margin-top: .4rem; }
/* Endlos scrollende Bewertungs-Spalten (Marquee) */
.review-marquee {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
/* Maske + feste Höhe nur mit aktivem GSAP — ohne JS bleiben die Karten statisch lesbar */
html.gsap-ready .review-marquee {
  max-height: 620px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}
.review-col { width: min(340px, 100%); min-width: 0; }
.review-col--md { display: none; }
.review-col--lg { display: none; }
@media (min-width: 720px) { .review-col--md { display: block; } }
@media (min-width: 1080px) { .review-col--lg { display: block; } }

.review-set {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 0 1.5rem;
  margin: 0;
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(107, 107, 107, .14);
  border-radius: 24px;
  padding: 2rem 1.8rem;
  box-shadow: 0 10px 30px rgba(30, 30, 30, .06);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
  cursor: default;
}
.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(138, 31, 45, .16), 0 10px 10px -5px rgba(0, 0, 0, .04);
}
.review-text { font-size: .95rem; color: var(--gray); line-height: 1.6; margin: .8rem 0 0; }
.review-footer {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.4rem;
}
.review-avatar {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
  color: var(--white);
  font-weight: 800;
  display: grid;
  place-items: center;
}
.review-who { display: flex; flex-direction: column; }
.review-name { font-weight: 700; line-height: 1.3; }
.review-role { font-size: .84rem; color: var(--gray); }
.trust-link { text-align: center; margin-top: 1.8rem; }
.trust-link a { color: var(--bordeaux); font-weight: 700; text-decoration: none; }
.trust-link a:hover { text-decoration: underline; }

/* ==========================================================================
   Kundenreisen (Sektion 8b)
   ========================================================================== */

.travel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  max-width: 1020px;
  margin: 0 auto;
}
.travel-item { margin: 0; }
.travel-item figcaption {
  margin-top: .8rem;
  text-align: center;
  font-size: .92rem;
  color: var(--gray);
}
@media (max-width: 860px) {
  .travel-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ==========================================================================
   Programm (Sektion 8) & Begleitung (Sektion 9)
   ========================================================================== */

.feature-list { display: grid; gap: 1.6rem; margin-bottom: .5rem; }
.feature h3 { color: var(--white); }
.feature p { color: rgba(250, 247, 244, .82); margin-bottom: 0; }

.quote-card {
  position: relative;
  background: var(--cream);
  border-left: 5px solid var(--bordeaux);
  border-radius: 0 14px 14px 0;
  padding: 1.7rem 1.8rem 1.5rem 2rem;
  margin: 1.6rem 0;
}
.quote-card::before {
  content: "\201E";
  position: absolute;
  top: -.4rem;
  left: .7rem;
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 1;
  color: rgba(138, 31, 45, .18);
  pointer-events: none;
}
.quote-card p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.18rem;
  margin-bottom: .6rem;
}
.quote-card footer { font-size: .9rem; color: var(--gray); }

/* ==========================================================================
   3 Schritte (Sektion 10)
   ========================================================================== */

/* Journey-Timeline: verbindende Linie, Nummern-Badges, Karten mit Themen-Chips */
.journey {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 2.4rem;
}
.journey::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 20px;
  bottom: 40px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--bordeaux) 0%, rgba(138, 31, 45, .35) 70%, rgba(138, 31, 45, .08) 100%);
}
.journey-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.journey-marker { position: relative; z-index: 1; }
.journey-num {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  border: 4px solid var(--cream);
  box-shadow: 0 8px 22px rgba(138, 31, 45, .35);
}
.journey-card {
  background: var(--white);
  border: 1px solid rgba(138, 31, 45, .08);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: 0 18px 50px rgba(30, 30, 30, .08);
}
.journey-head {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
}
.journey-head h3 { font-size: 1.5rem; margin: 0; }
.journey-weeks {
  background: rgba(138, 31, 45, .08);
  color: var(--bordeaux);
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .32rem .85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.journey-desc { color: var(--text); margin: .8rem 0 1.3rem; max-width: 640px; }
.journey-topics {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  padding: 0;
  margin: 0 0 1.7rem;
}
.journey-topics li {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--cream);
  border: 1px solid rgba(138, 31, 45, .14);
  border-radius: 999px;
  padding: .55rem 1.1rem .55rem .7rem;
  font-weight: 700;
  font-size: .95rem;
}
.topic-check {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bordeaux);
  color: var(--white);
  display: grid;
  place-items: center;
}
.topic-check svg { width: 12px; height: 12px; }
.journey-cta { text-align: center; border-top: 1px solid rgba(107, 107, 107, .12); padding-top: 1.5rem; }

/* „Das nimmst du mit"-Ergebnisblöcke: weiße Karte, Text + Chip-Reihe (nutzt .journey-topics) */
.outcome-block {
  background: var(--white);
  border: 1px solid rgba(138, 31, 45, .08);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: 0 18px 50px rgba(30, 30, 30, .06);
  margin-bottom: 1.6rem;
}
.outcome-block p { margin-bottom: 1.1rem; }
.outcome-block p:last-of-type { margin-bottom: 1.4rem; }
.outcome-block .journey-topics { margin-bottom: 0; }

/* ==========================================================================
   Zitat-Highlight (Sektion 11)
   ========================================================================== */

.quote-highlight p { margin-bottom: 1.1rem; }
.qh-text .qh-word { color: rgba(250, 247, 244, .28); transition: color .2s linear; }
.qh-text .qh-word.is-lit { color: var(--white); }
/* Fallback ohne JS: voll lesbar */
.no-js .qh-text, html:not(.gsap-ready) .qh-text { color: var(--cream); }

/* ==========================================================================
   Q&A-Collage (Sektion 12)
   ========================================================================== */

#qa { overflow: hidden; } /* Einflug-Animationen nicht seitlich rausragen lassen */
.qa-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.qa-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.7rem 1.5rem;
  box-shadow: 0 16px 44px rgba(30, 30, 30, .12);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  will-change: transform;
}
.qa-card:hover {
  transform: translateY(-5px) rotate(.4deg);
  box-shadow: 0 24px 60px rgba(138, 31, 45, .18);
}
.qa-card:nth-child(odd) { rotate: -.8deg; }
.qa-card:nth-child(even) { rotate: .7deg; }
.qa-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--cream);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}
.qa-question {
  font-style: italic;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--bordeaux-dark);
}
.qa-answer { font-size: .95rem; }
.qa-closing { text-align: center; font-weight: 700; font-size: 1.15rem; margin-top: 2.8rem; }

/* ==========================================================================
   Über Birgit (Sektion 13)
   ========================================================================== */

.section--dark .two-col__text p { color: rgba(250, 247, 244, .88); }
.bio-subtitle { font-size: 1.1rem; color: var(--white) !important; }
.podcast-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 200px));
  gap: 1.2rem;
  margin: 1.8rem 0;
}
.podcast-row img {
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .4);
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

/* ==========================================================================
   Zahlen & Counter (Sektion 14)
   ========================================================================== */

.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  justify-content: center;
  gap: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}
/* Feine Trennlinien zwischen den Countern (nur Desktop) */
@media (min-width: 861px) {
  .counter-item + .counter-item { border-left: 1px solid rgba(107, 107, 107, .18); }
}
.counter-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 2rem + 2.5vw, 4rem);
  font-weight: 800;
  color: var(--bordeaux);
  line-height: 1.1;
  margin-bottom: .4rem;
}
.counter-item p { font-weight: 600; color: var(--gray); }

/* ==========================================================================
   FAQ (Sektion 15)
   ========================================================================== */

.faq-list { display: grid; gap: .9rem; }
.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item { transition: box-shadow .3s ease; }
.faq-item:hover { box-shadow: 0 16px 40px rgba(138, 31, 45, .10); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 3.4rem 1.25rem 1.5rem;
  font-weight: 700;
  position: relative;
  user-select: none;
  transition: color .2s ease;
}
.faq-item summary:hover { color: var(--bordeaux); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  width: 12px; height: 12px;
  border-right: 2.5px solid var(--bordeaux);
  border-bottom: 2.5px solid var(--bordeaux);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s ease;
}
.faq-item[open] .faq-chevron { transform: translateY(-30%) rotate(-135deg); }
.faq-answer { padding: 0 1.5rem; overflow: hidden; }
.faq-answer p { padding-bottom: 1.3rem; color: var(--gray); }

/* ==========================================================================
   Finaler CTA & Footer
   ========================================================================== */

.section--final { padding: clamp(5rem, 10vw, 8rem) 0; }
.final-cta-content { text-align: center; }

/* Trust-Zeile unter dem finalen CTA */
.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem 2rem;
  margin: 1.4rem 0 .9rem;
  padding: 0;
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
  font-weight: 600;
  color: rgba(250, 247, 244, .9);
}
.trust-check {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(138, 31, 45, .9);
  color: var(--white);
  display: grid;
  place-items: center;
}
.trust-check svg { width: 11px; height: 11px; }
.final-cta-content h2 { font-size: clamp(2.1rem, 1.4rem + 3.4vw, 3.6rem); }
.final-cta-content p { max-width: 680px; margin: 0 auto; color: rgba(250, 247, 244, .85); }

.site-footer {
  background: #1A0B0D;
  color: rgba(250, 247, 244, .7);
  padding: 4rem 0 2.5rem;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(250, 247, 244, .7);
  text-decoration: none;
  margin-bottom: .55rem;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--white); }
.footer-col img { margin-bottom: 1rem; opacity: .9; }
.footer-rating { margin-bottom: .8rem; font-size: .85rem; }
.footer-rating .stars { font-size: .85rem; }
.footer-rating a { color: rgba(250, 247, 244, .85); font-weight: 600; }
.footer-legal {
  border-top: 1px solid rgba(250, 247, 244, .15);
  padding-top: 2rem;
  font-size: .8rem;
  line-height: 1.6;
  color: rgba(250, 247, 244, .5);
}
.footer-legal p { margin-bottom: 1rem; }
.footer-meta { font-style: italic; }

/* ==========================================================================
   Rechtsseiten (Impressum / Datenschutz)
   ========================================================================== */

.legal-page h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.6rem; }
.legal-page h2 { font-size: 1.25rem; margin: 2rem 0 .6rem; }
.legal-page p { margin-bottom: 1rem; }
.legal-page a { color: var(--bordeaux); font-weight: 600; }
.legal-todo {
  background: rgba(138, 31, 45, .06);
  border-left: 4px solid var(--bordeaux);
  border-radius: 0 8px 8px 0;
  padding: .8rem 1rem;
}
.legal-stand { margin-top: 2.5rem; color: var(--gray); font-size: .9rem; }

/* ==========================================================================
   Cookie-Consent-Banner (zentral, alle Seiten)
   ========================================================================== */

.consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200; /* ueber Sticky-CTA (999) und Header (1000) */
  background: var(--white);
  border-top: 1px solid rgba(30, 30, 30, .1);
  box-shadow: 0 -10px 34px rgba(30, 30, 30, .18);
  padding: 1.1rem 0;
}
.consent-inner {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.consent-text { font-size: .92rem; color: var(--text); margin: 0; max-width: 720px; }
.consent-link { color: var(--bordeaux); font-weight: 600; }
.consent-actions { display: flex; gap: .7rem; flex: 0 0 auto; }
/* DSGVO: beide Buttons gleich gross und gleich gestaltet */
.consent-btn {
  min-width: 132px;
  padding: .7rem 1.3rem;
  border-radius: 8px;
  border: 2px solid var(--bordeaux);
  background: var(--white);
  color: var(--bordeaux);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.consent-btn:hover { background: var(--bordeaux); color: var(--white); transform: translateY(-1px); }
@media (max-width: 640px) {
  .consent-actions { width: 100%; }
  .consent-btn { flex: 1; }
}

/* ==========================================================================
   Sticky-CTA-Bar
   ========================================================================== */

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -8px 30px rgba(30, 30, 30, .15);
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none; /* faengt keine Klicks ab, solange nicht voll sichtbar (z. B. ueber Footer-Links) */
}
.sticky-cta.is-visible { transform: translateY(0); pointer-events: auto; }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
}
.sticky-cta-text { font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: .5rem; }
.sticky-cta-text .stars { font-size: .9rem; }

/* ==========================================================================
   Animations-Initialzustände (nur wenn GSAP aktiv → .gsap-ready)
   Ohne JS bleibt alles sichtbar — Progressive Enhancement.
   ========================================================================== */

html.gsap-ready .reveal,
html.gsap-ready .stagger-item {
  opacity: 0;
}
/* [data-anim] und .qa-card setzt GSAP selbst (immediateRender der .from-Tweens) */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.gsap-ready .reveal,
  html.gsap-ready .stagger-item { opacity: 1; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ==========================================================================
   Responsive — Mobile First Anpassungen (Basis oben ist Desktop-Grid,
   hier die Brüche nach unten)
   ========================================================================== */

@media (max-width: 1023px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .qa-collage { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-grid,
  .two-col,
  .two-col--reverse { grid-template-columns: 1fr; }
  .two-col__media { order: -1; max-width: 460px; margin-inline: auto; }
  .two-col--reverse .two-col__media { order: -1; }
  .header-nav { display: none; }
  .header-logo img { width: 110px; }
  /* Mobil: CTA + Micro-Text direkt unters Video (vor die Bullets),
     damit sie im ersten Viewport sichtbar sind */
  .hero .container { display: flex; flex-direction: column; }
  .hero .eyebrow { order: 1; }
  .hero .hero-h1 { order: 2; }
  .hero .hero-subline { order: 3; }
  .hero .hero-grid { display: contents; }
  .hero [data-anim="hero-video"] { order: 4; }
  .hero .cta-block { order: 5; }
  .hero .hero-bullets { order: 6; margin-top: 1.6rem; }
  .hero .badge-bar { order: 7; }
  .hero .video-card { width: min(100%, 55svh); }
  .header-inner { justify-content: space-between; gap: .8rem; }
  .header-cta { padding: .55rem .9rem; font-size: .82rem; white-space: nowrap; width: auto; }
  .case-study { grid-template-columns: 1fr; }
  .case-study--flip .case-study__media { order: 1; }
  .case-study--flip .case-study__text { order: 2; }
  .counter-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  /* Hero kompakter: Zeilen fliessen natuerlich statt erzwungener Umbrueche */
  .hero { padding-top: 2rem; }
  .h1-line { display: inline; }
  .hero-h1 { font-size: clamp(1.85rem, 8vw, 2.2rem); margin-bottom: 1rem; }
  .eyebrow { font-size: .78rem; letter-spacing: .08em; margin-bottom: .9rem; }
  .case-label { font-size: .8rem; }
  .badge-label { font-size: .76rem; }
  .journey-weeks { font-size: .8rem; }
  .hero-subline { font-size: 1.05rem; margin-bottom: 1.8rem; }
  .hero-grid { gap: 1.4rem; }
  .hero-bullets li { font-size: 1rem; }
  /* Lesbarkeit mobil: kleine Texte anheben */
  .concept-card p { font-size: .95rem; }
  .concept-card h3 { font-size: 1.15rem; }
  .qa-answer { font-size: 1rem; }
  .review-text { font-size: 1rem; }
  .review-role { font-size: .88rem; }
  .footnote { font-size: .88rem; }
  .micro-text { font-size: .95rem; }
  .case-attribution { font-size: .95rem; }
  .journey-desc { font-size: 1rem; }
  .travel-item figcaption { font-size: .95rem; }
  .trust-row li { font-size: 1rem; }
  .hero .cta-block { margin-top: 1.8rem; }
  .badge-bar { margin-top: 2.2rem; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .card-grid--4 { grid-template-columns: 1fr; }
  .qa-collage { grid-template-columns: 1fr; }
  .cta-btn { display: block; width: 100%; }
  .cta-btn--small { width: auto; }
  .sticky-cta-text { display: none; }
  .sticky-cta-inner { justify-content: center; }
  .sticky-cta .cta-btn--small { width: 100%; padding: .9rem 1rem; }
  .journey::before { left: 21px; }
  .journey-step { grid-template-columns: 44px 1fr; gap: 1rem; }
  .journey-num { width: 44px; height: 44px; font-size: 1.15rem; border-width: 3px; }
  .journey-head h3 { font-size: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .badge-bar { gap: .8rem 1.2rem; }
  .kpi-row { gap: .7rem; }
  .kpi-value { font-size: 1.25rem; }
}
