/* ==========================================================================
   praxismachen! — Design-System (aus Design-Specs: Claude-Design-Handoff)
   Navy/Cyan/Archivo · gilt für alle Seiten von praxismachen.de
   ========================================================================== */

/* ---------- Fonts (selbst gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/archivo-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
  --navy: #0A1626;
  --navy2: #102542;
  --navy3: #16314f;
  --cyan: #1FA9E5;
  --cyan-bright: #36BFF5;
  --cyan-pale: #9DD9F2;
  --light: #EEF3F9;
  --light2: #E2EAF3;
  --ink: #0F1B2D;
  --slate: #5B6B7E;
  --white: #FFFFFF;
  --line: rgba(15, 27, 45, .10);
  --line-d: rgba(255, 255, 255, .12);
  --radius: 20px;
  --radius-sm: 14px;
  --shadow-card: 0 18px 44px rgba(13, 38, 68, .10);
  --shadow-card-hover: 0 24px 56px rgba(13, 38, 68, .16);
  --grad-dark: radial-gradient(140% 120% at 82% 12%, #14304f 0%, var(--navy) 58%);
  --wrap: 1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Archivo', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
/* height:auto ist Pflicht: alle img tragen width/height-Attribute (SEO/CLS) —
   ohne height:auto rendert der Browser sonst die Attribut-Pixelhöhe (verzerrte Crops) */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: rgba(31, 169, 229, .25); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 2px; }

.wrap { max-width: var(--wrap); margin: 0 auto; }
section { padding: 104px 5%; position: relative; }
.tc { text-align: center; }
.tc .sub { margin-left: auto; margin-right: auto; }

/* ---------- Typografie ---------- */
.h1 {
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
}
.h2 {
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.018em;
  color: var(--ink);
  margin-bottom: 18px;
}
.h3 { font-size: 1.22rem; font-weight: 800; line-height: 1.25; letter-spacing: -.01em; }
.ac { color: var(--cyan); }
.ac-bright { color: var(--cyan-bright); }
.sub {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.72;
  max-width: 620px;
  margin-bottom: 56px;
}
.dark .h2 { color: var(--white); }
.dark .sub { color: rgba(255, 255, 255, .72); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 38px; height: 3px; background: var(--cyan); border-radius: 2px; }
.eyebrow.center::after { content: ""; width: 38px; height: 3px; background: var(--cyan); border-radius: 2px; }
.eyebrow.pill {
  background: var(--cyan);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 999px;
  letter-spacing: .16em;
  font-size: .76rem;
}
.eyebrow.pill::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cyan);
  color: var(--white) !important;
  padding: 17px 36px;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .01em;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(31, 169, 229, .35);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { background: var(--cyan-bright); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(31, 169, 229, .45); }
.btn .arr { transition: transform .22s ease; }
.btn:hover .arr { transform: translateX(5px); }
.btn.ghost {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255, 255, 255, .35);
  box-shadow: none;
}
.btn.ghost:hover { border-color: var(--cyan-bright); color: var(--cyan-bright) !important; background: rgba(54, 191, 245, .08); }
.btn.ghost-dark {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid rgba(15, 27, 45, .25);
  box-shadow: none;
}
.btn.ghost-dark:hover { border-color: var(--cyan); color: var(--cyan) !important; background: rgba(31, 169, 229, .06); }
.btn.sm { padding: 12px 26px; font-size: .88rem; }

/* ---------- Card-Navigation (CardNav-Stil, vanilla) ---------- */
#nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1240px;
  z-index: 500;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 22px;
  height: 66px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(10, 22, 38, .12);
  transition: background .3s, box-shadow .3s, height .45s cubic-bezier(.22, 1, .36, 1);
  will-change: height;
}
#nav.s, #nav.open { background: rgba(255, 255, 255, .96); box-shadow: 0 8px 40px rgba(10, 22, 38, .2); }
.cn-bar {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 22px;
  position: relative;
  z-index: 2;
}
.cn-right { display: flex; align-items: center; gap: 10px; }
.cn-burger {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 14px;
  color: var(--ink);
  font-family: inherit;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cn-burger:hover { color: var(--cyan); }
.cn-lines { display: flex; flex-direction: column; gap: 6px; }
.cn-lines span { display: block; width: 26px; height: 2.5px; background: currentColor; border-radius: 2px; transition: transform .3s ease, opacity .2s ease; transform-origin: 50% 50%; }
#nav.open .cn-lines span:first-child { transform: translateY(4.25px) rotate(45deg); }
#nav.open .cn-lines span:last-child { transform: translateY(-4.25px) rotate(-45deg); }
.cn-logo { display: flex; align-items: center; }
.cn-logo img { height: 40px; width: auto; }
.cn-cta {
  background: var(--cyan);
  color: var(--white) !important;
  padding: 11px 24px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .02em;
  box-shadow: 0 6px 20px rgba(31, 169, 229, .35);
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.cn-cta:hover { background: var(--cyan-bright); transform: translateY(-1px); }

.cn-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 66px;
  bottom: 0;
  padding: 4px 12px 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: max-content;
  align-content: start;
  gap: 10px;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  overflow-y: auto;
}
#nav.open .cn-panel { visibility: visible; pointer-events: auto; }
.cn-card {
  border-radius: 18px;
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 14px 34px rgba(10, 22, 38, .28);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .4s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}
.cn-card[data-href] { cursor: pointer; }

/* Drei dunkle Blau-Abstufungen mit weißer Schrift:
   Phasen-Kasten am dunkelsten, Ressourcen und Events stufenweise heller */
.cn-card { --card-ac: var(--cyan-bright); }
.cn-card.cn-phasen { background: radial-gradient(130% 150% at 85% -10%, #17335395 0%, transparent 55%), var(--navy); }
.cn-card.shade-4 { background: var(--navy2); }
.cn-card.shade-5 { background: var(--navy3); }
.cn-card.shade-6 { background: #1d3e63; }

/* Großer Phasen-Kasten (Produkte): volle Breite in Zeile 1, darunter die drei Info-Kästen */
.cn-card.cn-phasen {
  grid-column: 1 / -1;
  flex-direction: row;
  padding: 24px 12px 20px;
  gap: 0;
  min-height: 0;
}
.cn-col {
  flex: 1;
  min-width: 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
}
.cn-col + .cn-col { border-left: 1px solid rgba(255, 255, 255, .14); }
.cn-col .cn-card-links { margin-top: auto; padding-top: 12px; }
.cn-col[data-href] { cursor: pointer; }
.cn-link .chip-soon { margin-left: 2px; }
#nav.open .cn-card { opacity: 1; transform: translateY(0); }
#nav.open .cn-card:nth-child(1) { transition-delay: .06s; }
#nav.open .cn-card:nth-child(2) { transition-delay: .12s; }
#nav.open .cn-card:nth-child(3) { transition-delay: .18s; }
#nav.open .cn-card:nth-child(4) { transition-delay: .24s; }
#nav.open .cn-card:nth-child(5) { transition-delay: .3s; }
.cn-card-label { font-size: 1.06rem; font-weight: 800; letter-spacing: -.005em; line-height: 1.2; color: var(--white); }
a.cn-card-label { color: var(--white); text-decoration: none; display: block; transition: color .2s; }
a.cn-card-label:hover { color: var(--cyan-bright); }
.cn-card-desc { font-size: .78rem; font-weight: 500; color: rgba(255, 255, 255, .55); margin-top: 5px; line-height: 1.45; }
/* Inhalte unten in den Kästen angedockt: Titel oben, Links am Kasten-Boden */
.cn-card-links { margin-top: auto; padding-top: 14px; display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
/* Links dürfen zweizeilig umbrechen — der Pfeil klebt per &nbsp; am letzten Wort */
.cn-link {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  color: rgba(255, 255, 255, .82);
  padding: 5px 0;
  transition: color .2s;
  max-width: 100%;
}
.cn-link:hover { color: var(--white); }
/* Pfeil als echtes Inline-Element: nur so klebt er per &nbsp; wirklich am letzten Wort */
.cn-link .cl-arr { display: inline; margin-left: 2px; font-size: .85em; color: var(--card-ac, var(--cyan-bright)); transition: margin-left .2s; }
.cn-link:hover .cl-arr { margin-left: 7px; }

.chip-live, .chip-soon {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.chip-live { background: rgba(31, 169, 229, .14); color: var(--cyan); }
.chip-soon { background: rgba(91, 107, 126, .12); color: var(--slate); }

/* ---------- Hero (Text links · Video rechts) ---------- */
.hero {
  background: var(--grad-dark);
  color: var(--white);
  padding: 170px 5% 150px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(31, 169, 229, .16) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 1fr; gap: 64px; align-items: center; }
.hero .h1 { font-size: clamp(2.1rem, 3.6vw, 3.35rem); max-width: 22ch; margin-bottom: 24px; }
.hero-lead {
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 44px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line-d);
  font-size: .86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .66);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust span::before { content: "✓"; color: var(--cyan-bright); font-weight: 900; }

.hero-video { position: relative; }

/* Zentrierter Hero (Home): Text mittig, Video in voller Breite darunter */
.hero-center { padding: 165px 5% 96px; }
.hero-center .hero-stack {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-center .h1 { max-width: none; font-size: clamp(1.9rem, 3.3vw, 2.9rem); }
@media (max-width: 700px) {
  .hero-center .h1 br { display: none; }
}
.hero-center .hero-lead { max-width: 58ch; }
.hero-center .hero-ctas { justify-content: center; margin-bottom: 40px; }
.hero-center .hero-trust { justify-content: center; width: 100%; }
.hero-center .hero-video { max-width: 1240px; margin: 64px auto 0; }
/* Clean eingebettet: kein Rand, kein Schatten, kein Glow — nur der Player */
.video-frame {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy2);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-caption {
  text-align: center;
  margin-top: 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

/* ---------- Unterseiten-Hero (kompakt) ---------- */
.page-hero {
  background: var(--grad-dark);
  color: var(--white);
  padding: 150px 5% 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(31, 169, 229, .16) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .hero-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .h1 { font-size: clamp(2rem, 3.4vw, 3.1rem); max-width: 24ch; margin-bottom: 22px; }
.page-hero .hero-lead { margin-bottom: 30px; }
.page-hero .hero-grid { align-items: center; }

/* ---------- Galerie (Impressionen) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-grid a {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-grid a:hover img { transform: scale(1.04); }
@media (max-width: 1060px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Rechtstexte ---------- */
.legal-content { max-width: 820px; margin: 0 auto; font-size: .96rem; color: var(--ink); line-height: 1.75; }
.legal-content h2 { font-size: 1.45rem; font-weight: 800; letter-spacing: -.01em; margin: 44px 0 14px; }
.legal-content h3 { font-size: 1.12rem; font-weight: 800; margin: 30px 0 10px; }
.legal-content p { margin-bottom: 14px; color: var(--slate); font-weight: 500; }
.legal-content strong { color: var(--ink); }
.legal-content ul, .legal-content ol { margin: 0 0 16px 22px; color: var(--slate); font-weight: 500; }
.legal-content li { margin-bottom: 7px; }
.legal-content a { color: var(--cyan); }
.legal-content table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .88rem; }
.legal-content th, .legal-content td { border: 1px solid var(--light2); padding: 10px 12px; text-align: left; vertical-align: top; }
.legal-content th { background: var(--light); font-weight: 700; }

/* ---------- Media-Text-Split (Unterseiten) ---------- */
/* Bilder immer als ruhiges Querformat (16:10), Hochformat-Originale werden beschnitten */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-hover);
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.split-img.ratio-43 img { aspect-ratio: 4 / 3; }
img.crop-top { object-position: 50% 12%; }
@media (max-width: 1060px) { .split { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Zahlen-Leiste ---------- */
.numbar { background: var(--white); border-bottom: 1px solid var(--light2); padding: 52px 5%; }
.nums { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.nitem { text-align: center; padding: 0 18px; border-right: 1px solid var(--light2); }
.nitem:last-child { border-right: none; }
.nval { font-size: clamp(2.2rem, 3.4vw, 3.1rem); font-weight: 900; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.nval span { color: var(--cyan); }
.nlbl { font-size: .84rem; font-weight: 600; color: var(--slate); margin-top: 10px; line-height: 1.4; }

/* ---------- Phasen / Leistungen ---------- */
.bg-light { background: var(--light); }
.phase-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.phase-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.phase-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.phase-card.featured { background: var(--grad-dark); border: 1px solid rgba(54, 191, 245, .35); color: var(--white); }
.phase-num {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.featured .phase-num { color: var(--cyan-bright); }
.phase-card .h3 { font-size: 1.5rem; margin-bottom: 12px; }
.phase-desc { font-size: .94rem; font-weight: 500; color: var(--slate); line-height: 1.65; margin-bottom: 26px; }
.featured .phase-desc { color: rgba(255, 255, 255, .75); }
.phase-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; }
.phase-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; font-weight: 600; line-height: 1.45; }
.phase-list li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(31, 169, 229, .13);
  color: var(--cyan);
  font-size: .74rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.phase-cta { margin-top: auto; }
.phase-cta .btn { width: 100%; }

/* Produktliste (featured Karte) */
.product-list { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 22px; }
.product-list a, .product-list .product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 14px;
  margin: 0 -14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  transition: background .18s;
}
.product-list a:hover { background: rgba(255, 255, 255, .07); }
.product-list a:hover .pr-name::after { transform: translateX(4px); opacity: 1; }
.pr-name { display: inline-flex; align-items: center; gap: 8px; }
.product-list a .pr-name::after { content: "→"; color: var(--cyan-bright); opacity: 0; transition: transform .18s, opacity .18s; }
.product-row { color: rgba(255, 255, 255, .45); }
.featured .chip-live { background: rgba(54, 191, 245, .2); color: var(--cyan-bright); }
.featured .chip-soon { background: rgba(255, 255, 255, .09); color: rgba(255, 255, 255, .5); }
.flagship {
  background: linear-gradient(120deg, rgba(31, 169, 229, .22), rgba(54, 191, 245, .08));
  border: 1px solid rgba(54, 191, 245, .4);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 26px;
}
.flagship-tag { font-size: .62rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan-bright); margin-bottom: 6px; }
.flagship-name { font-size: 1.06rem; font-weight: 800; line-height: 1.3; }
.flagship-sub { font-size: .8rem; font-weight: 500; color: rgba(255, 255, 255, .62); margin-top: 4px; line-height: 1.5; }

/* DRS-Band */
.drs-band {
  max-width: var(--wrap);
  margin: 30px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px 34px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-card);
}
.drs-band img { height: 46px; width: auto; flex: 0 0 auto; }
.drs-band p { font-size: .93rem; font-weight: 600; color: var(--slate); line-height: 1.55; flex: 1; min-width: 260px; }
.drs-band p strong { color: var(--ink); }

/* ---------- Dark Statement (Versuchskaninchen) ---------- */
.dark { background: var(--grad-dark); color: var(--white); }
.statement-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.statement-title {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.018em;
  margin-bottom: 22px;
}
.statement-copy { font-size: 1.02rem; font-weight: 500; color: rgba(255, 255, 255, .72); line-height: 1.75; }
.check-list { display: flex; flex-direction: column; gap: 22px; }
.check { display: flex; gap: 18px; align-items: flex-start; }
.check .tick {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(54, 191, 245, .16);
  color: var(--cyan-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
}
.check-title { font-size: 1.04rem; font-weight: 800; margin-bottom: 4px; }
.check-text { font-size: .92rem; font-weight: 500; color: rgba(255, 255, 255, .68); line-height: 1.6; }

/* ---------- Arbeitsweise ---------- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.work-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.work-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.work-body { padding: 28px 30px 32px; }
.work-body .h3 { margin-bottom: 8px; }
.work-body p { font-size: .93rem; font-weight: 500; color: var(--slate); line-height: 1.65; }

/* ---------- Experte (Dr. Schauer) ---------- */
.expert-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.expert-img { position: relative; }
.expert-img img {
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(13, 38, 68, .22);
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.expert-img::after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 70%;
  height: 70%;
  border: 2px solid rgba(31, 169, 229, .3);
  border-radius: var(--radius);
  z-index: -1;
}
.expert-quote {
  border-left: 3px solid var(--cyan);
  background: rgba(31, 169, 229, .05);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  font-size: 1.02rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-top: 26px;
}
.expert-copy { font-size: .98rem; font-weight: 500; color: var(--slate); line-height: 1.75; }
.expert-copy + .expert-copy { margin-top: 14px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-d);
  border-radius: var(--radius-sm);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.testi-quote { font-size: .98rem; font-weight: 600; line-height: 1.62; color: rgba(255, 255, 255, .9); }
.testi-quote::before { content: "„"; color: var(--cyan-bright); font-size: 1.4em; font-weight: 900; line-height: 0; margin-right: 2px; }
.testi-person { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-person img, .testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 2px solid rgba(54, 191, 245, .35);
}
.testi-avatar {
  background: rgba(54, 191, 245, .16);
  color: var(--cyan-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.testi-name { font-size: .9rem; font-weight: 800; line-height: 1.3; }
.testi-role { font-size: .78rem; font-weight: 500; color: rgba(255, 255, 255, .55); }

/* ---------- Buch ---------- */
.book-grid { display: grid; grid-template-columns: 420px 1fr; gap: 70px; align-items: center; }
.book-grid img { filter: drop-shadow(0 30px 50px rgba(13, 38, 68, .25)); }
.book-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 26px 0 34px; }
.book-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; font-weight: 600; line-height: 1.5; }
.book-list li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(31, 169, 229, .13);
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-note { font-size: .8rem; font-weight: 500; color: var(--slate); margin-top: 14px; }

/* ---------- Wissenshub ---------- */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hub-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hub-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.hub-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.hub-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hub-tag { font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan); }
.hub-body .h3 { font-size: 1.12rem; }
.hub-body p { font-size: .88rem; font-weight: 500; color: var(--slate); line-height: 1.6; }
.hub-link { margin-top: auto; padding-top: 14px; font-size: .88rem; font-weight: 800; color: var(--cyan); display: inline-flex; align-items: center; gap: 8px; }
.hub-card:hover .hub-link { color: var(--cyan-bright); }
@media (min-width: 1061px) { .hub-grid.cols4 { grid-template-columns: repeat(4, 1fr); } }

/* Logo-Band (Partner auf der Startseite) */
.logo-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 44px; }
.logo-band img { height: 54px; width: auto; max-width: 150px; object-fit: contain; filter: grayscale(1); opacity: .65; transition: filter .25s, opacity .25s; }
.logo-band img:hover { filter: none; opacity: 1; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: var(--shadow-card); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-size: 1.04rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(31, 169, 229, .12);
  color: var(--cyan);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 26px 24px; font-size: .95rem; font-weight: 500; color: var(--slate); line-height: 1.7; }
.faq-body strong { color: var(--ink); }

/* ---------- Discovery-Call ---------- */
.disco-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: start; }
.disco-steps { display: flex; flex-direction: column; gap: 26px; margin: 36px 0; }
.disco-step { display: flex; gap: 18px; align-items: flex-start; }
.disco-step .num {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--white);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 7px rgba(31, 169, 229, .14);
}
.disco-note {
  border-left: 3px solid var(--cyan-bright);
  padding: 4px 0 4px 18px;
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px 40px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .4);
  color: var(--ink);
}
.form-card .form-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.form-card .form-sub { font-size: .88rem; font-weight: 500; color: var(--slate); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 700; letter-spacing: .04em; color: var(--ink); }
.field label span { color: var(--cyan); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--light);
  border: 1.5px solid transparent;
  border-radius: 11px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235B6B7E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); background: var(--white); }
.field input.err, .field select.err { border-color: #d64545; background: #fdf2f2; }
.form-hint { font-size: .74rem; font-weight: 500; color: var(--slate); line-height: 1.55; margin-top: 16px; }
.form-hint a { color: var(--cyan); }
.form-msg { display: none; margin-top: 14px; font-size: .88rem; font-weight: 600; border-radius: 10px; padding: 12px 16px; }
.form-msg.error { display: block; background: #fdf2f2; color: #b0392b; }
.form-card .btn { width: 100%; margin-top: 22px; }

/* Erfolg + Scheduler */
.disco-success { display: none; }
.disco-success.show { display: block; }
.success-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.success-head .tick { width: 48px; height: 48px; font-size: 1.2rem; border-radius: 14px; background: rgba(31, 169, 229, .14); color: var(--cyan); display: flex; align-items: center; justify-content: center; font-weight: 900; flex: 0 0 auto; }
.success-head .h3 { margin-bottom: 4px; }
.success-head p { font-size: .9rem; font-weight: 500; color: var(--slate); line-height: 1.6; }
.scheduler-frame { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; height: 620px; }
.scheduler-frame iframe { width: 100%; height: 100%; border: 0; }
.success-fallback { font-size: .8rem; font-weight: 500; color: var(--slate); margin-top: 14px; line-height: 1.6; }
.success-fallback a { color: var(--cyan); }

/* ---------- Newsletter ---------- */
.newsletter-band { background: var(--light); border-top: 1px solid var(--light2); padding: 84px 5%; }
.nl-card {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--grad-dark);
  border-radius: var(--radius);
  padding: 58px 64px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(10, 22, 38, .3);
}
.nl-card::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(31, 169, 229, .22) 0%, transparent 65%);
  pointer-events: none;
}
.nl-card .h2 { color: var(--white); margin-bottom: 12px; }
.nl-copy { font-size: .96rem; font-weight: 500; color: rgba(255, 255, 255, .72); line-height: 1.7; max-width: 42ch; }
.nl-form { position: relative; z-index: 1; }
.nl-row { display: flex; gap: 10px; }
.nl-row input[type="email"] {
  flex: 1;
  min-width: 0;
  font-family: inherit;
  font-size: .96rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 15px 24px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.nl-row input[type="email"]:focus { border-color: var(--cyan-bright); box-shadow: 0 0 0 5px rgba(54, 191, 245, .2); }
.nl-row input.err { border-color: #ff7b6b; }
.nl-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 16px;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .68);
  line-height: 1.55;
  cursor: pointer;
}
.nl-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--cyan);
  cursor: pointer;
}
.nl-consent a { color: var(--cyan-bright); }
.nl-consent.err { color: #ffb1a6; }
.nl-msg { display: none; margin-top: 12px; font-size: .85rem; font-weight: 600; border-radius: 10px; padding: 11px 15px; }
.nl-msg.error { display: block; background: rgba(214, 69, 69, .18); color: #ffb1a6; }
.nl-success { display: flex; gap: 14px; align-items: flex-start; font-size: .95rem; font-weight: 600; line-height: 1.6; }
.nl-success[hidden] { display: none; }
.nl-success .tick {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(54, 191, 245, .18);
  color: var(--cyan-bright);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nl-success small { display: block; font-size: .8rem; font-weight: 500; color: rgba(255, 255, 255, .62); margin-top: 5px; }

/* ---------- Footer ---------- */
footer { background: var(--navy); color: var(--white); padding: 84px 5% 0; }
.footer-top {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand img { height: 54px; width: auto; margin-bottom: 22px; }
.footer-claim { font-size: .92rem; font-weight: 500; color: rgba(255, 255, 255, .6); line-height: 1.7; max-width: 34ch; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line-d);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--cyan); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: var(--white); }
.footer-col h4, .footer-col .fc-h { font-size: .74rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan-bright); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: .9rem; font-weight: 500; color: rgba(255, 255, 255, .72); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--cyan-bright); }
.footer-bottom { border-top: 1px solid var(--line-d); padding: 26px 0; }
.footer-bottom-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .45);
}

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 480;
  background: rgba(10, 22, 38, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(54, 191, 245, .25);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; padding: 14px 20px; font-size: .92rem; }

/* ---------- Discovery-Modal (Typeform-artiger Stepper) ---------- */
.dm-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(10, 22, 38, .62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.dm-overlay.open { opacity: 1; pointer-events: auto; }
body.dm-lock { overflow: hidden; }
.dm-card {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 780px;
  max-height: min(88vh, 820px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 50px 120px rgba(0, 0, 0, .5);
  transform: translateY(26px) scale(.98);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
.dm-overlay.open .dm-card { transform: translateY(0) scale(1); }
.dm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px 14px;
}
.dm-head img { height: 30px; width: auto; }
.dm-close {
  background: var(--light);
  border: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.dm-close:hover { background: var(--light2); color: var(--ink); }
.dm-progress { height: 4px; background: var(--light2); position: relative; }
.dm-progress-fill { position: absolute; inset: 0 auto 0 0; width: 0%; background: var(--cyan); border-radius: 0 4px 4px 0; transition: width .4s cubic-bezier(.22, 1, .36, 1); }
.dm-body { flex: 1; overflow-y: auto; padding: 34px 44px 26px; }
.dm-step { animation: dmIn .35s cubic-bezier(.22, 1, .36, 1); }
@keyframes dmIn { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }
.dm-step.back { animation: dmInBack .35s cubic-bezier(.22, 1, .36, 1); }
@keyframes dmInBack { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: none; } }
.dm-kicker { font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.dm-question { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 800; line-height: 1.25; letter-spacing: -.015em; color: var(--ink); margin-bottom: 8px; }
.dm-hint { font-size: .9rem; font-weight: 500; color: var(--slate); line-height: 1.6; margin-bottom: 22px; }
.dm-options { display: flex; flex-direction: column; gap: 10px; }
.dm-options.grid2 { display: grid; grid-template-columns: 1fr 1fr; }
.dm-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: var(--light);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 15px 18px;
  font-family: inherit;
  font-size: .96rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s;
}
.dm-opt:hover { border-color: rgba(31, 169, 229, .45); background: #fff; transform: translateY(-1px); }
.dm-opt.selected { border-color: var(--cyan); background: rgba(31, 169, 229, .07); }
.dm-opt .key {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--light2);
  color: var(--slate);
  font-size: .74rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dm-opt.selected .key { background: var(--cyan); border-color: var(--cyan); color: #fff; }
.dm-opt .opt-sub { display: block; font-size: .78rem; font-weight: 500; color: var(--slate); margin-top: 3px; line-height: 1.45; }
.dm-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
/* Pflicht-Checkbox Datenschutz im Erstgespräch-Formular (Modal + Inline) */
.dm-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 16px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.55;
  cursor: pointer;
}
.dm-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--cyan);
  cursor: pointer;
}
.dm-consent a { color: var(--cyan); }
.dm-consent.err { color: #b0392b; }
.dm-consent.err input { outline: 2px solid #d64545; outline-offset: 1px; border-radius: 3px; }
.dm-fields .field.full { grid-column: 1 / -1; }
.dm-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 44px 22px;
  border-top: 1px solid var(--light2);
}
.dm-back {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 700;
  color: var(--slate);
  padding: 10px 14px;
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.dm-back:hover { color: var(--ink); background: var(--light); }
.dm-back[hidden] { visibility: hidden; }
.dm-next-wrap { display: flex; align-items: center; gap: 14px; }
.dm-enter-hint { font-size: .72rem; font-weight: 500; color: var(--slate); }
.dm-enter-hint b { font-weight: 800; }
.dm-scheduler { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; height: 600px; max-width: 800px; }
.dm-scheduler iframe { width: 100%; height: 100%; border: 0; }
.dm-success-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(31, 169, 229, .13);
  color: var(--cyan);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.dm-msg { display: none; margin-top: 14px; font-size: .88rem; font-weight: 600; border-radius: 10px; padding: 12px 16px; }
.dm-msg.error { display: block; background: #fdf2f2; color: #b0392b; }

/* ---------- Cookie-Consent (eigenes System, DSGVO-konform) ---------- */
.cc-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 900;
  display: none;
  justify-content: center;
  pointer-events: none;
}
.cc-banner.show { display: flex; }
.cc-card {
  pointer-events: auto;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(54, 191, 245, .25);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  max-width: 720px;
  width: 100%;
  padding: 26px 28px 22px;
}
.cc-title { font-size: 1.02rem; font-weight: 800; margin-bottom: 8px; }
.cc-text { font-size: .84rem; font-weight: 500; color: rgba(255, 255, 255, .75); line-height: 1.6; }
.cc-text a { color: var(--cyan-bright); }
.cc-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 18px; }
.cc-actions .btn { padding: 13px 24px; font-size: .9rem; flex: 1 1 200px; }
.cc-settings-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  text-decoration: underline;
  padding: 10px 6px;
}
.cc-settings-link:hover { color: var(--white); }
.cc-settings { display: none; margin-top: 16px; border-top: 1px solid var(--line-d); padding-top: 16px; }
.cc-settings.open { display: block; }
.cc-row { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; }
.cc-row + .cc-row { border-top: 1px solid rgba(255, 255, 255, .08); }
.cc-row input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--cyan); cursor: pointer; flex: 0 0 auto; }
.cc-row-title { font-size: .88rem; font-weight: 800; }
.cc-row-desc { font-size: .78rem; font-weight: 500; color: rgba(255, 255, 255, .65); line-height: 1.55; margin-top: 2px; }
@media (max-width: 640px) {
  .cc-banner { left: 8px; right: 8px; bottom: 8px; }
  .cc-card { padding: 20px 18px 16px; }
  .cc-actions .btn { flex: 1 1 100%; }
}

/* 2-Klick-Platzhalter für externe Inhalte */
.dm-scheduler { position: relative; }
.cc-embed {
  position: absolute;
  inset: 0;
  background: var(--grad-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 24px;
  z-index: 2;
}
.cc-embed-title { font-size: .95rem; font-weight: 800; }
.cc-embed-text { font-size: .76rem; font-weight: 500; color: rgba(255, 255, 255, .7); line-height: 1.55; max-width: 46ch; }
.cc-embed-text a { color: var(--cyan-bright); }
.cc-embed .btn { padding: 12px 22px; font-size: .85rem; }
.cc-embed-always {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: .74rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  text-decoration: underline;
}
.cc-embed-always:hover { color: var(--white); }

/* ---------- Produktseiten: Phasen-Tabs ---------- */
.ptabs { display: grid; grid-template-columns: .92fr 1.3fr; gap: 26px; align-items: start; }
.ptabs-nav { display: flex; flex-direction: column; gap: 10px; }
.ptab {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.ptab:hover { border-color: rgba(31, 169, 229, .45); }
.ptab.on { border-color: var(--cyan); box-shadow: var(--shadow-card); }
.ptab .pt-num {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(31, 169, 229, .12);
  color: var(--cyan);
  font-size: .82rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ptab.on .pt-num { background: var(--cyan); color: var(--white); }
.ptab .pt-kicker { display: block; font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); margin-bottom: 3px; }
.ptab .pt-title { display: block; font-size: .96rem; font-weight: 800; line-height: 1.25; color: var(--ink); }
.ptab-stats { display: flex; gap: 12px; margin-bottom: 4px; }
.ptab-stat { flex: 1; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; text-align: center; }
.ptab-stat .val { font-size: 1.4rem; font-weight: 900; color: var(--ink); line-height: 1.1; }
.ptab-stat .val span { color: var(--cyan); }
.ptab-stat .lbl { font-size: .72rem; font-weight: 600; color: var(--slate); margin-top: 3px; }
.ptab-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 34px 36px; }
.ptab-panel[hidden] { display: none; }
.pt-phase { font-size: .7rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.ptab-panel .h3 { font-size: 1.3rem; margin-bottom: 10px; }
.ptab-panel p { font-size: .94rem; font-weight: 500; color: var(--slate); line-height: 1.7; }
.pt-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pt-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink);
  background: rgba(31, 169, 229, .08);
  border: 1px solid rgba(31, 169, 229, .25);
  border-radius: 999px;
  padding: 7px 13px;
}
.pt-chip::before { content: "✓"; color: var(--cyan); font-weight: 900; font-size: .72em; }
.pt-take { background: var(--light); border-radius: var(--radius-sm); padding: 18px 22px; margin-top: 22px; }
.pt-take-title { font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--slate); margin-bottom: 6px; }
.pt-take p { font-size: .9rem; }
.pt-take strong { color: var(--cyan); font-weight: 800; }
@media (max-width: 980px) {
  .ptabs { grid-template-columns: 1fr; }
  .ptab-panel { padding: 26px 22px; }
}

/* ---------- Produktseiten: Preis-Karte ---------- */
.price-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-hover);
  padding: 44px 42px 38px;
  text-align: center;
}
.price-big { font-size: clamp(2.6rem, 4.5vw, 3.4rem); font-weight: 900; letter-spacing: -.02em; color: var(--ink); line-height: 1; }
.price-big span { color: var(--cyan); }
.price-sub { font-size: .92rem; font-weight: 600; color: var(--slate); margin-top: 8px; }
.price-rows { list-style: none; margin: 30px 0 8px; text-align: left; }
.price-rows li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 2px;
  border-top: 1px solid var(--light2);
  font-size: .94rem;
  font-weight: 600;
}
.price-rows li:last-child { border-bottom: 1px solid var(--light2); }
.price-rows .chip-live { flex: 0 0 auto; }
.price-card .btn { width: 100%; margin-top: 26px; }
.price-note { font-size: .78rem; font-weight: 500; color: var(--slate); margin-top: 14px; }

/* ---------- Produktseiten: 3-Schritte-Leiste (dunkle Sektion) ---------- */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 26px; margin-top: 14px; }
.step3 { text-align: center; padding: 0 8px; }
.step3 .num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--white);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 8px rgba(31, 169, 229, .14);
}
.step3 .check-title { margin-bottom: 6px; }
.step3 .check-text { line-height: 1.65; }
@media (max-width: 800px) { .steps3 { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

/* ---------- Drei-Spalten-Karten + Icon-Kachel ---------- */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1060px) { .grid3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid3 { grid-template-columns: 1fr; } }
.b-ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(31, 169, 229, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.phase-card.hl { background: var(--cyan); color: var(--white); border-color: var(--cyan); }
.phase-card.hl .phase-desc { color: rgba(255, 255, 255, .85); }
.phase-card.hl .b-ico { background: rgba(255, 255, 255, .18); }

/* ---------- CTA-Band (cyan) ---------- */
.cta-band { background: linear-gradient(105deg, var(--cyan) 0%, var(--cyan-bright) 100%); color: var(--white); text-align: center; padding: 72px 5%; }
.cta-band .h2 { color: var(--white); }
.cta-band p { font-size: .98rem; font-weight: 600; color: rgba(255, 255, 255, .85); max-width: 56ch; margin: 0 auto 28px; }
.btn.inverse { background: var(--white); color: var(--ink) !important; box-shadow: 0 10px 30px rgba(10, 22, 38, .18); }
.btn.inverse:hover { background: var(--light); transform: translateY(-2px); }

/* ---------- Mini-Statistiken (z. B. unter Zitaten) ---------- */
.mini-stats { display: flex; flex-wrap: wrap; gap: 16px 40px; margin-top: 26px; }
.mini-stat .val { font-size: 1.5rem; font-weight: 900; color: var(--ink); line-height: 1.1; }
.mini-stat .val span { color: var(--cyan); }
.mini-stat .lbl { font-size: .76rem; font-weight: 600; color: var(--slate); margin-top: 2px; line-height: 1.35; }

/* ---------- Inline-Erstgespräch ([data-disco-inline]): Stepper in der Karte ---------- */
[data-disco-inline] .dm-progress { border-radius: 999px; overflow: hidden; margin-bottom: 22px; }
[data-disco-inline] .dm-progress-fill { border-radius: 999px; }
[data-disco-inline] .dm-body { padding: 0; overflow: visible; }
[data-disco-inline] .dm-foot { padding: 16px 0 0; margin-top: 20px; }
[data-disco-inline] .dm-question { font-size: 1.18rem; }
[data-disco-inline] .dm-scheduler { height: 560px; }
@media (max-width: 640px) {
  [data-disco-inline] .dm-scheduler { height: 62vh; }
}

/* ---------- Video-Slideshow (Praxisinhaber im Video) ---------- */
.video-slider { position: relative; max-width: 860px; margin: 34px auto 0; }
.vs-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}
.vs-track::-webkit-scrollbar { display: none; }
.vs-slide { flex: 0 0 100%; min-width: 100%; scroll-snap-align: center; }
.vs-slide .video-frame { margin: 0; }
.vs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(10, 22, 38, .72);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .2s, opacity .2s;
}
.vs-btn:hover { background: var(--cyan); }
.vs-btn:disabled { opacity: .3; pointer-events: none; }
.vs-btn.prev { left: -23px; }
.vs-btn.next { right: -23px; }
.vs-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.vs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, .28);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.vs-dot.on { background: var(--cyan-bright); transform: scale(1.3); }
@media (max-width: 980px) {
  .vs-btn.prev { left: 10px; }
  .vs-btn.next { right: 10px; }
}

/* ---------- Mediathek: Video-Karten mit Play-Overlay ---------- */
.media-thumb {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--navy2);
  font-family: inherit;
  overflow: hidden;
}
.media-thumb img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .35s ease; }
.hub-card:hover .media-thumb img { transform: scale(1.045); }
.media-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 38, 0) 45%, rgba(10, 22, 38, .55));
  pointer-events: none;
}
.media-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .93);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
  transition: transform .25s, background .25s, color .25s;
}
.media-play svg { width: 20px; height: 20px; fill: currentColor; margin-left: 3px; }
.hub-card:hover .media-play { transform: translate(-50%, -50%) scale(1.1); background: var(--cyan); color: var(--white); }
.media-dur {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(10, 22, 38, .78);
  padding: 5px 11px;
  border-radius: 999px;
}

/* ---------- Video-Lightbox ---------- */
.vlb {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(10, 22, 38, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.vlb.open { opacity: 1; pointer-events: auto; }
body.vlb-lock { overflow: hidden; }
.vlb-inner { width: min(1180px, 96vw); position: relative; }
.vlb-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
  transform: translateY(18px) scale(.985);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
.vlb.open .vlb-frame { transform: translateY(0) scale(1); }
.vlb-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vlb-title { color: rgba(255, 255, 255, .85); font-size: .95rem; font-weight: 700; margin-top: 14px; text-align: center; }
.vlb-close {
  position: absolute;
  top: -54px;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: 1.05rem;
  cursor: pointer;
  transition: background .2s;
}
.vlb-close:hover { background: rgba(255, 255, 255, .2); }
@media (max-width: 640px) {
  .vlb { padding: 10px; }
  .vlb-close { top: auto; bottom: -54px; }
}

/* ---------- Fade-Up Animation (nur wenn JS aktiv ist — sonst alles sichtbar) ---------- */
.js .fu { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.js .fu.vis { opacity: 1; transform: translateY(0); }
.fd { transition-delay: .1s; } .fd2 { transition-delay: .2s; } .fd3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .js .fu { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1140px) {
  .cn-card { min-height: 200px; }
}
@media (max-width: 1060px) {
  .sticky-cta { display: block; }
  footer { padding-bottom: 74px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .hero-grid > *, .grid3 > *, .split > *, .work-grid > * { min-width: 0; }
  .hero .h1 { max-width: 18ch; }
  .phase-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .statement-grid, .expert-grid, .disco-grid { grid-template-columns: 1fr; gap: 44px; }
  .nl-card { grid-template-columns: 1fr; gap: 34px; padding: 44px 40px; }
  .book-grid { grid-template-columns: 1fr; gap: 40px; }
  .book-grid img { max-width: 360px; margin: 0 auto; }
  .testi-grid, .hub-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nums { grid-template-columns: 1fr 1fr; gap: 34px 0; }
  .nitem:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  #nav { border-radius: 18px; }
  .cn-bar { padding-left: 16px; }
  .cn-burger { padding: 10px; }
  .cn-burger .cn-word { display: none; }
  .cn-cta { display: none; }
  .cn-panel { grid-template-columns: 1fr; gap: 8px; }
  .cn-card { min-height: 0; padding: 16px 16px 12px; }
  .cn-card-links { padding-top: 10px; }
  .cn-card.cn-phasen { grid-column: auto; flex-direction: column; padding: 16px 16px 12px; }
  .cn-col { padding: 0; }
  .cn-col + .cn-col { border-left: none; border-top: 1px solid rgba(255, 255, 255, .14); margin-top: 14px; padding-top: 14px; }
}
@media (max-width: 640px) {
  section { padding: 68px 5%; }
  .hero { padding: 130px 5% 84px; }
  .work-grid, .testi-grid, .hub-grid { grid-template-columns: 1fr; }
  .form-grid, .dm-fields { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .nl-card { padding: 36px 26px; }
  .nl-row { flex-direction: column; }
  .nl-row .btn { width: 100%; }
  .nums { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .nitem { border-right: none; }
  .nitem:nth-child(odd) { border-right: 1px solid var(--light2); }
  .drs-band { padding: 24px; }
  .hero-ctas .btn { width: 100%; }
  .dm-overlay { padding: 0; align-items: flex-end; }
  .dm-card { max-width: 100%; max-height: 96vh; height: 96vh; border-radius: 22px 22px 0 0; }
  .dm-body { padding: 24px 22px 18px; }
  .dm-foot { padding: 14px 22px 18px; }
  .dm-options.grid2 { grid-template-columns: 1fr; }
  .dm-enter-hint { display: none; }
  .dm-scheduler { height: 62vh; }
}
