/* ============================================================
   JOURNEY CSS — Adams Strategy Redesign
   Roter Faden durch die gesamte Seite
   Für ältere Generationen: große Schrift, klare Struktur,
   3D-Effekte, ruhige Übergänge
   ============================================================ */

/* ── JOURNEY PROGRESS (linke Seite, fest) ── */
.journey-progress {
  position: fixed;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.jp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  gap: 0;
}
.jp-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  background: transparent;
  transition: all 0.4s ease;
  position: relative;
}
.jp-dot::after {
  content: attr(data-label);
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  pointer-events: auto;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}
.jp-item:hover .jp-dot::after,
.jp-item.active .jp-dot::after {
  opacity: 1;
}
.jp-item.active .jp-dot {
  background: #4a7fc1;
  border-color: #4a7fc1;
  box-shadow: 0 0 0 4px rgba(74,127,193,0.25);
  transform: scale(1.3);
}
.jp-line {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  transition: background 0.4s;
}
.jp-item.active ~ .jp-item .jp-line,
.jp-item.passed .jp-line {
  background: rgba(74,127,193,0.5);
}
@media (max-width: 900px) {
  .journey-progress { display: none; }
}

/* ── KAPITEL BASIS ── */
.chapter {
  position: relative;
  padding: clamp(8px, 1vw, 16px) clamp(24px, 8vw, 120px) clamp(60px, 10vw, 120px);
  overflow: hidden;
}
.chapter-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ── KAPITEL-LABEL (roter Faden oben) ── */
.chapter-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7ab8c8;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.chapter-label .cl-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #7ab8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.chapter-label .cl-line {
  width: 40px;
  height: 1px;
  background: #7ab8c8;
  opacity: 0.5;
}
.in-view .chapter-label {
  opacity: 1;
  transform: translateY(0);
}

/* ── SCROLL-ANIMATION BASIS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }
.in-view .fade-up {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════
   HERO — KAPITEL 0
════════════════════════════════ */
.chapter-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #04122f;
  padding: 0;
  overflow: hidden;
}
.hero-bg-canvas {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(74,127,193,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(122,184,200,0.08) 0%, transparent 50%),
    #04122f;
  z-index: 0;
}
/* Animierte schwebende Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(74,127,193,0.12);
  top: -10%; right: 5%;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(122,184,200,0.09);
  bottom: 5%; left: 10%;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: rgba(74,127,193,0.08);
  top: 40%; left: 40%;
  animation-delay: -8s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -25px) scale(1.04); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(100px, 14vw, 160px) clamp(24px, 8vw, 120px) clamp(80px, 10vw, 120px);
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7ab8c8;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeSlideUp 0.8s ease 0.2s forwards;
}
.hero-eyebrow-line {
  width: 50px; height: 1px;
  background: linear-gradient(90deg, #7ab8c8, transparent);
}
.hero-headline {
  font-size: clamp(38px, 5.5vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 820px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.4s forwards;
}
.hero-headline em {
  font-style: normal;
  color: #7ab8c8;
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 22px);
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.6s forwards;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.8s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4a7fc1;
  color: #fff;
  border: none;
  padding: 18px 36px;
  border-radius: 100px;
  font-size: clamp(15px, 1.2vw, 18px);
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(74,127,193,0.35);
}
.btn-primary:hover {
  background: #5b8fd4;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74,127,193,0.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 18px 36px;
  border-radius: 100px;
  font-size: clamp(15px, 1.2vw, 18px);
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.hero-stats {
  display: flex;
  gap: clamp(24px, 4vw, 60px);
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 1s forwards;
}
.hero-stat-num {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.03em;
}
.hero-stat-num sup {
  font-size: 0.5em;
  vertical-align: super;
  color: #7ab8c8;
}
.hero-stat-label {
  font-size: clamp(12px, 0.9vw, 14px);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
/* Scroll-Hinweis */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeSlideUp 1s ease 1.4s forwards;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 1.5px solid rgba(255,255,255,0.3);
  border-bottom: 1.5px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ════════════════════════════════
   DIVIDER — Zitat zwischen Kapiteln
════════════════════════════════ */
.journey-divider {
  position: relative;
  padding: clamp(60px, 8vw, 110px) clamp(24px, 8vw, 120px);
  background: linear-gradient(180deg, #04122f 0%, #061830 100%);
  text-align: center;
  overflow: hidden;
}
.journey-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(74,127,193,0.07) 0%, transparent 70%);
}
.divider-quote {
  position: relative;
  font-size: clamp(20px, 2.8vw, 40px);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.divider-quote strong { color: #7ab8c8; font-weight: 400; }

/* ════════════════════════════════
   KAPITEL 1 — BEWERTUNG
════════════════════════════════ */
.chapter-valuation {
  background: linear-gradient(180deg, #061830 0%, #04122f 100%);
}
/* 3D Karten Grid */
.cards-3d-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
  perspective: 1000px;
}
.card-3d {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.card-3d::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(74,127,193,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.card-3d:hover {
  transform: translateY(-8px) rotateX(3deg) rotateY(-2deg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(74,127,193,0.2);
  border-color: rgba(74,127,193,0.3);
}
.card-3d:hover::before { opacity: 1; }
.card-3d-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(74,127,193,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.card-3d-num {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.card-3d-num sup { font-size: 0.45em; color: #7ab8c8; vertical-align: super; }
.card-3d-label {
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.card-3d-title {
  font-size: clamp(17px, 1.5vw, 22px);
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.card-3d-text {
  font-size: clamp(14px, 1.1vw, 16px);
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.card-3d-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: clamp(13px, 1vw, 15px);
  color: #7ab8c8;
  text-decoration: none;
  transition: gap 0.3s;
}
.card-3d-link:hover { gap: 10px; }

/* Highlight-Karte */
.card-3d.featured {
  background: linear-gradient(135deg, rgba(74,127,193,0.15) 0%, rgba(37,37,68,0.6) 100%);
  border-color: rgba(74,127,193,0.25);
  grid-column: span 1;
}

/* ════════════════════════════════
   KAPITEL 2 — WER WIR SIND
════════════════════════════════ */
.chapter-about {
  background: #04122f;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr; }
}
.about-text-block h2 {
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
.about-text-block p {
  font-size: clamp(16px, 1.3vw, 20px);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.about-pill {
  padding: 8px 18px;
  border: 1px solid rgba(122,184,200,0.3);
  border-radius: 100px;
  font-size: clamp(13px, 1vw, 15px);
  color: #7ab8c8;
  background: rgba(122,184,200,0.06);
}
/* Matching Pioneers Showcase */
.mp-showcase {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  overflow: hidden;
}
.mp-showcase::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(74,127,193,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.mp-logo {
  width: clamp(80px, 10vw, 140px);
  margin-bottom: 20px;
}
.mp-showcase h3 {
  font-size: clamp(18px, 2vw, 28px);
  color: #fff;
  margin-bottom: 12px;
  font-weight: 400;
}
.mp-showcase p {
  font-size: clamp(14px, 1.1vw, 17px);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}
.mp-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.mp-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(13px, 1.1vw, 16px);
  color: rgba(255,255,255,0.75);
}
.mp-feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #7ab8c8;
  flex-shrink: 0;
}

/* ════════════════════════════════
   KAPITEL 3 — BRANCHEN
════════════════════════════════ */
.chapter-industries {
  background: linear-gradient(180deg, #04122f 0%, #061830 100%);
}
.industry-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0 36px;
}
.ind-tab {
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(255,255,255,0.6);
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
}
.ind-tab.active, .ind-tab:hover {
  border-color: #4a7fc1;
  color: #fff;
  background: rgba(74,127,193,0.12);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.ind-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.35s ease;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transform: translateY(0);
}
.ind-card:hover {
  background: rgba(74,127,193,0.08);
  border-color: rgba(74,127,193,0.25);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.ind-card-num {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(122,184,200,0.7);
  margin-bottom: 10px;
}
.ind-card h3 {
  font-size: clamp(15px, 1.3vw, 18px);
  color: #fff;
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 1.3;
}
.ind-card p {
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* Branchenliste Accordion */
.ind-seo-section {
  margin-top: 48px;
}
.ind-seo-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  cursor: pointer;
  font-size: clamp(14px, 1.1vw, 17px);
  color: rgba(255,255,255,0.75);
  font-family: inherit;
  width: 100%;
  text-align: left;
  transition: background 0.3s;
}
.ind-seo-toggle:hover { background: rgba(255,255,255,0.05); }
.ind-seo-toggle-icon {
  font-size: 18px;
  color: #7ab8c8;
  transition: transform 0.3s;
}
.ind-seo-toggle[aria-expanded="true"] .ind-seo-toggle-icon {
  transform: rotate(45deg);
}
.ind-seo-body {
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
  border-radius: 0 0 12px 12px;
}
.ind-seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.ind-seo-col h4 {
  font-size: clamp(13px, 1vw, 15px);
  color: #7ab8c8;
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.ind-seo-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ind-seo-col li {
  font-size: clamp(12px, 0.95vw, 14px);
  color: rgba(255,255,255,0.5);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.ind-seo-col li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: rgba(122,184,200,0.5);
}

/* ════════════════════════════════
   KAPITEL 4 — PROZESS
════════════════════════════════ */
.chapter-process {
  background: #04122f;
}
.process-intro {
  max-width: 680px;
  margin-bottom: 48px;
}
.process-intro p {
  font-size: clamp(16px, 1.3vw, 20px);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* Prozess-Schritte */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
}
.proc-step {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.proc-step:last-child { border-bottom: none; }
.proc-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 22px 28px;
  background: rgba(255,255,255,0.02);
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}
.proc-btn:hover { background: rgba(255,255,255,0.04); }
.proc-step.open .proc-btn { background: rgba(74,127,193,0.07); }
.proc-num {
  font-size: clamp(22px, 2vw, 32px);
  color: rgba(255,255,255,0.15);
  font-weight: 400;
  letter-spacing: -0.04em;
  min-width: 44px;
  line-height: 1;
  transition: color 0.3s;
}
.proc-step.open .proc-num { color: #4a7fc1; }
.proc-title {
  font-size: clamp(16px, 1.4vw, 20px);
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  flex: 1;
  line-height: 1.3;
}
.proc-icon {
  font-size: 20px;
  color: rgba(255,255,255,0.25);
  transition: transform 0.35s ease, color 0.3s;
  flex-shrink: 0;
}
.proc-step.open .proc-icon {
  transform: rotate(45deg);
  color: #7ab8c8;
}
.proc-body {
  display: none;
  padding: 0 28px 28px 88px;
}
.proc-step.open .proc-body { display: block; }
.proc-body p {
  font-size: clamp(15px, 1.15vw, 18px);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}
.proc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(13px, 1vw, 15px);
  color: #7ab8c8;
  text-decoration: none;
  border: 1px solid rgba(122,184,200,0.3);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.3s;
}
.proc-cta:hover {
  background: rgba(122,184,200,0.08);
  border-color: #7ab8c8;
}

/* ════════════════════════════════
   KAPITEL 5 — NETZWERK & KARTEN
════════════════════════════════ */
.chapter-network {
  background: linear-gradient(180deg, #04122f 0%, #061830 100%);
}
.network-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .network-split { grid-template-columns: 1fr; }
}
.network-big-num {
  font-size: clamp(60px, 9vw, 130px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.06em;
  line-height: 0.9;
}
.network-big-num sup { font-size: 0.3em; color: #7ab8c8; vertical-align: super; }
.network-big-label {
  font-size: clamp(14px, 1.2vw, 18px);
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  letter-spacing: 0.04em;
}
.network-right h2 {
  font-size: clamp(22px, 2.5vw, 36px);
  color: #fff;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}
.network-right p {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Horizontaler Bild-Slider */
.dcard-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
  margin-top: 48px;
  -webkit-overflow-scrolling: touch;
}
.dcard-strip::-webkit-scrollbar { display: none; }
.dcard-item {
  flex: 0 0 280px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.35s ease;
}
.dcard-item:hover { transform: translateY(-4px) scale(1.01); }
.dcard-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
  transition: filter 0.4s;
}
.dcard-item:hover img { filter: brightness(0.85); }
.dcard-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(4,18,47,0.9) 0%, transparent 100%);
  padding: 16px;
}
.dcard-overlay h3 {
  font-size: clamp(12px, 1vw, 14px);
  color: #fff;
  font-weight: 400;
  line-height: 1.35;
}

/* ════════════════════════════════
   KAPITEL 6 — FINAL CTA
════════════════════════════════ */
.chapter-cta {
  background: #04122f;
  text-align: center;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 8vw, 120px);
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(74,127,193,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(122,184,200,0.3);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7ab8c8;
  margin-bottom: 28px;
}
.cta-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7ab8c8;
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.chapter-cta h2 {
  font-size: clamp(30px, 4vw, 64px);
  font-weight: 400;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.chapter-cta p {
  font-size: clamp(16px, 1.4vw, 21px);
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(255,255,255,0.45);
}
.cta-trust-item svg {
  color: #7ab8c8;
  flex-shrink: 0;
}

/* ════════════════════════════════
   MAKEOVER SECTION (bestehend, neu gestylt)
════════════════════════════════ */
.makeover-journey {
  padding: clamp(60px, 9vw, 110px) clamp(24px, 8vw, 120px);
  background: linear-gradient(135deg, rgba(37,37,68,0.6) 0%, rgba(4,18,47,0.9) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.makeover-journey h2 {
  font-size: clamp(24px, 3.5vw, 52px);
  color: #fff;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.makeover-journey .mk-sub {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: clamp(15px, 1.2vw, 19px);
  margin-bottom: 52px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.mk-stats-row {
  display: flex;
  gap: clamp(24px, 5vw, 80px);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.mk-stat {
  text-align: center;
}
.mk-stat-num {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1;
}
.mk-stat-label {
  font-size: clamp(12px, 0.95vw, 14px);
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  letter-spacing: 0.06em;
}

/* ════════════════════════════════
   SECTION HEADING (wiederverwendbar)
════════════════════════════════ */
.section-head {
  margin-bottom: 12px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 54px);
  font-weight: 400;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 em {
  font-style: normal;
  color: #7ab8c8;
}
.section-head p {
  font-size: clamp(16px, 1.25vw, 20px);
  color: rgba(255,255,255,0.6);
  max-width: 620px;
  line-height: 1.75;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════
   ANIMATION KEYFRAMES
════════════════════════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════
   BULBS (aus Original, dark-mode)
════════════════════════════════ */
.journey-bulbs {
  margin: 40px 0;
}
.bulbs-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.bulb-chip {
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s;
}
.bulb-chip.active, .bulb-chip:hover {
  border-color: #4a7fc1;
  color: #fff;
  background: rgba(74,127,193,0.12);
}
.bulb-desc-box {
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(74,127,193,0.06);
  border: 1px solid rgba(74,127,193,0.15);
  font-size: clamp(14px, 1.1vw, 16px);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  min-height: 56px;
  transition: opacity 0.2s;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 640px) {
  .chapter { padding: 60px 20px; }
  .cards-3d-grid { grid-template-columns: 1fr; }
  .network-split { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-ctas { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
