/* ==========================================================================
   Sommerfeldt Knietraining — Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&family=Manrope:wght@400;500;600&family=Fraunces:ital,wght@1,500;1,600&display=swap');

:root {
  /* ---- Brand colors ---- */
  --c-blue: #46d0da;
  --c-blue-dark: #2fa8b1;
  --c-blue-tint: #eafcfd;
  --c-blue-tint-2: #d7f5f7;
  --c-black: #181818;
  --c-black-soft: #2a2a2a;
  --c-white: #ffffff;
  --c-orange: #f98444;
  --c-orange-dark: #e56a28;
  --c-grey: #6b7178;
  --c-grey-light: #f4f5f6;
  --c-border: #e7e9ea;

  /* ---- Type ---- */
  /* NOTE: Gilroy is a licensed commercial font. Plus Jakarta Sans is used
     here as a free geometric-sans stand-in with a similar personality.
     If you own Gilroy's web-font files, drop them in /assets/fonts/ and
     swap the @font-face + var(--font-display/body) below — no other
     changes needed anywhere else in the CSS. */
  --font-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;
  --font-accent: 'Fraunces', serif;

  /* ---- Spacing / layout ---- */
  --max-width: 1180px;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --section-pad: clamp(64px, 9vw, 120px);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--c-black);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
main { flex: 1 0 auto; }
.site-header, footer { flex-shrink: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
p { line-height: 1.65; margin: 0 0 1em; color: var(--c-black-soft); }

/* Italic accent detail — used sparingly inside headlines for a single word/phrase */
.accent-italic {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 3px solid var(--c-orange);
  outline-offset: 2px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-blue-dark);
  margin-bottom: 14px;
  text-align: center;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-orange);
  border-radius: 2px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.section { padding: var(--section-pad) 0; }
.section--tint { background: var(--c-blue-tint); }
.section--dark { background: var(--c-black); color: var(--c-white); }
.section--dark p { color: #c9cbcd; }
.section--dark h2, .section--dark h3 { color: var(--c-white); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); }
.section-head p { font-size: 17px; color: var(--c-grey); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-orange);
  color: var(--c-white);
  box-shadow: 0 10px 24px -8px rgba(249, 132, 68, .55);
}
.btn--primary:hover { background: var(--c-orange-dark); transform: translateY(-2px); }
.btn--dark {
  background: var(--c-black);
  color: var(--c-white);
}
.btn--dark:hover { background: var(--c-black-soft); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--c-black);
  border: 2px solid var(--c-black);
  padding: 14px 28px;
}
.btn--outline:hover { background: var(--c-black); color: var(--c-white); }
.btn--block { width: 100%; }
.btn small { display: block; font-weight: 500; font-size: 12px; opacity: .85; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--c-border);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  transition: background .25s ease;
}
.site-header { transition: border-color .25s ease; }
.site-header[data-theme="blue"]::before { background: rgba(214,247,250,.9); }
.site-header[data-theme="dark"]::before { background: rgba(20,21,24,.82); }
.site-header[data-theme="blue"] { border-bottom-color: rgba(47,168,177,.18); }
.site-header[data-theme="dark"] { border-bottom-color: rgba(255,255,255,.08); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav__logo-img { height: 32px; width: auto; }
.nav__logo-img--light { display: none; }
.site-header[data-theme="dark"] .nav__logo-img--dark { display: none; }
.site-header[data-theme="dark"] .nav__logo-img--light { display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-black-soft);
  position: relative;
  padding: 4px 0;
  transition: color .25s ease;
}
.nav__links a:hover { color: var(--c-blue-dark); }
.site-header[data-theme="dark"] .nav__links a { color: #e4e6e7; }
.site-header[data-theme="dark"] .nav__links a.is-active { color: var(--c-white); }
.site-header[data-theme="dark"] .nav__links a:hover { color: var(--c-blue); }
.nav__links a.is-active { color: var(--c-black); }
.nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--c-blue-dark);
  border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 20px; }
.nav__cta .btn { padding: 12px 22px; font-size: 14px; }
.nav__toggle {
  display: none;
  position: relative;
  z-index: 110;
  background: none;
  border: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--c-black); border-radius: 2px; transition: transform .25s ease, opacity .2s ease, background .25s ease; }
.site-header[data-theme="dark"] .nav__toggle span { background: var(--c-white); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  html.nav-open, html.nav-open body { overflow: hidden; height: 100%; }
  .nav__links {
    position: fixed;
    top: var(--header-h, 68px);
    left: 0; right: 0;
    height: calc(100vh - var(--header-h, 68px));
    height: calc(100dvh - var(--header-h, 68px));
    z-index: 105;
    background: var(--c-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    box-shadow: -12px 0 30px -18px rgba(0,0,0,.3);
  }
  .nav__links a { display: block; width: 100%; padding: 14px 4px; font-size: 17px; border-bottom: 1px solid var(--c-border); }
  .nav__links.is-open { transform: translateX(0); }
  /* mobile panel always has a white background, so its text must always stay dark — regardless of the header's theme */
  .site-header[data-theme="dark"] .nav__links a,
  .site-header[data-theme="blue"] .nav__links a { color: var(--c-black-soft); }
  .site-header[data-theme="dark"] .nav__links a.is-active,
  .site-header[data-theme="blue"] .nav__links a.is-active { color: var(--c-black); }
  .nav__toggle { display: flex; }
  .nav__cta .btn span.long { display: none; }
}

/* ==========================================================================
   Hero — light design with photo fading in on the right (leohell.de style)
   ========================================================================== */
.hero-photo {
  position: relative;
  padding: 130px 0 70px;
  overflow: hidden;
  background: var(--c-white);
  color: var(--c-black);
}
.hero-photo__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 22%;
}
.hero-photo__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #ffffff 0%,
    #ffffff 30%,
    rgba(255,255,255,.94) 42%,
    rgba(255,255,255,.62) 58%,
    rgba(255,255,255,.22) 75%,
    rgba(255,255,255,.08) 100%);
}
.hero-photo__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-photo .eyebrow { color: var(--c-blue-dark); }
.hero-photo .eyebrow::before { background: var(--c-orange); }
.hero-photo h1 { font-size: clamp(32px, 5vw, 54px); color: var(--c-black); }
.hero-photo__lead { font-size: 18px; color: var(--c-grey); max-width: 560px; margin-bottom: 30px; }
.hero-photo__ctas { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 30px; }

.avatar-stack { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.avatar-stack__imgs { display: flex; }
.avatar-stack__imgs img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--c-white);
  box-shadow: 0 0 0 1px var(--c-border);
  margin-left: -12px;
}
.avatar-stack__imgs img:first-child { margin-left: 0; }
.avatar-stack__text { font-size: 14px; color: var(--c-grey); }
.avatar-stack__text strong { color: var(--c-black); }

.hero-photo__badges { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-black-soft);
  box-shadow: 0 4px 14px -10px rgba(0,0,0,.2);
}
.hero-badge svg { width: 15px; height: 15px; color: var(--c-blue-dark); flex-shrink: 0; }

@media (max-width: 760px) {
  .hero-photo { padding: 108px 0 56px; text-align: center; }
  .hero-photo__bg { object-position: 60% 18%; }
  .hero-photo__scrim {
    background: linear-gradient(180deg,
      #ffffff 0%, #ffffff 38%,
      rgba(255,255,255,.85) 52%,
      rgba(255,255,255,.35) 70%,
      rgba(255,255,255,.12) 100%);
  }
  .hero-photo__content { max-width: 100%; }
  .hero-photo__lead { margin-left: auto; margin-right: auto; }
  .avatar-stack, .hero-photo__ctas, .hero-photo__badges { justify-content: center; }
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip {
  background: var(--c-black);
  border-top: 1px solid #2a2a2a;
  padding: 20px 0;
}
.trust-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--c-white);
}
.trust-strip__row .stars { color: var(--c-orange); font-size: 15px; }
.trust-strip__row strong { font-family: var(--font-display); font-size: 15px; }
.trust-strip__row span.muted-strip { color: #9a9d9f; font-size: 14px; }

/* ==========================================================================
   Trust bar (legacy, used on subpages)
   ========================================================================== */
.trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 44px;
  justify-content: space-between;
  padding: 28px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.trustbar__item { display: flex; align-items: center; gap: 12px; }
.trustbar__item svg { width: 26px; height: 26px; color: var(--c-blue-dark); flex-shrink: 0; }
.trustbar__item strong { display: block; font-family: var(--font-display); font-size: 15px; }
.trustbar__item span { font-size: 13px; color: var(--c-grey); }

/* ==========================================================================
   Method / System steps
   ========================================================================== */
.method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.method-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 32px 28px;
  position: relative;
}
.method-card__step {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--c-blue-dark);
  margin-bottom: 16px;
  display: block;
}
.method-card__icon {
  width: 52px; height: 52px;
  margin-bottom: 18px;
  color: var(--c-orange);
}
.method-card h3 { font-size: 20px; margin-bottom: 10px; }
.method-card p { font-size: 15px; margin-bottom: 0; }
.method-card__list { margin-top: 14px; }
.method-card__list li { font-size: 14px; color: var(--c-black-soft); padding-left: 20px; position: relative; margin-bottom: 6px; }
.method-card__list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--c-blue); }

@media (max-width: 900px) { .method__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Problem / gap section
   ========================================================================== */
.gap__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.gap__col h3 { font-size: 18px; margin-bottom: 12px; }
.gap__col p { font-size: 15px; }
@media (max-width: 900px) { .gap__grid { grid-template-columns: 1fr; gap: 32px; } }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
.pillar {
  background: var(--c-grey-light);
  border-radius: var(--radius-s);
  padding: 20px;
}
.pillar strong { display: block; font-family: var(--font-display); font-size: 14px; margin-bottom: 6px; }
.pillar span { font-size: 13px; color: var(--c-grey); }
@media (max-width: 700px) { .pillars { grid-template-columns: 1fr; } }

/* ==========================================================================
   Comparison (before/after or us vs. others)
   ========================================================================== */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare__col {
  border-radius: var(--radius-m);
  padding: 32px 30px;
}
.compare__col--no { background: var(--c-grey-light); }
.compare__col--yes { background: var(--c-black); color: var(--c-white); }
.compare__col h3 { font-size: 17px; margin-bottom: 18px; }
.compare__col--yes h3 { color: var(--c-white); }
.compare__col li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--c-black-soft);
}
.compare__col--yes li { color: #e7e9ea; }
.compare__col li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.compare__col--no svg { color: #b9bcbf; }
.compare__col--yes svg { color: var(--c-blue); }
@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }

/* Full-width comparison list (Ohne/Mit) */
.compare-full { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare-full__col { border-radius: var(--radius-m); padding: 34px 30px; }
.compare-full__col--no { background: var(--c-grey-light); }
.compare-full__col--yes { background: var(--c-black); color: var(--c-white); }
.compare-full__col h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 22px; color: var(--c-grey); }
.compare-full__col--yes h3 { color: #9fa2a4; }
.compare-full__col li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; font-weight: 500; margin-bottom: 16px; color: var(--c-black-soft); }
.compare-full__col--yes li { color: var(--c-white); }
.compare-full__col li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.compare-full__col--no svg { color: #c2504f; }
.compare-full__col--yes svg { color: var(--c-blue); }
@media (max-width: 800px) { .compare-full { grid-template-columns: 1fr; } }

/* ==========================================================================
   Leistungsbausteine grid
   ========================================================================== */
.perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.perk-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-m); padding: 26px 24px; }
.perk-card__icon { width: 42px; height: 42px; color: var(--c-orange); margin-bottom: 16px; }
.perk-card h3 { font-size: 16px; margin-bottom: 8px; }
.perk-card p { font-size: 14px; margin-bottom: 0; }
@media (max-width: 900px) { .perks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .perks-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Testimonials — homepage teaser cards
   ========================================================================== */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.teaser-card { border: 1px solid var(--c-border); border-radius: var(--radius-m); overflow: hidden; background: var(--c-white); }
.teaser-card__media { aspect-ratio: 4/5; background: var(--c-black); position: relative; }
.teaser-card__media video, .teaser-card__media img { width: 100%; height: 100%; object-fit: cover; }
.teaser-card__body { padding: 20px 22px 24px; }
.teaser-card__body strong { font-family: var(--font-display); font-size: 16px; }
.teaser-card__body p { font-size: 14px; margin: 6px 0 0; }
@media (max-width: 900px) { .teaser-grid { grid-template-columns: 1fr; } }

/* result cards (Ausgangslage / Ergebnis) */
.result-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.result-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-m); overflow: hidden; }
.result-card__media { aspect-ratio: 4/5; position: relative; background: var(--c-black); cursor: pointer; }
.result-card__media img { width: 100%; height: 100%; object-fit: cover; }
.result-card__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 54px; height: 54px; border-radius: 50%; background: var(--c-white); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 24px -10px rgba(0,0,0,.45); }
.result-card__play svg { width: 20px; height: 20px; color: var(--c-orange); margin-left: 2px; }
.result-card__body { padding: 22px 24px 26px; }
.result-card__body h4 { font-size: 17px; margin-bottom: 2px; }
.result-card__body .muted-small { font-size: 13px; color: var(--c-grey); margin-bottom: 16px; display: block; }
.result-card__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.result-card__cols h5 { font-family: var(--font-display); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--c-grey); margin-bottom: 8px; }
.result-card__cols ul li { font-size: 13px; color: var(--c-black-soft); padding-left: 14px; position: relative; margin-bottom: 6px; }
.result-card__cols ul li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--c-orange); }
@media (max-width: 900px) { .result-cards { grid-template-columns: 1fr; } }

/* ==========================================================================
   Testimonial reels — light card, story-slider, arrows
   ========================================================================== */
.reel-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 26px -20px rgba(0,0,0,.25);
}
.reel-card__name { padding: 20px 22px 0; color: var(--c-black); }
.reel-card__name strong { font-family: var(--font-display); font-size: 17px; }
.reel-card__name span { display: block; font-size: 13px; color: var(--c-blue-dark); margin-top: 3px; }

.reel-dots { display: flex; gap: 5px; padding: 14px 22px; }
.reel-dots span { flex: 1; height: 3px; border-radius: 999px; background: var(--c-border); transition: background .2s ease; }
.reel-dots span.is-active { background: var(--c-orange); }

.reel-slider { position: relative; }
.reel-nav {
  display: none;
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 38px; height: 38px; border-radius: 50%;
  border: none; background: var(--c-white);
  box-shadow: 0 6px 18px -8px rgba(0,0,0,.35);
  align-items: center; justify-content: center; color: var(--c-black);
  transition: background .15s ease, transform .15s ease;
}
.reel-nav:hover { background: var(--c-blue-tint); }
.reel-nav svg { width: 18px; height: 18px; }
.reel-nav--prev { left: 10px; }
.reel-nav--next { right: 10px; }
.reel-nav[disabled] { opacity: .35; pointer-events: none; }
@media (min-width: 901px) { .reel-nav { display: flex; } }

.reel-clips {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.reel-clips::-webkit-scrollbar { display: none; }
.reel-clip { position: relative; flex: 0 0 100%; scroll-snap-align: start; aspect-ratio: 9/16; background: var(--c-black); cursor: pointer; overflow: hidden; }
.reel-clip video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-clip__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease; }
.reel-clip.is-playing .reel-clip__poster { opacity: 0; pointer-events: none; }
.reel-clip__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 62%, rgba(0,0,0,.5) 100%);
  z-index: 1; transition: opacity .2s ease;
}
.reel-clip.is-playing .reel-clip__scrim { opacity: 0; }
.reel-clip__label {
  position: absolute; left: 12px; bottom: 12px;
  font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--c-white);
  background: rgba(24,24,24,.55); padding: 4px 10px; border-radius: 999px; z-index: 2;
}
.reel-clip__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%; background: var(--c-white);
  border: 1px solid rgba(24,24,24,.06);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 28px -12px rgba(24,24,24,.4);
  transition: opacity .2s ease, transform .18s ease; z-index: 2;
}
.reel-clip:hover .reel-clip__play { transform: translate(-50%, -50%) scale(1.06); }
.reel-clip.is-playing .reel-clip__play,
.reel-clip.is-playing .reel-clip__label { opacity: 0; pointer-events: none; }
.reel-clip__play svg { width: 24px; height: 24px; color: var(--c-orange); margin-left: 3px; }
.reel-clip__soundhint { position: absolute; top: 12px; right: 12px; background: rgba(24,24,24,.55); border-radius: 999px; padding: 5px 9px; z-index: 2; }
.reel-clip__soundhint svg { width: 13px; height: 13px; color: #fff; display: block; }
.reel-clip.is-playing .reel-clip__soundhint { display: none; }

.reel-card__footer { padding: 6px 22px 22px; }
.reel-card__footer a { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--c-blue-dark); display: inline-flex; align-items: center; gap: 6px; }
.reel-card__footer a svg { width: 14px; height: 14px; }

.reels { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }

.yt-modal { position: fixed; inset: 0; z-index: 200; background: rgba(15,15,15,.86); display: none; align-items: center; justify-content: center; padding: 24px; }
.yt-modal.is-open { display: flex; }
.yt-modal__inner { width: min(880px, 100%); aspect-ratio: 16/9; position: relative; }
.yt-modal__inner iframe { width: 100%; height: 100%; border-radius: var(--radius-s); border: none; }
.yt-modal__close { position: absolute; top: -44px; right: 0; background: none; border: none; color: #fff; font-family: var(--font-display); font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; }

/* ==========================================================================
   Quiz modal — pop-up lead-magnet quiz (5 questions)
   ========================================================================== */
.quiz-modal { position: fixed; inset: 0; z-index: 210; display: none; align-items: center; justify-content: center; padding: 20px; }
.quiz-modal.is-open { display: flex; }
.quiz-modal__backdrop { position: absolute; inset: 0; background: rgba(15,15,15,.72); }
.quiz-modal__panel {
  position: relative; width: min(560px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--c-white); border-radius: var(--radius-m); padding: 40px 32px 32px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.quiz-modal__close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--c-grey-light); border: none; color: var(--c-black-soft); font-size: 14px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.quiz-modal__step {
  display: block; text-align: center; font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--c-grey); margin-bottom: 10px;
}
.quiz-modal__progress { height: 6px; background: var(--c-grey-light); border-radius: 999px; overflow: hidden; margin-bottom: 26px; }
.quiz-modal__progress-bar { display: block; height: 100%; background: var(--c-blue); border-radius: 999px; transition: width .3s ease; }
.quiz-modal__question { display: none; }
.quiz-modal__question.is-active { display: block; }
.quiz-modal .quiz__option.is-selected { border-color: var(--c-blue-dark); background: var(--c-blue-tint); }
.quiz-modal .quiz__option:disabled { cursor: default; }

.quiz-modal__result { display: none; text-align: center; padding: 12px 0 4px; }
.quiz-modal__result.is-active { display: block; }
.quiz-modal__result-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.4; color: var(--c-black); margin: 0 0 24px; }
@media (max-width: 600px) { .quiz-modal__panel { padding: 32px 22px 26px; } }

/* ==========================================================================
   Calendly modal — pop-up "Erstgespräch" booking
   ========================================================================== */
.calendly-modal { position: fixed; inset: 0; z-index: 220; display: none; align-items: center; justify-content: center; padding: 20px; }
.calendly-modal.is-open { display: flex; }
.calendly-modal__backdrop { position: absolute; inset: 0; background: rgba(15,15,15,.72); }
.calendly-modal__panel {
  position: relative; width: min(820px, 100%); max-height: 92vh; overflow-y: auto;
  background: var(--c-white); border-radius: var(--radius-m); padding: 40px 32px 24px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.calendly-modal__close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--c-grey-light); border: none; color: var(--c-black-soft); font-size: 14px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.calendly-modal__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4.6vw, 40px); text-align: center; color: var(--c-black); max-width: 480px; margin: 0 auto .5em; }
.calendly-modal__lead { font-size: 17px; color: var(--c-grey); max-width: 480px; margin: 0 auto; text-align: center; }
.calendly-modal .confirm-steps li { font-size: 17px; color: var(--c-grey); }
.calendly-modal .eyebrow { color: var(--c-blue); }
.calendly-modal .eyebrow::before { background: var(--c-blue); }
@media (max-width: 600px) { .calendly-modal__panel { padding: 32px 18px 20px; } }

/* ==========================================================================
   Google reviews
   ========================================================================== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-m); padding: 22px; }
.review-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.review-card__stars { color: var(--c-orange); font-size: 14px; margin-bottom: 0; }
.review-card__time { font-size: 12px; color: var(--c-grey); }
.review-card p { font-size: 14px; margin-bottom: 14px; }
.review-card__name { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.reviews-summary { display: flex; align-items: center; justify-content: center; text-align: left; gap: 16px; margin: 0 auto 32px; width: fit-content; }
.reviews-summary__score { font-family: var(--font-display); font-weight: 800; font-size: 44px; }
.reviews-summary__meta span { display: block; font-size: 14px; color: var(--c-grey); }
.reviews-summary__meta .stars { color: var(--c-orange); font-size: 16px; margin-bottom: 4px; }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }

/* ==========================================================================
   Process steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.step { padding: 0 26px; position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; top: 26px; right: -14px; width: 28px; height: 2px; background: var(--c-border); }
.step__num { width: 44px; height: 44px; border-radius: 50%; background: var(--c-black); color: var(--c-white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 16px; margin-bottom: 18px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; }
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .step:not(:last-child)::after { display: none; }
  .step { padding: 0; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ''; position: absolute; background: var(--c-black); border-radius: 2px; }
.faq-item summary .plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-item summary .plus::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); transition: transform .2s ease; }
.faq-item[open] summary .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item__body { padding: 0 4px 22px; font-size: 15px; color: var(--c-grey); max-width: 640px; }
.faq-item__body ul { margin-top: 10px; }
.faq-item__body li { position: relative; padding-left: 18px; margin-bottom: 8px; }
.faq-item__body li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--c-orange); }

/* ==========================================================================
   Founder section / story timeline
   ========================================================================== */
.founder { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.founder__img { border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 3/4; }
.founder__img img { width: 100%; height: 100%; object-fit: cover; }
.founder__creds { display: flex; gap: 22px; margin-top: 22px; flex-wrap: wrap; }
.founder__creds div strong { display: block; font-family: var(--font-display); font-size: 20px; }
.founder__creds div span { font-size: 13px; color: var(--c-grey); }
@media (max-width: 900px) { .founder { grid-template-columns: 1fr; } }

.story-timeline { display: grid; gap: 60px; }
.story-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.story-row:nth-child(even) .story-row__img { order: 2; }
.story-row__img { border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 4/3; }
.story-row__img img { width: 100%; height: 100%; object-fit: cover; }
.story-row__year { display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--c-orange); letter-spacing: .05em; margin-bottom: 10px; }
.story-row h3 { font-size: 22px; margin-bottom: 10px; }
@media (max-width: 800px) {
  .story-row { grid-template-columns: 1fr; gap: 22px; }
  .story-row:nth-child(even) .story-row__img { order: 0; }
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: var(--c-black); color: var(--c-white); border-radius: var(--radius-l);
  padding: 56px 48px; display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--c-white); font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.cta-band p { color: #c9cbcd; margin-bottom: 0; }

/* ==========================================================================
   Lead magnet / quiz
   ========================================================================== */
.leadbox { max-width: 640px; margin: 0 auto; text-align: center; }
.leadbox__flag {
  display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; background: var(--c-orange); color: var(--c-white);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.leadbox h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.leadbox__video {
  aspect-ratio: 16/9; background: var(--c-black); border-radius: var(--radius-m); margin: 30px 0;
  display: flex; align-items: center; justify-content: center; color: var(--c-white);
  font-family: var(--font-display); font-size: 14px; overflow: hidden;
}
.leadbox__video iframe { width: 100%; height: 100%; border: none; }

.quiz { background: var(--c-grey-light); border-radius: var(--radius-m); padding: 32px; text-align: left; margin: 20px auto 0; max-width: 560px; }
.quiz__q { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-bottom: 18px; text-align: center; }
.quiz__options { display: grid; gap: 12px; }
.quiz__option {
  display: block; width: 100%; text-align: left; background: var(--c-white);
  border: 2px solid var(--c-border); border-radius: var(--radius-s); padding: 16px 18px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  transition: border-color .15s ease, background .15s ease;
}
.quiz__option:hover { border-color: var(--c-blue); }
.quiz__option.is-selected { border-color: var(--c-orange); background: #fff6f0; }

.access-limit {
  display: inline-flex; align-items: center; gap: 8px; background: #fff0e6; color: var(--c-orange-dark);
  font-family: var(--font-display); font-weight: 700; font-size: 13px; padding: 9px 16px; border-radius: 999px; margin-bottom: 24px;
}

.form-embed { background: var(--c-grey-light); border-radius: var(--radius-m); padding: 8px; margin-top: 26px; }
.form-embed iframe { width: 100%; border: none; min-height: 360px; border-radius: 14px; }

.confirm-steps { display: grid; gap: 14px; text-align: left; background: var(--c-grey-light); border-radius: var(--radius-m); padding: 26px 28px; margin: 28px 0; }
.confirm-steps li { display: flex; gap: 12px; font-size: 15px; }
.confirm-steps svg { width: 20px; height: 20px; color: var(--c-blue-dark); flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--c-black); color: #c9cbcd; padding: 64px 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #2f2f2f; }
.footer__brand img { height: 30px; margin-bottom: 16px; }
.footer__brand p { color: #9a9d9f; font-size: 14px; max-width: 300px; }
.footer__col h4 { font-family: var(--font-display); color: var(--c-white); font-size: 14px; margin-bottom: 16px; }
.footer__col li { margin-bottom: 10px; font-size: 14px; }
.footer__col a:hover { color: var(--c-white); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 13px; color: #7d8082; }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--c-white); }
@media (max-width: 800px) { .footer__top { grid-template-columns: 1fr; gap: 28px; } }

/* ==========================================================================
   Utilities
   ========================================================================== */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.muted { color: var(--c-grey); }
.stack-gap { display: grid; gap: 18px; }

/* ==========================================================================
   Hero v2 — centered, matches Sommerfeldt mockup, light-blue accents
   ========================================================================== */
.hero-v2 {
  position: relative;
  overflow: hidden;
  background: var(--c-white);
  padding: 64px 0 0;
}
.hero-v2__bg { display: none; }
.hero-v2__scrim { display: none; }
.hero-v2__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.avatar-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(70,208,218,.12);
  border: 1px solid rgba(47,168,177,.22);
  border-radius: 999px;
  padding: 11px 24px 11px 12px;
  margin-bottom: 60px;
}
.avatar-pill__imgs { display: flex; }
.avatar-pill__imgs span {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c-white);
  border: 2px solid var(--c-white);
  box-shadow: 0 0 0 1px var(--c-blue-tint-2);
  margin-left: -12px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.avatar-pill__imgs span:first-child { margin-left: 0; }
.avatar-pill__imgs img { width: 100%; height: 100%; object-fit: cover; }
.avatar-pill__imgs svg { width: 16px; height: 16px; color: var(--c-blue-dark); opacity: .5; }
.avatar-pill__text { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--c-black-soft); text-align: left; }
.avatar-pill__text strong { color: var(--c-black); }

.hero-v2 .eyebrow { color: var(--c-blue-dark); }
.hero-v2 .eyebrow::before { background: var(--c-blue-dark); margin-left: auto; margin-right: auto; }
.hero-v2 h1 { font-size: clamp(30px, 4.6vw, 46px); color: var(--c-black); max-width: 620px; margin-left: auto; margin-right: auto; margin-bottom: .6em; }
.hero-v2__lead { font-size: 17px; color: var(--c-grey); max-width: 480px; margin: 0 auto 38px; }

.hero-v2__ctas { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 0; }
.hero-v2__ctas .btn { width: 100%; max-width: 360px; }
.btn--blue { background: var(--c-blue); color: var(--c-black); box-shadow: 0 10px 24px -8px rgba(70,208,218,.55); }
.btn--blue:hover { background: var(--c-blue-dark); color: var(--c-white); transform: translateY(-2px); }

.hero-v2__google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-grey);
}
.hero-v2__google .stars { color: var(--c-orange); letter-spacing: 1px; font-size: 12px; }
.hero-v2__google strong { color: var(--c-black-soft); font-family: var(--font-display); font-weight: 700; }

.hero-v2__spacer { height: 68px; }

/* ---- Marquee trust banner ---- */
.trust-marquee {
  position: relative;
  background: var(--c-black);
  padding: 22px 0;
  overflow: hidden;
}
.trust-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}
.trust-marquee__set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.trust-marquee__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-white);
  white-space: nowrap;
  padding: 0 28px;
}
.trust-marquee__item svg { width: 17px; height: 17px; color: var(--c-blue); flex-shrink: 0; }
.trust-marquee__dot { width: 4px; height: 4px; border-radius: 50%; background: #4a4a4a; flex-shrink: 0; }
@keyframes marquee-scroll {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-marquee__track { animation: none; }
}

@media (max-width: 640px) {
  .hero-v2 { padding-top: 40px; }
  .avatar-pill { padding: 9px 20px 9px 10px; margin-bottom: 46px; }
  .avatar-pill__imgs span { width: 32px; height: 32px; }
}

/* ==========================================================================
   Footer v2 — logo, brand statement, social links, legal
   ========================================================================== */
.footer-v2 { background: var(--c-black); color: #c9cbcd; padding: 56px 0 26px; }
.footer-v2__top { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; padding-bottom: 34px; border-bottom: 1px solid #2a2a2a; }
.footer-v2__top img { height: 30px; }
.footer-v2__statement { color: #9a9d9f; font-size: 15px; max-width: 440px; margin: 0; }
.footer-v2__social { display: flex; align-items: center; gap: 14px; }
.footer-v2__social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid #333; display: flex; align-items: center; justify-content: center;
  color: #c9cbcd; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.footer-v2__social a:hover { background: var(--c-blue); border-color: var(--c-blue); color: var(--c-black); }
.footer-v2__social svg { width: 17px; height: 17px; }
.footer-v2__bottom {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: 10px 22px; padding-top: 22px; font-size: 13px; color: #7d8082; text-align: center;
}
.footer-v2__legal { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-v2__legal a:hover { color: var(--c-white); }

/* ==========================================================================
   Doubt section — "Du weißt, es muss sich etwas ändern..."
   ========================================================================== */
.doubt-head { text-align: center; max-width: 620px; margin: 0 auto 20px; }
.doubt-head h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 6px; }
.doubt-head > .accent-italic { display: block; color: var(--c-blue-dark); font-size: 1.25em; margin-top: 4px; }

.ribbon { position: relative; margin-top: 56px; }
.ribbon__sticky {
  position: relative;
  overflow: visible;
}
.ribbon__card {
  position: absolute;
  top: 0;
  left: 0; right: 0;
  margin: 0 auto;
  max-width: 560px;
  will-change: transform;
}
.doubt-card {
  background: var(--c-white);
  border: 1px solid rgba(24,24,24,.07);
  border-top: 3px solid var(--c-blue);
  border-radius: 20px;
  padding: 24px 26px 26px;
  text-align: left;
  box-shadow: 0 24px 44px -22px rgba(24,24,24,.4);
  position: relative;
  overflow: hidden;
}
.doubt-card__num {
  position: absolute;
  top: 14px; right: 18px;
  color: rgba(70,208,218,.38);
  z-index: 0;
  user-select: none;
}
.doubt-card__num svg { width: 78px; height: 78px; display: block; }
.doubt-card__top {
  position: relative;
  z-index: 1;
  padding-right: 66px;
}
.doubt-card__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--c-black);
  margin: 0;
  line-height: 1.4;
}
.doubt-card__headline strong { color: var(--c-black); }
.doubt-card__sub {
  font-size: 13.5px;
  color: var(--c-grey);
  margin: 12px 0 0;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .doubt-card__top { padding-right: 54px; }
  .doubt-card__headline { font-size: 14px; line-height: 1.3; }
  .doubt-card__num { top: 10px; right: 12px; }
  .doubt-card__num svg { width: 58px; height: 58px; }
  .doubt-card { padding: 20px 20px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .ribbon__card { position: relative !important; transform: none !important; margin-bottom: 20px; }
  .ribbon { height: auto !important; }
}

.doubt-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--c-grey-light);
  border-radius: var(--radius-m);
  padding: 20px 24px;
}
.doubt-info__icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--c-grey);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-grey);
}
.doubt-info p { font-size: 13.5px; color: var(--c-grey); margin: 0; line-height: 1.6; }
.doubt-info strong { color: var(--c-black-soft); }

.doubt-emphasis {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--c-black);
  max-width: 560px;
  margin: 0 auto;
}

/* ==========================================================================
   Pillars section — "Ein System, statt hunderte Übungen" (dark)
   ========================================================================== */
.section--pillars {
  background: var(--c-black);
  color: var(--c-white);
}
.section--pillars .doubt-head { max-width: 680px; }
.section--pillars .eyebrow { color: var(--c-blue); }
.section--pillars .eyebrow::before { background: var(--c-blue); }
.section--pillars .doubt-head h2 { color: var(--c-white); line-height: 1.28; margin-bottom: 22px; }
.section--pillars .doubt-head .accent-italic { color: var(--c-blue); }
.section--pillars .doubt-head p { color: #b7bbbd; font-size: 16px; max-width: 560px; margin: 0 auto; }

.pillar-list { display: grid; gap: 24px; margin: 56px auto 0; max-width: 560px; }
.pillar-block {
  background: #202227;
  border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid var(--c-blue);
  border-radius: 20px;
  padding: 32px 32px 30px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.05) inset,
    0 24px 50px -20px rgba(70,208,218,.16),
    0 40px 70px -28px rgba(0,0,0,.9);
}
/* Temporary comparison tones — kept for reference, all cards now use --v4 */
.pillar-block--v1, .pillar-block--v2, .pillar-block--v3, .pillar-block--v4 { background: #202227; }

.pillar-block__head {
  position: relative;
  z-index: 1;
  padding-right: 60px;
  margin-bottom: 21px;
}
.pillar-block__label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 10px;
}
.pillar-block__title { color: var(--c-white); font-size: clamp(20px, 2.4vw, 26px); margin: 0; }

/* Corner graphic zone — sits behind the text, no frame, blends into the card */
.pillar-block__art {
  position: absolute;
  top: 0; right: 0;
  width: 230px; height: 100%;
  z-index: 0;
  display: flex; align-items: flex-start; justify-content: flex-end;
  padding: 26px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
}
.pillar-block__placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  opacity: .55;
}
.pillar-block__placeholder svg { width: 24px; height: 24px; color: rgba(70,208,218,.5); }
.pillar-block__placeholder span { font-size: 10px; color: rgba(255,255,255,.32); font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

.pillar-block__desc {
  position: relative;
  z-index: 1;
  color: #b7bbbd;
  font-size: 15px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 0 22px;
}

.pillar-block__perks { display: grid; grid-template-columns: 1fr; gap: 10px 20px; position: relative; z-index: 1; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); }
.pillar-perk {
  display: flex; align-items: flex-start; gap: 9px;
}
.pillar-perk svg { width: 16px; height: 16px; color: var(--c-blue); flex-shrink: 0; margin-top: 2px; }
.pillar-perk span { font-size: 13.5px; color: #c9cbcd; font-weight: 500; line-height: 1.4; }

@media (max-width: 800px) {
  .pillar-block__head { padding-right: 90px; }
  .pillar-block__art { width: 140px; }
}

/* ==========================================================================
   Testimonial spotlight section
   ========================================================================== */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 60px auto 0;
}
.spotlight-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-l);
  overflow: visible;
  box-shadow: 0 30px 60px -30px rgba(24,24,24,.3);
  padding: 24px 24px 0;
}
.spotlight-card__media {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--c-grey-light);
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
}
.spotlight-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spotlight-card__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.spotlight-card__placeholder svg { width: 28px; height: 28px; color: rgba(47,168,177,.4); }
.spotlight-card__placeholder span { font-size: 11px; color: var(--c-grey); font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.spotlight-card__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 28px -12px rgba(24,24,24,.4);
}
.spotlight-card__play svg { width: 22px; height: 22px; color: var(--c-blue-dark); margin-left: 3px; }
.spotlight-card__body { padding: 20px 0 28px; }
.spotlight-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.spotlight-card__stars { color: var(--c-orange); font-size: 14px; white-space: nowrap; padding-top: 2px; }
.spotlight-card__name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--c-black); }
.spotlight-card__meta { display: block; font-size: 13px; color: var(--c-grey); font-weight: 500; margin-top: 2px; }
.spotlight-card__quote {
  font-size: 15px;
  font-style: italic;
  color: var(--c-black-soft);
  line-height: 1.6;
  margin: 0 0 12px;
}
.spotlight-card__quote mark {
  background: rgba(70,208,218,.35);
  color: var(--c-black);
  font: inherit;
  padding: 1px 4px;
  border-radius: 4px;
}
.spotlight-card__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}
.spotlight-card__cols h5 {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--c-grey);
  margin-bottom: 10px;
}
.spotlight-card__cols ul li {
  font-size: 13.5px;
  color: var(--c-black-soft);
  padding-left: 14px;
  position: relative;
  margin-bottom: 7px;
  line-height: 1.4;
}
.spotlight-card__cols ul li::before {
  content: '';
  position: absolute; left: 0; top: 6px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-blue);
}

/* ==========================================================================
   Pillar flip-card (experimental — card 1 only)
   ========================================================================== */
.pillar-flip {
  perspective: 1400px;
  min-height: 180px;
  cursor: pointer;
}
.pillar-flip__inner {
  position: relative;
  width: 100%; height: 100%;
  min-height: 180px;
  transition: transform .6s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;
}
.pillar-flip.is-flipped .pillar-flip__inner { transform: rotateY(180deg); }

@keyframes cardWiggleHint {
  0%, 100% { transform: rotateY(0deg); }
  15% { transform: rotateY(-14deg); }
  32% { transform: rotateY(10deg); }
  48% { transform: rotateY(-7deg); }
  64% { transform: rotateY(4deg); }
  80% { transform: rotateY(-2deg); }
  92% { transform: rotateY(1deg); }
}
.pillar-flip__inner.wiggle-hint { animation: cardWiggleHint 1.15s ease-in-out; }

.pillar-flip__face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #202227;
  border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid var(--c-blue);
  border-radius: 20px;
  padding: 32px 32px 30px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.05) inset,
    0 24px 50px -20px rgba(70,208,218,.16),
    0 40px 70px -28px rgba(0,0,0,.9);
  display: flex;
  flex-direction: column;
}
.pillar-flip__face--back { transform: rotateY(180deg); justify-content: center; }

.pillar-flip__hint {
  position: absolute;
  top: 24px; right: 26px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(70,208,218,.1);
  border: 1px solid rgba(70,208,218,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-blue);
  z-index: 2;
}
.pillar-flip__hint svg { width: 16px; height: 16px; }

.pillar-flip__back-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 14px;
}
.pillar-flip__face--back .pillar-block__desc { font-size: 16px; margin: 0; }

@media (max-width: 800px) {
  .pillar-flip, .pillar-flip__inner { min-height: 180px; }
}

/* ==========================================================================
   Failed-attempts flow diagram section
   ========================================================================== */
.section--flow { background: rgba(70,208,218,.25); }
.section--flow .eyebrow::before { background: var(--c-blue-dark); }
.section--flow .doubt-head h2 { margin-bottom: 28px; }

.flow-diagram {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  margin: 56px auto 0;
}
.flow-diagram::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 25px;
  z-index: 0;
  opacity: .3;
  border-radius: 8px;
  background: repeating-linear-gradient(135deg, var(--c-blue) 0 11px, transparent 11px 29px);
  background-size: 100% 83px;
  animation: flowTrackMove 4.3s linear infinite;
}
@keyframes flowTrackMove {
  from { background-position-y: 0; }
  to { background-position-y: 83px; }
}
.flow-node, .flow-arrow { position: relative; z-index: 1; }

.flow-node {
  width: 100%;
  text-align: center;
  background: var(--c-white);
  border: 1px solid rgba(24,24,24,.07);
  border-top: 3px solid var(--c-blue);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 24px 44px -22px rgba(24,24,24,.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.flow-node.is-visible { opacity: 1; transform: translateY(0); }
.flow-node h4 { font-size: 16.5px; margin-bottom: 6px; color: var(--c-black); }
.flow-node p { font-size: 13.5px; color: var(--c-grey); margin: 0; line-height: 1.5; }

/* Final "loop" step looks different — it's the dead end that sends people back to step 1 */
.flow-node--loop { background: #202227; border-color: rgba(255,255,255,.08); border-top-color: var(--c-blue); }
.flow-node--loop h4 { color: var(--c-blue); }
.flow-node--loop p { color: #b7bbbd; }

.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease .05s, transform .6s ease .05s;
}
.flow-arrow.is-visible { opacity: 1; transform: translateY(0); }
.flow-arrow__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
}
.flow-arrow__chevron svg { width: 46px; height: 46px; color: var(--c-blue-dark); }
.flow-arrow__duration {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--c-white);
  border: 1px solid var(--c-blue-tint-2);
  color: var(--c-blue-dark);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 16px -10px rgba(47,168,177,.35);
}

.flow-loop-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--c-blue-tint-2);
  border: 1px dashed rgba(47,168,177,.45);
  border-radius: 14px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.flow-loop-note.is-visible { opacity: 1; transform: translateY(0); }
.flow-loop-note svg { width: 22px; height: 22px; color: var(--c-blue-dark); flex-shrink: 0; margin-top: 1px; }
.flow-loop-note span { font-size: 14px; font-weight: 600; color: var(--c-black-soft); line-height: 1.5; }
.flow-loop-note span a { color: var(--c-blue-dark); text-decoration: underline; text-underline-offset: 2px; }
.flow-loop-note span a:hover { color: var(--c-black); }

@media (max-width: 600px) {
  .flow-diagram { margin-top: 40px; }
}

.flow-node__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-blue-tint);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.flow-node__icon svg { width: 22px; height: 22px; color: var(--c-blue-dark); }
.flow-node--loop .flow-node__icon { background: rgba(70,208,218,.15); }
.flow-node--loop .flow-node__icon svg { color: var(--c-blue); }

/* ==========================================================================
   Google reviews section
   ========================================================================== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 40px auto 0;
}
.greview-card {
  background: var(--c-white);
  border: 1px solid rgba(24,24,24,.08);
  border-radius: 20px;
  padding: 26px 26px 24px;
  box-shadow: 0 18px 34px -24px rgba(24,24,24,.3);
}
.greview-card__stars { color: var(--c-orange); font-size: 15px; margin-bottom: 12px; }
.greview-card__quote { font-size: 14.5px; font-style: normal; color: var(--c-black-soft); line-height: 1.6; margin: 0 0 18px; }
.greview-card__quote mark { background: rgba(70,208,218,.35); color: var(--c-black); font: inherit; padding: 1px 4px; border-radius: 4px; }
.greview-card__name { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--c-black); display: flex; align-items: center; gap: 8px; }
.greview-card__name svg { width: 16px; height: 16px; color: #4285F4; flex-shrink: 0; }

.review-trust-patch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--c-grey);
}
.review-trust-patch .stars { color: var(--c-orange); letter-spacing: 2px; font-size: 18px; }
.review-trust-patch strong { color: var(--c-black-soft); font-family: var(--font-display); font-weight: 700; font-size: 18px; }

/* ==========================================================================
   About / founder story — 3-step narrative (dark section)
   ========================================================================== */
.about-photo {
  max-width: 300px;
  margin: 44px auto 0;
  padding: 12px 12px 32px;
  background: var(--c-white);
  border-radius: 16px;
  transform: rotate(-2deg);
  box-shadow: 0 35px 60px -20px rgba(0,0,0,.65);
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
  border-radius: 6px;
}
.about-photo__caption {
  display: block;
  text-align: center;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 13.5px;
  color: var(--c-black-soft);
  padding-top: 14px;
}

.story-list { display: grid; gap: 24px; margin: 56px auto 0; max-width: 560px; }
.story-block {
  background: #202227;
  border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid var(--c-blue);
  border-radius: 20px;
  padding: 32px 32px 30px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.05) inset,
    0 24px 50px -20px rgba(70,208,218,.16),
    0 40px 70px -28px rgba(0,0,0,.9);
}
.story-block__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 10px;
  display: block;
}
.story-block__title { color: var(--c-white); font-size: clamp(19px, 2.2vw, 23px); margin-bottom: 4px; }
.story-block__subtitle { display: block; font-size: 13.5px; color: #9a9d9f; margin-bottom: 22px; }

.story-block__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.story-block__text { font-size: 14.5px; color: #c9cbcd; line-height: 1.65; margin: 0; }

.story-block__bullets { display: grid; gap: 10px; }
.story-block__bullets li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13.5px; color: #e4e6e7; font-weight: 500; line-height: 1.4;
}
.story-block__bullets svg { width: 15px; height: 15px; color: var(--c-blue); flex-shrink: 0; margin-top: 2px; }

.story-block__bullets-group + .story-block__bullets-group { margin-top: 18px; }
.story-block__bullets-label {
  display: block; font-family: var(--font-display); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: .05em; color: #7d8082; margin-bottom: 10px;
}
.story-block > .story-block__text + .story-block__bullets-group { margin-top: 24px; }

.story-block__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; max-width: 420px; }
.story-block__stat { text-align: center; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 10px 8px; }
.story-block__stat strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--c-blue); margin-bottom: 2px; }
.story-block__stat span { font-size: 10.5px; color: #9a9d9f; }

@media (max-width: 760px) {
  .story-block__stats { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Legal pages (Impressum, Datenschutz, AGB) — plain standard design
   ========================================================================== */
.legal-page { padding: 80px 0 100px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h1 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 8px; }
.legal-content .legal-updated { font-size: 13px; color: var(--c-grey); margin-bottom: 44px; display: block; }
.legal-content h2 { font-size: 19px; margin-top: 44px; margin-bottom: 14px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 15.5px; margin-top: 24px; margin-bottom: 8px; }
.legal-content p { font-size: 15px; color: var(--c-black-soft); line-height: 1.7; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px; padding-left: 20px; list-style: disc; }
.legal-content li { font-size: 15px; color: var(--c-black-soft); line-height: 1.7; margin-bottom: 6px; }
.legal-content a { color: var(--c-blue-dark); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--c-black); }
.legal-content strong { color: var(--c-black); }
.legal-content address { font-style: normal; }

/* ==========================================================================
   Next-steps CTA section (white)
   ========================================================================== */
.next-steps { max-width: 480px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 40px; }
.next-step { text-align: center; }
.next-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--c-black); color: var(--c-white);
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  margin-bottom: 14px;
}
.next-step h3 { font-size: 17px; margin-bottom: 4px; }
.next-step p.next-step__note { font-size: 12.5px; color: var(--c-grey); margin: 6px 0 0; }
.next-step__media { margin-top: 18px; }

.next-step__frame {
  max-width: 300px;
  margin: 0 auto;
  padding: 10px 10px 26px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  box-shadow: 0 24px 44px -24px rgba(24,24,24,.3);
}
.next-step__frame img { width: 100%; border-radius: 8px; display: block; aspect-ratio: 1/1; object-fit: cover; object-position: top; background: var(--c-grey-light); }
.next-step__frame-caption { display: block; text-align: center; font-size: 12px; color: var(--c-grey); padding-top: 10px; }

.next-step__calls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}
.next-step__calls .next-step__frame { max-width: none; padding: 8px; }
.next-step__calls .next-step__frame img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  object-position: initial;
  border-radius: 6px;
}

.next-step__placeholder {
  max-width: 300px; margin: 0 auto;
  aspect-ratio: 4/3;
  border: 1.5px dashed var(--c-border);
  border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--c-grey);
  background: var(--c-grey-light);
}
.next-step__placeholder svg { width: 26px; height: 26px; opacity: .5; }
.next-step__placeholder span { font-size: 11px; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

/* ==========================================================================
   Kundenerfolge page — placeholder cards & single-column review list
   ========================================================================== */
.spotlight-card__media--placeholder {
  position: absolute; inset: 0;
  background: var(--c-grey-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--c-grey);
}
.spotlight-card__media--placeholder svg { width: 26px; height: 26px; opacity: .5; }
.spotlight-card__media--placeholder span { font-size: 11px; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

.review-list { display: flex; flex-direction: column; gap: 20px; max-width: 640px; margin: 0 auto; }
