/* ============================================================
   STUDIENFLÜSTERER — Design System v3.0
   Mobile-first. Premium dark. No generic patterns.
   ============================================================ */

/* reCAPTCHA v3 badge — hidden per Google ToS (note in Datenschutz required) */
.grecaptcha-badge { visibility: hidden !important; }

/* ─── Variables ──────────────────────────────────────────── */
:root {
  --bg:          #0f172a;
  --bg-raised:   #131f35;
  --surface:     #1a2744;
  --border:      rgba(99, 143, 218, 0.12);
  --border-s:    rgba(99, 143, 218, 0.22);
  --blue:        #3b82f6;
  --blue-hover:  #2563eb;
  --blue-dim:    rgba(59, 130, 246, 0.08);
  --text:        #f0f6ff;
  --text-2:      #8faecf;
  --text-3:      #5a7a9a;
  --success:     #10b981;
  --success-l:   #6ee7b7;
  --amber:       #f59e0b;
  --amber-hover: #d97706;
  --font:        'Poppins', 'Poppins Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t:           0.22s;

  /* Border radius */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-card:       0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.15);
  --shadow-nav:        0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-blue:       0 8px 32px rgba(59, 130, 246, 0.25);
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: dark; overflow-x: hidden; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(99,143,218,0.18); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: rgba(99,143,218,0.3); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, iframe, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── Focus-visible (keyboard accessibility) ─────────────── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
:focus:not(:focus-visible) { outline: none; }

/* ─── Decorative background ──────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(59,130,246,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 90%, rgba(59,130,246,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.section {
  padding: 4rem 0;
}
@media (min-width: 768px) { .section { padding: 5.5rem 0; } }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }

/* ─── Section header ─────────────────────────────────────── */
.sh { text-align: center; margin-bottom: 3rem; }
@media (min-width: 768px) { .sh { margin-bottom: 4rem; } }

.sh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.sh-eyebrow-left { justify-content: flex-start; }

.sh-eyebrow::before, .sh-eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--blue);
  opacity: 0.5;
}

.sh h2 {
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 0.875rem;
}

.sh p {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ─── Navigation ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0.875rem 0;
  border-bottom: 1px solid transparent;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease),
              backdrop-filter var(--t) var(--ease), padding var(--t) var(--ease);
}
.site-header.scrolled {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0.625rem 0;
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) { .nav-wrap { padding: 0 2rem; } }
@media (min-width: 900px) { .nav-wrap { gap: 1.25rem; } }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; background: #fff; border-radius: 8px; padding: 5px 12px; }

/* Desktop pill */
.nav-pill {
  display: none;
  align-items: center;
  gap: 2px;
  background: rgba(26, 39, 68, 0.9);
  border: 1px solid var(--border-s);
  border-radius: 9999px;
  padding: 4px;
  margin-left: auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media (min-width: 900px) { .nav-pill { display: flex; } }

.nav-item {
  position: relative;
}

.nl {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 7px 15px;
  border-radius: 9999px;
  font-size: 0.8375rem;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  transition: color var(--t), background var(--t);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
}
.nl:hover { color: var(--text); background: rgba(99,143,218,0.08); }
.nl.active { background: var(--blue); color: #fff; font-weight: 600; }
.nl svg { opacity: 0.5; }

/* Dropdown */
.nav-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 230px;
  background: #111e35;
  border: 1px solid var(--border-s);
  border-radius: var(--radius-lg);
  padding: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  /* Delay only on CLOSE so mouse can travel to the panel */
  transition: opacity 0.18s ease 0.1s, transform 0.18s ease 0.1s;
  z-index: 10;
}
/* Bridge the gap so hover is not lost while moving mouse to dropdown */
.nav-drop::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: -10%; right: -10%;
  height: 10px;
}
.nav-item:hover .nav-drop,
.nav-item:focus-within .nav-drop {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  /* No delay on OPEN */
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-drop a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  transition: background var(--t);
  color: var(--text-2);
  font-size: 0.875rem;
}
.nav-drop a:hover { background: rgba(59,130,246,0.08); color: var(--text); }
.drop-icon {
  width: 30px; height: 30px;
  background: var(--blue-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.drop-label { font-weight: 600; font-size: 0.8125rem; color: var(--text); display: block; }
.drop-sub   { font-size: 0.7rem; color: var(--text-3); display: block; margin-top: 1px; }

/* Nav CTA — smaller variant of btn-p */
.nav-cta {
  display: none;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  padding: 9px 22px;
  background: var(--blue);
  color: #fff;
  border-radius: 0;
  clip-path: polygon(
    0% 0%,
    calc(100% - 11px) 0%,
    100% 11px,
    100% 100%,
    11px 100%,
    0% calc(100% - 11px)
  );
  font-size: 0.8375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background var(--t) var(--ease), filter var(--t) var(--ease), transform var(--t) var(--ease);
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: cta-sheen 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.nav-cta > * { position: relative; z-index: 1; }
.nav-cta:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 18px rgba(59,130,246,0.55));
}
.nav-cta:active { transform: translateY(0); filter: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; align-items: center; gap: 0.375rem; } }

/* Hamburger */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border-s);
  border-radius: 10px;
  padding: 9px 10px;
  margin-left: auto;
  cursor: pointer;
}
@media (min-width: 900px) { .nav-burger { display: none; } }
.nav-burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
  transform-origin: center;
}
/* Hamburger → X when open */
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--text); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--text); }

/* ── Mobile overlay ─────────────────────────────────────── */
.mob-nav {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 30, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 250; /* above header so it fully covers the page */
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  /* Animate with visibility + opacity so we can transition in/out */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}
.mob-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}

/* Sticky header bar inside mobile overlay */
.mob-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem 1.5rem;
  background: rgba(10, 16, 30, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mob-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border-s);
  border-radius: 10px;
  color: var(--text);
  font-size: 1.125rem;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.mob-close:hover {
  background: rgba(99,143,218,0.08);
}

/* Inner scroll area */
.mob-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.25rem 1.5rem 3rem;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  gap: 0.25rem;
}

/* Top link (Start) */
.mob-link-top {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-2);
  transition: background var(--t), color var(--t);
  margin-bottom: 0.25rem;
}
.mob-link-top.active { color: var(--blue); }
.mob-link-top:hover { background: rgba(99,143,218,0.08); color: var(--text); }

/* Section group */
.mob-section {
  margin-bottom: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
}
.mob-section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  padding: 0.5rem 1rem 0.25rem;
}
.mob-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-2);
  transition: background var(--t), color var(--t);
}
.mob-link:hover { background: rgba(99,143,218,0.08); color: var(--text); }
.mob-link.active { color: var(--blue); font-weight: 600; }
.mob-icon {
  width: 34px; height: 34px;
  background: rgba(59,130,246,0.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Divider */
.mob-div {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 1rem;
}

/* Legal links at bottom */
.mob-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.5rem;
}
.mob-legal a {
  font-size: 0.75rem;
  color: var(--text-3);
  transition: color var(--t);
}
.mob-legal a:hover { color: var(--text-2); }
.mob-legal-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-3);
}

/* Top CTA */
.mob-cta-wrap {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.mob-cta-wrap .btn-termin {
  width: 100%;
  justify-content: center;
}

/* ─── Buttons ─────────────────────────────────────────────── */
@keyframes cta-sheen {
  0%   { left: -75%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  padding: 0.8125rem 1.75rem;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t) var(--ease), filter var(--t) var(--ease), transform var(--t) var(--ease);
  text-decoration: none;
}

/* Primary — pill */
.btn-p {
  background: var(--blue);
  color: #fff;
  border-radius: 9999px;
}
.btn-p:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(59,130,246,0.38);
}
.btn-p:active { transform: translateY(0); }

/* Termin buchen — chamfered corners + shimmer (only for appointment CTA) */
.btn-termin {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  border-radius: 0;
  clip-path: polygon(
    0% 0%,
    calc(100% - 11px) 0%,
    100% 11px,
    100% 100%,
    11px 100%,
    0% calc(100% - 11px)
  );
  font-weight: 700;
  letter-spacing: 0.02em;
  isolation: isolate;
}
.btn-termin::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: cta-sheen 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.btn-termin:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 24px rgba(59,130,246,0.5));
}
.btn-termin:active { transform: translateY(0); filter: none; }

/* Ghost — pill, pairs with chamfered primary */
.btn-g {
  background: transparent;
  color: var(--text);
  border-radius: 9999px;
  border: 1px solid rgba(99,143,218,0.25);
}
.btn-g:hover {
  background: rgba(99,143,218,0.07);
  border-color: rgba(99,143,218,0.4);
  transform: translateY(-1px);
}

.btn-lg { padding: 0.9375rem 2.125rem; font-size: 1rem; }
.btn-sm { padding: 0.5625rem 1.25rem; font-size: 0.8125rem; }

.btn-fw { width: 100%; justify-content: center; }

/* Hero buttons: not full-width above mobile */
@media (min-width: 481px) {
  .hero-btns .btn-fw { width: auto; justify-content: initial; }
}

/* ─── Utility classes ────────────────────────────────────── */
.icon-sm { font-size: 0.8rem; }
.centered-cta { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ─── Above-the-fold wrapper (header + fold-wrap = 100vh on desktop) ── */
@media (min-width: 1024px) {
  .fold-wrap {
    min-height: calc(100vh - 4.5rem); /* min-height so content never clips */
    display: flex;
    flex-direction: column;
  }
  .fold-wrap .hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding: clamp(1.5rem, 4vh, 4rem) 0;
  }
  .fold-wrap .hero .container { width: 100%; }
  .fold-wrap .stats-bar { flex-shrink: 0; }
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  padding: 2rem 0 1.5rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1024px) { .hero { padding: 2rem 0 2.5rem; } }

/* Ambient glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Grid lines background (purely decorative) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem 4rem;
  }
}

.hero-content { text-align: center; }
@media (min-width: 1024px) { .hero-content { text-align: left; } }

.hero-h1 {
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 1.375rem;
  animation: fadeUp 0.55s both 0.15s;
}
.hero-h1 .hl {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.875rem, 2vw, 1.0625rem);
  color: rgba(203, 213, 225, 0.9);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 1rem;
  padding: 0 0.25rem;
  animation: fadeUp 0.55s both 0.25s;
}
@media (min-width: 1024px) { .hero-sub { margin-left: 0; } }

/* Hero — badges */
.hero-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin: 0 0 1rem;
  animation: fadeUp 0.55s both 0.3s;
}
@media (max-width: 1023px) { .hero-badges { align-items: center; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.9);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-pill);
}
@media (max-width: 480px) {
  .hero-badge { font-size: 0.75rem; padding: 0.25rem 0.625rem; }
}
.hero-badge i {
  font-size: 0.7rem;
  color: var(--blue);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.55s both 0.4s;
}
@media (min-width: 1024px) { .hero-btns { margin-bottom: 2rem; justify-content: flex-start; } }

/* Trustpilot badge */
.tp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.75rem 1.375rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  transition: box-shadow var(--t), transform var(--t);
}
.tp-badge:hover {
  box-shadow: 0 4px 16px rgba(0,182,122,0.2);
  transform: translateY(-1px);
}
.tp-badge-row { display: flex; align-items: center; gap: 6px; }
.tp-score-wrap { display: flex; align-items: center; gap: 8px; }
.tp-wordmark { font-size: 1rem; font-weight: 700; color: #191919; letter-spacing: -0.3px; }
.tp-sep { width: 1px; height: 22px; background: #e5e7eb; }
.tp-stars-row { display: flex; gap: 2px; }
.tp-s { width: 19px; height: 19px; background: #00B67A; display: flex; align-items: center; justify-content: center; }
.tp-score-block { line-height: 1; }
.tp-score-num { font-size: 1.125rem; font-weight: 700; color: #191919; }
.tp-score-lbl { font-size: 0.65rem; color: rgba(25,25,25,0.55); display: block; margin-top: 2px; }

/* Hero video */
.hero-media {
  display: flex;
  justify-content: center;
  animation: fadeIn 0.7s both 0.3s;
}

.video-frame {
  position: relative;
  width: min(240px, 54vw);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(59,130,246,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(59,130,246,0.1);
  background: var(--surface);
}
@media (min-width: 400px) { .video-frame { width: min(260px, 60vw); } }
@media (min-width: 640px) { .video-frame { width: 280px; } }
@media (min-width: 1024px) { .video-frame { width: 300px; } }

.video-frame::before { content: ''; display: block; padding-top: 177.78%; }
.video-frame iframe {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  border: none;
}

/* Video glow */
.video-glow {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ─── Hero responsive tweaks ─────────────────────────────── */

/* Short viewport laptops (landscape 768px height or less) */
@media (min-width: 1024px) and (max-height: 760px) {
  .hero-h1 { font-size: clamp(2rem, 4.5vh, 3.5rem); }
  .hero-sub { margin-bottom: 1.25rem; }
  .hero-btns { margin-bottom: 1.25rem; }
  .video-frame { width: 240px; }
}

/* Tablet hero (640px–1023px) */
@media (min-width: 640px) and (max-width: 1023px) {
  .hero { padding: 3.5rem 0; }
  .hero-h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); }
  .video-frame { width: 260px; }
}

/* Very small mobile (<380px) */
@media (max-width: 380px) {
  .hero-h1 { font-size: 2.25rem; }
  .hero-sub { font-size: 0.875rem; }
  .tp-badge { gap: 0.5rem; padding: 0.625rem 1rem; }
  .tp-sep { display: none; }
}

/* Mobile button + footer fixes */
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; }
  .footer-soc { width: 44px; height: 44px; }
  .footer-legal a, .footer-legal button { padding: 0.375rem 0; }
  .begleitung-badge { white-space: normal; text-align: center; max-width: calc(100% - 2rem); }
}
.footer-col a[href^="mailto:"] { word-break: break-all; }

/* ─── Stats bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

/* Desktop: single flex row with thin dividers */
.stats-row {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
}

.stat {
  flex: 1;
  padding: 0.875rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

/* Mobile: 2×2 grid */
@media (max-width: 639px) {
  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 1.125rem 0.75rem;
    border-bottom: 1px solid var(--border);
  }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
}

.stat-n {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-l {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Trustpilot stat */
.stat-tp-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}
.stat-tp-link:hover .tp-star-icon {
  box-shadow: 0 2px 8px rgba(0, 182, 122, 0.35);
}

.stat-tp-main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Green star on white background — authentic Trustpilot icon */
.tp-star-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 4px;
  flex-shrink: 0;
  transition: box-shadow var(--t);
}

.stat-tp-score {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0;
  line-height: 1;
}

/* ─── Programs ────────────────────────────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .programs-grid { grid-template-columns: 1fr 1fr; gap: 1.125rem; }
}

.prog-card {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.75rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
  position: relative;
}
.prog-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  background: #1a2842;
}

.prog-icon {
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 0.25rem;
}

.prog-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.prog-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}
.prog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 0.25rem;
}
.prog-card:hover .prog-link i { transform: translateX(3px); }
.prog-link i { transition: transform var(--t); font-size: 0.7rem; }


/* ─── Vertical Timeline ───────────────────────────────────── */
.vtl {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

/* Central vertical line */
.vtl-line {
  position: absolute;
  left: 1.375rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), rgba(59,130,246,0.1));
  border-radius: 2px;
}

.vtl-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding-bottom: 2.25rem;
  padding-left: 0;
}
.vtl-item:last-child { padding-bottom: 0; }

/* Dot marker */
.vtl-marker {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.vtl-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 0 0 5px var(--bg-raised), 0 0 20px rgba(59,130,246,0.25);
  transition: transform var(--t), box-shadow var(--t);
}
.vtl-item:hover .vtl-dot {
  transform: scale(1.1);
  box-shadow: 0 0 0 5px var(--bg-raised), 0 0 28px rgba(59,130,246,0.4);
}

/* Content card */
.vtl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  flex: 1;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.vtl-item:hover .vtl-card {
  border-color: rgba(59,130,246,0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transform: translateX(4px);
}
.vtl-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.375rem;
}
.vtl-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}
.vtl-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* Desktop: wider, line shifts to center-left */
@media (min-width: 768px) {
  .vtl { max-width: 600px; }
  .vtl-item { gap: 2rem; }
  .vtl-card { padding: 1.5rem 1.75rem; }
}

/* ─── About ───────────────────────────────────────────────── */
/* About */
.about-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .about-intro {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 3rem;
    max-width: 740px;
    margin: 0 auto;
  }
}

.about-img {
  width: 200px;
  max-width: 100%;
  height: 240px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-s);
}

.about-text { }

.about-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.about-name {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.about-role {
  font-size: 0.9375rem;
  color: var(--text-2);
  margin-bottom: 1.125rem;
}
.about-bio {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  justify-content: center;
}
@media (min-width: 768px) { .about-chips { justify-content: flex-start; } }

.chip {
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: 9999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(147,197,253,0.9);
}

.about-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
@media (min-width: 480px) { .about-kpis { gap: 3rem; } }

.kpi { text-align: center; }
.kpi strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.kpi span { font-size: 0.75rem; color: var(--text-2); }
@media (min-width: 480px) { .kpi span { font-size: 0.8125rem; } }

.about-cta { text-align: center; margin-top: 2rem; }

/* ─── Services / Leistungen ──────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 2.5rem; } }

.service-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
@media (min-width: 480px) { .service-col { padding: 2rem 1.5rem; } }
@media (min-width: 768px) { .service-col { padding: 2.25rem 2rem; } }
.service-col:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.service-col-amber:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.service-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}
.si-blue { background: var(--blue); }
.si-amber { background: var(--amber); }
.si-red { background: #ef4444; }

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.service-label {
  font-size: 0.8125rem;
  color: var(--text-2);
  margin-top: 0.125rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-grow: 1;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}
.service-item:last-child { border-bottom: none; }

.si-dot {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8125rem;
}
.si-dot.si-blue { background: rgba(59, 130, 246, 0.12); color: var(--blue); }
.si-dot.si-amber { background: rgba(245, 158, 11, 0.12); color: var(--amber); }

.service-item h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.125rem;
}
.service-item p {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.5;
}

.service-foot {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.service-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--success);
  margin-bottom: 1rem;
}
.service-note i { font-size: 0.875rem; }
.service-note-amber { color: var(--amber); }

/* Amber button variant */
.btn-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--amber);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.btn-amber:hover { background: var(--amber-hover); transform: translateY(-1px); }
.btn-amber.btn-fw { width: 100%; }

/* Inline highlight link */
.link-hl {
  color: var(--blue);
  transition: color var(--t) var(--ease);
}
.link-hl:hover { color: #60a5fa; text-decoration: underline; }

/* "Was ich nicht mache" */
.not-services {
  background: var(--surface);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 16px;
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) { .not-services { padding: 2.25rem 2rem; } }

.not-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.not-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .not-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .not-grid { grid-template-columns: repeat(5, 1fr); } }

.not-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.12);
  border-radius: 12px;
}
.not-item > i {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.not-item h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.125rem;
}
.not-item p {
  font-size: 0.75rem;
  color: var(--text-2);
  line-height: 1.4;
}

/* ─── Testimonials ────────────────────────────────────────── */
/* Testimonial carousel */
.testi-carousel {
  position: relative;
}

.testi-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2.5rem) / 3);
  gap: 1.25rem;
  overflow: hidden;
  scroll-behavior: smooth;
}
@media (max-width: 1023px) {
  .testi-track { grid-auto-columns: calc((100% - 1.25rem) / 2); }
}
@media (max-width: 639px) {
  .testi-track {
    grid-auto-columns: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    padding-bottom: 0.25rem;
  }
  .testi-track::-webkit-scrollbar { display: none; }
}

.testi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
@media (max-width: 639px) { .testi { scroll-snap-align: start; } }

.testi:hover {
  border-color: rgba(59, 130, 246, 0.35);
  background: #1a2842;
}

/* Arrows */
.testi-arrows {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.testi-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
  font-size: 0.875rem;
}
.testi-arrow:hover {
  border-color: var(--blue);
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue);
}
.testi-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* Dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.testi-dot.active {
  background: var(--blue);
  transform: scale(1.25);
}

.testi-q { color: rgba(59,130,246,0.25); font-size: 1.5rem; }
.testi-txt {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testi-foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-s);
}
.testi-name { font-size: 0.875rem; font-weight: 600; display: block; }
.testi-role { font-size: 0.75rem; color: var(--text-2); display: block; }

/* ─── Trustpilot carousel ────────────────────────────────── */
.tp-carousel { position: relative; }

.tp-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 1.25rem) / 2);
  gap: 1.25rem;
  overflow: hidden;
  scroll-behavior: smooth;
}
@media (max-width: 639px) {
  .tp-track {
    grid-auto-columns: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    padding-bottom: 0.25rem;
  }
  .tp-track::-webkit-scrollbar { display: none; }
}

.tp-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.375rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: box-shadow var(--t);
}
@media (max-width: 639px) { .tp-card { scroll-snap-align: start; } }
.tp-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

.tp-arrows {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.tp-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.tp-stars-wrap { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.tp-star-sq { width: 22px; height: 22px; background: #00B67A; display: flex; align-items: center; justify-content: center; }

.tp-reviewer { font-size: 0.8125rem; font-weight: 600; color: #374151; margin-bottom: 0.5rem; }
.tp-review-h { font-size: 0.9375rem; font-weight: 700; color: #111827; line-height: 1.35; margin-bottom: 0.625rem; }
.tp-review-p { font-size: 0.8375rem; color: #4b5563; line-height: 1.65; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }

/* ─── 10-Minuten-Check ───────────────────────────────────── */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .check-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.check-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.check-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}
.check-item:last-child { border-bottom: none; }

.check-icon {
  width: 40px;
  height: 40px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 0.875rem;
}
.check-item p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
}
.check-item strong { color: var(--text); }

/* ─── CTA Card ───────────────────────────────────────────── */
.cta-card {
  position: relative;
  background: linear-gradient(145deg, #132244 0%, #0f1d38 50%, #0c1730 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset-inline: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.cta-card-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 639px) {
  .cta-card-glow { width: 300px; height: 300px; top: -60px; }
}

.cta-card-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
}

.cta-h {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 2.25rem;
}

.cta-point {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cta-point i {
  color: var(--blue);
  font-size: 0.8125rem;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

/* ─── Partners carousel ──────────────────────────────────── */
.partner-carousel { position: relative; }

.partner-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2.5rem) / 3);
  gap: 1.25rem;
  overflow: hidden;
  scroll-behavior: smooth;
}
@media (max-width: 1023px) {
  .partner-track { grid-auto-columns: calc((100% - 1.25rem) / 2); }
}
@media (max-width: 639px) {
  .partner-track {
    grid-auto-columns: 100%;
    overflow: visible;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
  }
  .partner-track::-webkit-scrollbar { display: none; }
}

.partner-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
@media (max-width: 639px) { .partner-card { scroll-snap-align: start; } }
.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.partner-card img {
  width: 100%;
  height: auto;
  display: block;
}

.partner-arrows {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.partner-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

/* ─── Newsletter ──────────────────────────────────────────── */
.nl-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 767px) { .nl-section { padding: 3rem 0; } }

.nl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .nl-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .nl-info .sh-eyebrow { justify-content: center; }
  .nl-perks { align-items: center; }
}

.nl-info { text-align: left; }

.nl-h {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0.75rem 0 0.75rem;
  line-height: 1.2;
}

.nl-sub {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.nl-perks {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.nl-perk {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nl-perk i {
  color: var(--blue);
  font-size: 0.8125rem;
}

.nl-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.nl-form-wrap .btn {
  margin-top: 0.25rem;
}

.nl-form { display: flex; flex-direction: column; gap: 0.75rem; }

.nl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 639px) { .nl-row { grid-template-columns: 1fr; } }


.nl-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  text-align: left;
  font-size: 0.8125rem;
  color: var(--text-2);
}
.nl-consent input { margin-top: 3px; flex-shrink: 0; accent-color: var(--blue); }
.nl-consent a { color: var(--blue); text-decoration: underline; }

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #0b1120;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; } }

.footer-brand { min-width: 0; }
.footer-icon { width: 14px; margin-right: 6px; opacity: 0.5; }

.footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 0.5rem 0.875rem;
  margin-bottom: 1rem;
}
.footer-logo-box img { height: 28px; display: block; }

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 1.25rem;
}
.footer-socials { display: flex; gap: 0.5rem; }
.footer-soc {
  width: 36px; height: 36px;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  font-size: 0.875rem;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.footer-soc:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.125rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-2);
  transition: color var(--t);
  display: inline-flex;
  align-items: center;
}
.footer-col a:hover { color: var(--blue); }

.footer-col a.footer-cta {
  display: inline-flex;
  margin-top: 1rem;
  color: #fff;
}
.footer-col a.footer-cta:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 0.8125rem; color: var(--text-3); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a, .footer-legal button {
  font-size: 0.8125rem;
  color: var(--text-3);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: color var(--t);
}
.footer-legal a:hover, .footer-legal button:hover { color: var(--text-2); }

/* ─── Individuelle Begleitung ────────────────────────────── */
.begleitung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.begleitung-img-wrap {
  position: relative;
}
.begleitung-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}
.begleitung-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border-s);
  border-radius: var(--radius-md);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.begleitung-badge-dot {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.begleitung-content h2 {
  margin: 0.75rem 0 1rem;
}
.begleitung-desc {
  color: var(--text-2);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.begleitung-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.begleitung-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.5;
}
.begleitung-check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 8px;
  color: var(--blue);
  font-size: 0.7rem;
  margin-top: 1px;
}
.begleitung-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .begleitung-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .begleitung-ctas {
    flex-direction: column;
  }
  .begleitung-ctas .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ─── Fernstudium Talk ───────────────────────────────────── */
.fsd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.fsd-video-wrap {
  position: relative;
}
.fsd-video-frame {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.fsd-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.fsd-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.fsd-heading h2 {
  margin: 0;
}
.fsd-logo-link {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 0.35rem 0.75rem;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.fsd-logo-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.fsd-logo {
  height: 28px;
  width: auto;
}
.fsd-quote {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  margin-bottom: 1.75rem;
}
.fsd-quote p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.fsd-quote-icon {
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: block;
  opacity: 0.6;
}
.fsd-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}
.fsd-topics li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-2);
  font-size: 1rem;
}
@media (max-width: 768px) {
  .fsd-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ─── Scroll animations ───────────────────────────────────── */
/* Reveal: hidden by default only when JS is active (html.js class).
   Without .js on <html>, all content is visible (progressive enhancement). */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }

/* Reveal direction variants — same timing, different origin */
.js .reveal-l {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.js .reveal-r {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.js .reveal-l.in,
.js .reveal-r.in { opacity: 1; transform: none; }

@media (max-width: 768px) {
  .js .reveal-l,
  .js .reveal-r { transform: translateY(18px); }
}

/* Section headers: subtle scale enhancement */
.js .sh.reveal {
  transform: translateY(18px) scale(0.97);
}
.js .sh.reveal.in { transform: none; }

/* ─── Keyframes ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* ─── Section dividers ────────────────────────────────────── */
.sect-alt {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════
   ÜBER MICH PAGE — um-* classes
   Only styles unique to this page. Hero, section headers,
   buttons etc. reuse existing design-system patterns.
   ═══════════════════════════════════════════════════════════ */


/* Hero quick-stats row (below buttons) */
.hero-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  animation: fadeUp 0.55s both 0.45s;
}
@media (min-width: 1024px) { .hero-mini-stats { justify-content: flex-start; } }
.hero-mini-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-2);
}
.hero-mini-stat i { color: var(--blue); }

/* ─── Warum-ich stats grid ───────────────────────────────── */
.um-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .um-stats-grid { grid-template-columns: repeat(4, 1fr); } }

.um-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color var(--t), box-shadow var(--t);
}
.um-stat-card:hover {
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.um-stat-n {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.um-stat-l { font-size: 0.8125rem; color: var(--text-2); }

/* ─── Feature cards (blue / green bordered) ──────────────── */
.um-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .um-feature-grid { grid-template-columns: repeat(2, 1fr); } }

.um-feature-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  transition: box-shadow var(--t);
}
.um-feature-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.um-feature-card--blue { border-color: var(--blue); }
.um-feature-card--green { border-color: var(--success); }

.um-feature-head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.um-feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff; font-size: 1.375rem;
}
.um-feature-icon--blue { background: var(--blue); }
.um-feature-icon--green { background: var(--success); }
.um-feature-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.125rem; }
.um-feature-sub { font-size: 0.8125rem; }
.um-feature-sub--blue { color: #93c5fd; }
.um-feature-sub--green { color: var(--success-l); }
.um-feature-text { color: var(--text-2); font-size: 0.9375rem; line-height: 1.65; margin-bottom: 1.25rem; }
.um-feature-text strong { color: var(--blue); font-weight: 600; }
.um-feature-card--green .um-feature-text strong { color: var(--success); }

/* Chip badges inside feature cards */
.um-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.um-chip {
  display: inline-flex; align-items: center; gap: 0.375rem;
  border-radius: 9999px; padding: 0.375rem 0.875rem;
  font-size: 0.8125rem; font-weight: 600;
}
.um-chip--blue { background: var(--blue-dim); border: 1px solid rgba(59,130,246,0.2); color: #93c5fd; }
.um-chip--green { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); color: var(--success-l); }

/* ─── Mini 3-col cards ───────────────────────────────────── */
.um-mini-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .um-mini-grid { grid-template-columns: repeat(3, 1fr); } }

.um-mini-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
  transition: border-color var(--t), box-shadow var(--t);
}
.um-mini-card:hover { border-color: rgba(59,130,246,0.3); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.um-mini-icon {
  width: 44px; height: 44px; background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.2); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1rem; margin-bottom: 1rem;
}
.um-mini-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.um-mini-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }

/* ─── PhD card ───────────────────────────────────────────── */

/* ─── Publications (dropdowns + cards) ───────────────────── */
.um-pub-wrap { max-width: 1000px; margin: 0 auto; }

.um-pub-drop { border: 1px solid var(--border-s); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1rem; }
.um-pub-drop[open] { border-color: rgba(59,130,246,0.4); }

.um-pub-drop summary {
  list-style: none; cursor: pointer; padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  font-weight: 600; color: var(--text); background: rgba(26,39,68,0.5); transition: background var(--t);
}
.um-pub-drop summary::-webkit-details-marker { display: none; }
.um-pub-drop summary::marker { display: none; }
.um-pub-drop summary:hover { background: rgba(36,49,78,0.6); }
.um-pub-drop[open] summary { background: rgba(26,39,68,0.8); }

.um-pub-summary-title { display: flex; align-items: center; gap: 0.5rem; flex: 1; min-width: 0; }
.um-pub-summary-title i { color: var(--text-3); }
.um-pub-summary-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.um-pub-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 1.75rem; border-radius: 9999px;
  font-size: 0.8125rem; font-weight: 700;
  background: linear-gradient(135deg, rgba(59,130,246,0.45) 0%, rgba(59,130,246,0.25) 100%);
  border: 1px solid rgba(96,165,250,0.5); color: #93c5fd;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.um-pub-toggle { flex-shrink: 0; color: var(--text-3); font-size: 0.875rem; transition: transform 0.25s; }
.um-pub-drop[open] .um-pub-toggle { transform: rotate(180deg); }

.um-pub-inner { padding: 1.25rem; border-top: 1px solid var(--border); }

.um-pub-year { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.um-pub-year:not(:first-child) { margin-top: 2rem; }
.um-pub-year-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(71,85,105,0.5); border-radius: 12px; padding: 0.5rem 1rem;
  font-weight: 700; font-size: 0.9375rem;
}
.um-pub-year-badge i { color: var(--text); font-size: 0.8125rem; }
.um-pub-year-line { flex: 1; height: 1px; background: var(--border); }
.um-pub-year-count { font-size: 0.8125rem; color: var(--text-3); font-weight: 600; }

.um-pub-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .um-pub-grid { grid-template-columns: repeat(2, 1fr); } }

.um-pub-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.125rem;
  transition: border-color var(--t), background var(--t);
  text-decoration: none; color: inherit;
}
.um-pub-card:hover { border-color: rgba(59,130,246,0.4); background: #1a2842; }

.um-pub-thumb {
  width: 60px; height: 76px; border-radius: 8px; overflow: hidden;
  flex-shrink: 0; background: rgba(15,23,42,0.5); border: 1px solid var(--border);
}
.um-pub-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: opacity var(--t); }
.um-pub-card:hover .um-pub-thumb img { opacity: 1; }

.um-pub-info { flex: 1; min-width: 0; }
.um-pub-info h4 {
  font-size: 0.9375rem; font-weight: 600; line-height: 1.35; margin-bottom: 0.25rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color var(--t);
}
.um-pub-card:hover .um-pub-info h4 { color: var(--blue); }
.um-pub-info .um-pub-author { font-size: 0.8125rem; color: var(--text-2); margin-bottom: 0.125rem; }
.um-pub-info .um-pub-journal { font-size: 0.75rem; color: var(--text-3); }

.um-pub-card--upcoming { border-style: dashed; cursor: default; }
.um-pub-card--upcoming .um-pub-thumb { display: flex; align-items: center; justify-content: center; background: rgba(71,85,105,0.3); }
.um-pub-card--upcoming .um-pub-thumb i { color: var(--text-3); font-size: 1.5rem; }

.um-pub-book-cover {
  width: 60px; height: auto; border-radius: 6px; flex-shrink: 0;
  border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.um-rg-cta {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem; text-align: center; margin-top: 1.5rem;
}
.um-rg-icon {
  width: 56px; height: 56px; background: var(--blue-dim); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: var(--blue); font-size: 1.5rem;
}
.um-rg-cta h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.um-rg-cta p { font-size: 0.875rem; color: var(--text-2); max-width: 400px; margin: 0 auto 1.5rem; }

/* ─── Diplomas ───────────────────────────────────────────── */
.um-diploma-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .um-diploma-grid { grid-template-columns: repeat(4, 1fr); } }

.um-diploma-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.um-diploma-card:hover { border-color: rgba(59,130,246,0.4); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.um-diploma-img { aspect-ratio: 3/4; overflow: hidden; background: rgba(15,23,42,0.5); }
.um-diploma-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; transition: opacity var(--t); }
.um-diploma-card:hover .um-diploma-img img { opacity: 1; }
.um-diploma-body { padding: 1rem; }
.um-diploma-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.375rem; }
.um-diploma-abbr { color: var(--blue); font-weight: 700; font-size: 1rem; }
.um-diploma-grade { color: var(--success); font-size: 0.875rem; font-weight: 600; }
.um-diploma-name { font-size: 0.875rem; font-weight: 600; }
.um-diploma-field { font-size: 0.75rem; color: var(--text-2); }

.um-verify-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 0.5rem 1rem; font-size: 0.875rem; color: var(--text-2);
}
.um-verify-badge i { color: var(--success); }

/* ─── Certificates ───────────────────────────────────────── */
.um-cert-categories { max-width: 1100px; margin: 0 auto; }
.um-cert-cat { margin-bottom: 3rem; }
.um-cert-cat:last-child { margin-bottom: 0; }

.um-cert-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.um-cert-label {
  display: flex; align-items: center; gap: 0.5rem;
  border-radius: 12px; padding: 0.5rem 1rem; font-weight: 700; font-size: 0.9375rem;
}
.um-cert-line { flex: 1; height: 1px; background: var(--border); }
.um-cert-count { font-size: 0.8125rem; color: var(--text-3); }

.um-cert-label--blue { background: var(--blue-dim); border: 1px solid rgba(59,130,246,0.2); color: #93c5fd; }
.um-cert-label--blue i { color: var(--blue); }
.um-cert-label--indigo { background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2); color: #a5b4fc; }
.um-cert-label--indigo i { color: #818cf8; }
.um-cert-label--purple { background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.2); color: #c4b5fd; }
.um-cert-label--purple i { color: #a78bfa; }
.um-cert-label--green { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); color: var(--success-l); }
.um-cert-label--green i { color: var(--success); }
.um-cert-label--amber { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); color: #fcd34d; }
.um-cert-label--amber i { color: var(--amber); }
.um-cert-label--red { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: #fca5a5; }
.um-cert-label--red i { color: #ef4444; }

.um-cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .um-cert-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .um-cert-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .um-cert-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1200px) { .um-cert-grid { grid-template-columns: repeat(6, 1fr); } }

.um-cert-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.um-cert-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.25); }

.um-cert-cat--blue .um-cert-card:hover { border-color: rgba(59,130,246,0.4); }
.um-cert-cat--indigo .um-cert-card:hover { border-color: rgba(99,102,241,0.4); }
.um-cert-cat--purple .um-cert-card:hover { border-color: rgba(168,85,247,0.4); }
.um-cert-cat--green .um-cert-card:hover { border-color: rgba(16,185,129,0.4); }
.um-cert-cat--amber .um-cert-card:hover { border-color: rgba(245,158,11,0.4); }
.um-cert-cat--red .um-cert-card:hover { border-color: rgba(239,68,68,0.4); }

.um-cert-img { overflow: hidden; background: rgba(15,23,42,0.5); }
.um-cert-img--portrait { aspect-ratio: 3/4; }
.um-cert-img--landscape { aspect-ratio: 4/3; }
.um-cert-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: opacity var(--t); }
.um-cert-card:hover .um-cert-img img { opacity: 1; }

.um-cert-name { padding: 0.625rem 0.5rem; text-align: center; font-size: 0.8125rem; font-weight: 600; }
.um-cert-cat--blue .um-cert-name { color: var(--blue); }
.um-cert-cat--indigo .um-cert-name { color: #818cf8; }
.um-cert-cat--purple .um-cert-name { color: #a78bfa; }
.um-cert-cat--green .um-cert-name { color: var(--success); }
.um-cert-cat--amber .um-cert-name { color: var(--amber); }
.um-cert-cat--red .um-cert-name { color: #ef4444; }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 639px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: opacity 0.55s var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(59, 130, 246, 0.4);
}

.contact-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}
.contact-icon--blue  { background: var(--blue-dim); color: var(--blue); }
.contact-icon--green { background: rgba(16,185,129,0.08); color: var(--success); }

.contact-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.contact-card p  { color: var(--text-2); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }

.contact-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 9999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.contact-badge--green {
  background: rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.2);
  color: var(--success);
}

.contact-btn {
  display: block; width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 600; font-size: 0.875rem;
  text-align: center;
  transition: all var(--t) var(--ease);
  border: none; cursor: pointer;
}
.contact-btn--blue  { background: var(--blue); color: #fff; }
.contact-btn--blue:hover { background: var(--blue-hover); }
.contact-btn--green { background: var(--success); color: #fff; }
.contact-btn--green:hover { background: #059669; }
.contact-btn--linkedin { background: #0a66c2; color: #fff; }
.contact-btn--linkedin:hover { background: #004182; }

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES  (Impressum + Datenschutz)
   ═══════════════════════════════════════════════════════ */

.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.legal-card h3 {
  font-size: 1.25rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.legal-card h3 .lc-icon {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.lc-icon--blue   { background: var(--blue-dim); color: var(--blue); }
.lc-icon--green  { background: rgba(16,185,129,0.08); color: var(--success); }
.lc-icon--orange { background: rgba(245,158,11,0.08); color: var(--amber); }

.legal-card p,
.legal-card li {
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.legal-card p + p { margin-top: 0.75rem; }
.legal-card a { color: var(--blue); }
.legal-card a:hover { text-decoration: underline; }

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .legal-grid { grid-template-columns: 1fr; } }

.legal-stack { display: flex; flex-direction: column; gap: 1.5rem; }

/* ── Privacy page extras ── */

.privacy-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.privacy-block h3 {
  font-size: 1.375rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.privacy-sub {
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}
.privacy-sub:last-child { margin-bottom: 0; }
.privacy-sub p { color: var(--text-2); font-size: 0.875rem; line-height: 1.6; }
.privacy-sub strong { color: var(--text); }
.privacy-sub a { color: var(--blue); }
.privacy-sub a:hover { text-decoration: underline; }

.privacy-sub--blue   { background: rgba(59,130,246,0.05); border: 1px solid rgba(59,130,246,0.12); }
.privacy-sub--green  { background: rgba(16,185,129,0.05); border: 1px solid rgba(16,185,129,0.12); }
.privacy-sub--yellow { background: rgba(245,158,11,0.05); border: 1px solid rgba(245,158,11,0.12); }
.privacy-sub--orange { background: rgba(245,158,11,0.05); border: 1px solid rgba(245,158,11,0.12); }
.privacy-sub--purple { background: rgba(168,85,247,0.05); border: 1px solid rgba(168,85,247,0.12); }
.privacy-sub--red    { background: rgba(239,68,68,0.05);  border: 1px solid rgba(239,68,68,0.12); }

.privacy-sub ul { list-style: none; padding: 0; margin: 0; }
.privacy-sub li { color: var(--text-2); font-size: 0.875rem; line-height: 1.6; padding-left: 1rem; position: relative; }
.privacy-sub li::before { content: "•"; position: absolute; left: 0; color: var(--text-3); }

.privacy-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.privacy-table { width: 100%; font-size: 0.875rem; border-collapse: collapse; min-width: 420px; }
@media (max-width: 480px) { .privacy-table { font-size: 0.75rem; min-width: 340px; } }
.privacy-table th { text-align: left; padding: 0.75rem; color: var(--text); font-weight: 600; border-bottom: 1px solid rgba(99,143,218,0.2); }
.privacy-table td { padding: 0.75rem; color: var(--text-2); border-bottom: 1px solid var(--border); }
.privacy-table .mono { font-family: monospace; font-size: 0.75rem; }

.privacy-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (max-width: 768px) { .privacy-rights-grid { grid-template-columns: 1fr; } }
.privacy-right {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--text-2); font-size: 0.875rem;
}
.privacy-right i { color: var(--blue); width: 16px; text-align: center; }

.privacy-date {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: rgba(30,41,59,0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  color: var(--text-2); font-size: 0.9375rem;
}
.privacy-date strong { color: var(--text); }
.privacy-date i { color: var(--blue); }

/* ═══════════════════════════════════════════════════
   TERMIN BUCHEN PAGE
   ═══════════════════════════════════════════════════ */

/* TidyCal embed */
.tidycal-wrapper {
  background: var(--surface);
  border: 1px solid var(--border-s);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 768px) {
  .tidycal-wrapper {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

.formrobin-wrapper {
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .formrobin-wrapper {
    max-width: none;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

/* Vorteile — hero benefit */
.vorteil-hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 2.5rem 3rem;
  background: var(--surface);
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: var(--radius-xl);
}
.vorteil-hero-left {
  flex-shrink: 0;
  text-align: center;
}
.vorteil-hero-stat {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.03em;
}
.vorteil-hero-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}
.vorteil-hero-right h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.vorteil-hero-right p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
}
@media (max-width: 639px) {
  .vorteil-hero {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }
}

/* Vorteile — stats bar */
.vorteil-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 1.75rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.vorteil-stats-item {
  flex: 1;
  text-align: center;
}
.vorteil-stats-num {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.vorteil-stats-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 0.35rem;
}
.vorteil-stats-divider {
  width: 1px;
  height: 40px;
  background: var(--border-s);
  flex-shrink: 0;
}
@media (max-width: 639px) {
  .vorteil-stats {
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .vorteil-stats-item { flex: 0 0 calc(50% - 1rem); }
  .vorteil-stats-divider { display: none; }
}

/* Vorteile — detail cards */
.vorteil-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.vorteil-detail {
  padding: 1.75rem;
  border-left: 2px solid var(--border-s);
  transition: border-color 0.25s ease;
}
.vorteil-detail:hover {
  border-color: var(--blue);
}
.vorteil-detail h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.vorteil-detail p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}
@media (max-width: 639px) {
  .vorteil-details { grid-template-columns: 1fr; }
}

/* Benefit grid */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .benefit-grid { grid-template-columns: 1fr; } }

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: opacity 0.55s var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(59,130,246,0.4);
}
.benefit-icon {
  width: 48px; height: 48px;
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue); font-size: 1.15rem;
}
/* Benefit icon color variants */
.benefit-icon-amber  { background: rgba(245,158,11,0.1);  border-color: rgba(245,158,11,0.2);  color: var(--amber); }
.benefit-icon-green  { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2);  color: #10b981; }
.benefit-icon-purple { background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.2);  color: #8b5cf6; }
.benefit-icon-yellow { background: rgba(234,179,8,0.08);  border-color: rgba(234,179,8,0.2);   color: #eab308; }
.benefit-icon-red    { background: rgba(239,68,68,0.08);  border-color: rgba(239,68,68,0.2);   color: #ef4444; }
.benefit-icon-cyan   { background: rgba(6,182,212,0.08);  border-color: rgba(6,182,212,0.2);   color: #06b6d4; }

.benefit-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }

/* Step cards (Was dich erwartet) */
.step-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .step-grid { grid-template-columns: 1fr; } }

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.step-card-head {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem;
}
.step-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}
.step-icon.muted { background: rgba(100,116,139,0.3); color: var(--text-2); }
.step-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.step-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.65rem;
  font-size: 0.8rem; font-weight: 600; color: var(--blue);
}
.step-badge.muted { background: rgba(100,116,139,0.1); border-color: rgba(100,116,139,0.2); color: var(--text-3); }
.step-badge.success { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2); color: var(--success); }
.step-card > p { font-size: 0.9375rem; color: var(--text-2); line-height: 1.6; }

/* Detail steps (vertical timeline with cards) */
.detail-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
.detail-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 27px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), rgba(59,130,246,0.15));
  z-index: 0;
}
.detail-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.detail-step-num {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
}
.detail-step-body {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.25s ease;
}
.detail-step-body:hover {
  border-color: rgba(59,130,246,0.25);
}
.detail-step-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.detail-step-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1rem;
}
.detail-step-top h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.detail-step-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.detail-step-body > p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.detail-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.detail-step-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
}
.detail-step-list .begleitung-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  font-size: 0.6rem;
}
@media (max-width: 768px) {
  .detail-steps::before { left: 19px; }
  .detail-step { gap: 1rem; }
  .detail-step-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .detail-step-body { padding: 1.25rem; }
  .detail-step-top { flex-direction: column; gap: 0.75rem; }
}

/* Steps flow (horizontal process) */
.steps-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  counter-reset: step;
}
.steps-flow::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(59,130,246,0.3), var(--blue));
  z-index: 0;
}
.steps-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.steps-flow-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1.25rem;
  position: relative;
}
.steps-flow-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.steps-flow-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.steps-flow-item p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 260px;
}
@media (max-width: 768px) {
  .steps-flow {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .steps-flow::before {
    top: 0;
    bottom: 0;
    left: 27px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--blue), rgba(59,130,246,0.3), var(--blue));
  }
  .steps-flow-item {
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .steps-flow-num {
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .steps-flow-icon {
    display: none;
  }
  .steps-flow-item p {
    max-width: none;
  }
}

/* FAQ (native details/summary) */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.faq-item[open] { border-color: var(--border-s); }
.faq-summary {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.125rem 1.25rem; cursor: pointer;
  list-style: none; user-select: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::marker { display: none; content: ""; }
.faq-summary h3 { font-size: 0.9375rem; font-weight: 600; color: var(--text); flex: 1; }
.faq-chevron {
  color: var(--text-3); font-size: 0.7rem; flex-shrink: 0;
  transition: transform var(--t) var(--ease), color var(--t) var(--ease);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--blue); }
.faq-body {
  padding: 0 1.25rem 1.25rem;
}
.faq-body p { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; }
.faq-body strong { color: var(--blue); }

/* ═══════════════════════════════════════════════════
   TERMIN BESTÄTIGT PAGE
   ═══════════════════════════════════════════════════ */

.confirm-wrap {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 100vh; padding: 2rem 1.5rem;
}
.confirm-head { text-align: center; margin-bottom: 2.5rem; }
.confirm-head h1 { font-size: clamp(2rem,5vw,3rem); font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.confirm-head .success-hl { color: var(--success); }
.confirm-head p { font-size: 1.0625rem; color: var(--text-2); }

/* 3-step indicator */
.confirm-steps {
  display: flex; align-items: flex-start; justify-content: space-between;
  width: 100%; max-width: 560px; margin-bottom: 2rem;
}
.confirm-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; flex: 1; position: relative;
}
.confirm-step-num {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem;
  position: relative; z-index: 1;
}
.confirm-step-num.done { background: var(--success); color: #fff; }
.confirm-step-num.active { background: var(--blue); color: #fff; }
.confirm-step-num.pending { background: var(--surface); color: var(--text-3); border: 2px solid var(--border-s); }
.confirm-step .label { font-weight: 600; font-size: 0.875rem; }
.confirm-step .sub { font-size: 0.75rem; color: var(--text-3); margin-top: 0.15rem; }
.confirm-step.done-s .label { color: var(--success); }
.confirm-step.active-s .label { color: var(--text); }
.confirm-step.pending-s .label { color: var(--text-3); }

.confirm-line {
  position: absolute; top: 1.25rem;
  left: calc(50% + 1.25rem);
  width: calc(100% - 2.5rem);
  height: 2px; background: var(--border-s);
}
.confirm-line.done { background: var(--success); }
.confirm-step:last-child .confirm-line { display: none; }

/* Confirmation card */
.confirm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%; max-width: 560px;
  text-align: center; position: relative; overflow: hidden;
}
.confirm-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--success), transparent);
}
.confirm-success-icon {
  width: 80px; height: 80px; margin: 0 auto 1.5rem;
  background: rgba(16,185,129,0.1);
  border: 2px solid rgba(16,185,129,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--success); font-size: 1.75rem;
  animation: confirmPop 0.5s ease-out;
}
@keyframes confirmPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.confirm-card h2 { font-size: 1.375rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; }
.confirm-card > p { font-size: 1rem; color: var(--text-2); line-height: 1.6; margin-bottom: 1.5rem; }

.confirm-info {
  background: rgba(234,179,8,0.08);
  border: 1px solid rgba(234,179,8,0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem; margin-bottom: 1.5rem;
  display: flex; align-items: flex-start; gap: 0.75rem; text-align: left;
}
.confirm-info i { color: #eab308; margin-top: 0.15rem; flex-shrink: 0; }
.confirm-info p { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }
.confirm-info strong { color: var(--text); }

.confirm-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem; color: var(--text-2);
  margin-top: 1rem;
}
.confirm-pill i { font-size: 0.75rem; }
.confirm-pill.close-pill {
  background: rgba(239,68,68,0.06);
  border-color: rgba(239,68,68,0.2);
  color: #fca5a5;
}
.confirm-pill.close-pill i { color: #f87171; }

@media (max-width: 639px) {
  .confirm-step-num { width: 2rem; height: 2rem; font-size: 0.875rem; }
  .confirm-line { top: 1rem; left: calc(50% + 1rem); width: calc(100% - 2rem); }
  .confirm-card { padding: 1.75rem; }
}

/* ─── 10-Minuten-Check ───────────────────────────────────── */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .check-grid { grid-template-columns: 1fr; gap: 2rem; }
  .check-grid .check-card { order: -1; }
}

.check-video-wrap {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-s);
  box-shadow: var(--shadow-card);
  margin: 0 auto;
}
.check-video-wrap iframe { display: block; width: 100%; height: 100%; border: 0; }

.check-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.check-card:hover {
  border-color: rgba(59,130,246,0.25);
  box-shadow: var(--shadow-card-hover);
}
.check-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.check-card-head { text-align: center; margin-bottom: 1.5rem; }
.check-card-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2);
  color: var(--success); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.3rem 0.85rem; border-radius: var(--radius-pill);
}
.check-card-head h3 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-top: 0.75rem; }
.check-card-head p { font-size: 0.875rem; color: var(--text-2); margin-top: 0.35rem; }

.check-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.check-email-row { margin-bottom: 1rem; }
@media (max-width: 639px) { .check-name-row { grid-template-columns: 1fr; } }

.check-input {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border-s);
  border-radius: var(--radius-md);
  color: var(--text); font-family: var(--font); font-size: 0.9375rem;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.check-input::placeholder { color: var(--text-3); }
.check-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }

.check-gdpr { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.check-gdpr label { font-size: 0.8125rem; color: var(--text-2); line-height: 1.5; cursor: pointer; }
.check-gdpr a { color: var(--blue); text-decoration: underline; }

.check-checkbox {
  appearance: none; -webkit-appearance: none;
  width: 1.25rem; height: 1.25rem; min-width: 1.25rem;
  background: var(--bg);
  border: 2px solid var(--border-s); border-radius: 5px;
  cursor: pointer; position: relative; margin-top: 0.1rem;
  transition: all var(--t) var(--ease);
}
.check-checkbox:checked { background: var(--blue); border-color: var(--blue); }
.check-checkbox:checked::after {
  content: '\2713'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); color: #fff; font-size: 0.7rem; font-weight: 700;
}
.check-checkbox:focus { box-shadow: 0 0 0 3px rgba(59,130,246,0.12); outline: none; }

.check-submit {
  width: 100%; padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  border: none; border-radius: var(--radius-pill);
  color: #fff; font-family: var(--font); font-size: 1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  box-shadow: var(--shadow-blue);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.check-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(59,130,246,0.35); }

.check-mini-steps {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding-top: 1.25rem; margin-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem; color: var(--text-3);
}
.check-mini-steps .step-dot {
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.625rem; font-weight: 700;
}
.check-mini-steps .step-dot.active { background: rgba(59,130,246,0.15); border: 1.5px solid rgba(59,130,246,0.4); color: var(--blue); }
.check-mini-steps .step-dot.muted { background: rgba(15,23,42,0.5); border: 1.5px solid var(--border-s); color: var(--text-3); }
.check-mini-step { display: flex; align-items: center; gap: 0.35rem; }
.check-mini-steps .step-arrow { color: var(--text-3); font-size: 0.65rem; }

.check-trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem;
  padding-top: 1.25rem; margin-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.check-trust-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.18);
  border-radius: var(--radius-pill); padding: 0.3rem 0.75rem;
  font-size: 0.7rem; font-weight: 600; color: var(--success-l);
}
.check-trust-pill i { font-size: 0.65rem; color: var(--success); }

/* ═══════════════════════════════════════════════════
   BERATUNGSABLAUF — "Was ich nicht mache" card
   ═══════════════════════════════════════════════════ */
/* "Was ich nicht mache" rows */
.nicht-rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}
.nicht-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-lg);
}
.nicht-x {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}
.nicht-row h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ef4444;
  margin-bottom: 0.35rem;
}
.nicht-row p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}
.nicht-row-wide {
  grid-column: 1 / -1;
}
@media (max-width: 639px) {
  .nicht-rows { grid-template-columns: 1fr; }
  .nicht-row { padding: 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════
   KOOPERATION INCLUDE — koop-* classes
   ═══════════════════════════════════════════════════════════ */
.koop-card {
  background: var(--surface);
  border: 2px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.koop-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.koop-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(245,158,11,0.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber); font-size: 1.15rem;
}
.koop-head h3 { font-size: 1.25rem; font-weight: 600; color: var(--text); }
.koop-card > p { font-size: 0.9375rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1.5rem; }

/* ─── Coming Soon box ─────────────────────────────────────── */
.coming-soon {
  background: var(--surface);
  border: 2px dashed var(--border-s);
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.coming-soon > i { font-size: 2rem; color: var(--text-3); margin-bottom: 1rem; }
.coming-soon h3 { font-size: 1.25rem; font-weight: 600; color: var(--text); margin-bottom: 0.75rem; }
.coming-soon p { font-size: 0.9375rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1.5rem; max-width: 440px; margin-left: auto; margin-right: auto; }
.coming-soon .btn-termin { margin-bottom: 0; }

/* ─── Newsletter form (newsletter.html) ──────────────────── */
.nl-fields { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.nl-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 639px) { .nl-name-row { grid-template-columns: 1fr; } }

.nl-input {
  width: 100%; box-sizing: border-box;
  background: var(--bg); border: 1px solid var(--border-s); border-radius: var(--radius-md);
  padding: 0.875rem 1rem; color: var(--text); font-family: var(--font); font-size: 0.9375rem;
  outline: none; transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.nl-input::placeholder { color: var(--text-3); }
.nl-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }

.nl-gdpr { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; cursor: pointer; }
.nl-gdpr span { font-size: 0.8125rem; color: var(--text-2); line-height: 1.5; }
.nl-gdpr a { color: var(--blue); text-decoration: underline; }
.nl-gdpr input[type="checkbox"] { width: 1.25rem; height: 1.25rem; margin-top: 0.15rem; accent-color: var(--blue); flex-shrink: 0; }

/* ─── Scroll to top button ───────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8) translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease);
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}
.scroll-top-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 39, 68, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-s);
  color: var(--text-3);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all var(--t) var(--ease);
}
.scroll-top-btn:hover {
  background: rgba(26, 39, 68, 0.95);
  border-color: rgba(59, 130, 246, 0.35);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

/* ─── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .js .reveal,
  .js .reveal-l,
  .js .reveal-r,
  .js .sh.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
