/*
 * Christopher Balz Beratung und Coaching – Premium Stylesheet
 * Keine externen Ressourcen. Systemschriften.
 */

/* ═══════════════════════════════════════════════════════════════════════════
   1. CUSTOM PROPERTIES
═══════════════════════════════════════════════════════════════════════════ */
:root {
  /* Farben */
  --c-black:      #0d0f12;
  --c-dark:       #161a20;
  --c-dark2:      #1e2330;
  --c-mid:        #3a4055;
  --c-muted:      #6b7280;
  --c-border:     #e2e5ea;
  --c-light:      #f5f6f8;
  --c-white:      #ffffff;

  --c-blue:       #1a3fa8;
  --c-blue-mid:   #2251c5;
  --c-blue-light: #4a7cf6;
  --c-blue-pale:  #eef2fd;
  --c-blue-glow:  rgba(26,63,168,.12);

  --c-gold:       #c9a84c;
  --c-gold-light: #f0d98a;

  /* Typografie */
  --font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif:   Georgia, 'Times New Roman', serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  1.875rem;
  --fs-3xl:  2.375rem;
  --fs-4xl:  3.25rem;
  --fs-5xl:  4rem;

  /* Abstände */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  14px;
  --r-xl:  24px;

  /* Schatten */
  --sh-sm:  0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --sh-lg:  0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --sh-xl:  0 24px 64px rgba(0,0,0,.13);

  /* Sonstiges */
  --transition:  0.2s ease;
  --max-w:       1200px;
  --header-h:    80px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   2. RESET & BASE
═══════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--c-dark);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--c-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-blue-mid); }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   3. LAYOUT
═══════════════════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section {
  padding-block: var(--sp-24);
}
.section--sm { padding-block: var(--sp-16); }
.section--alt { background: var(--c-light); }
.section--dark {
  background: var(--c-dark);
  color: var(--c-white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--c-white); }
.section--dark p,
.section--dark .lead { color: rgba(255,255,255,.75); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-16);
}

/* ═══════════════════════════════════════════════════════════════════════════
   4. TYPOGRAFIE
═══════════════════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-black);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(var(--fs-2xl), 4.5vw, var(--fs-5xl)); }
h2 { font-size: clamp(var(--fs-xl), 3.5vw, var(--fs-3xl)); }
h3 { font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-2xl)); }
h4 { font-size: var(--fs-xl); }

p { margin-bottom: var(--sp-4); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: var(--fs-lg);
  line-height: 1.7;
  color: var(--c-mid);
}

.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-blue-mid);
  margin-bottom: var(--sp-3);
}

.text-muted { color: var(--c-muted); }
.text-center { text-align: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   5. BUTTONS
═══════════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.85em 2em;
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--c-blue);
  color: var(--c-white);
  border-color: var(--c-blue);
  box-shadow: 0 4px 14px rgba(26,63,168,.30);
}
.btn--primary:hover {
  background: var(--c-blue-mid);
  border-color: var(--c-blue-mid);
  box-shadow: 0 6px 20px rgba(26,63,168,.40);
  color: var(--c-white);
}

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--c-white);
  color: var(--c-white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--c-blue);
  border-color: var(--c-blue);
}
.btn--outline-dark:hover {
  background: var(--c-blue-pale);
  color: var(--c-blue);
}

.btn--ghost {
  background: transparent;
  color: var(--c-mid);
  border-color: var(--c-border);
}
.btn--ghost:hover {
  background: var(--c-light);
  color: var(--c-dark);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   6. HEADER & NAVIGATION
═══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo img {
  height: 48px;
  width: auto;
}

/* Haupt-Navigation */
.main-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-list > li { position: relative; }

.nav-list > li > a {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-dark);
  border-radius: var(--r-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--c-blue);
  background: var(--c-blue-pale);
  text-decoration: none;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  transform: translateX(-50%) translateY(6px);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: var(--c-white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-left: 1px solid var(--c-border);
  border-right: 1px solid var(--c-border);
}

.nav-list > li:hover .nav-dropdown,
.nav-list > li:focus-within .nav-dropdown,
.nav-list > li.open .nav-dropdown,
.nav-has-dropdown .nav-dropdown.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-dark);
  border-radius: var(--r-md);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown a:hover {
  background: var(--c-blue-pale);
  color: var(--c-blue);
  text-decoration: none;
}

/* Dropdown-Trigger Pfeil */
.nav-has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 5px;
  margin-left: 5px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform var(--transition);
  vertical-align: middle;
}
.nav-has-dropdown:hover > a::after,
.nav-has-dropdown.open > a::after {
  transform: rotate(180deg);
}

/* CTA-Button in Nav */
.nav-cta a {
  background: var(--c-blue) !important;
  color: var(--c-white) !important;
  padding: 0.6em 1.4em !important;
  border-radius: var(--r-md) !important;
  box-shadow: 0 2px 10px rgba(26,63,168,.25);
  margin-left: var(--sp-2);
}
.nav-cta a:hover {
  background: var(--c-blue-mid) !important;
  color: var(--c-white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--r-md);
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--c-light); }
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════════════════
   7. HERO
═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,15,18,.82) 0%,
    rgba(13,15,18,.65) 45%,
    rgba(13,15,18,.25) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: var(--sp-5);
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--c-gold);
}

.hero h1 {
  color: var(--c-white);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: var(--sp-6);
}
.hero h1 em {
  font-style: normal;
  color: var(--c-gold-light);
}

.hero .lead {
  color: rgba(255,255,255,.80);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-10);
  max-width: 560px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,.5);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   8. TRUST BAR
═══════════════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--c-dark);
  padding-block: var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-8) var(--sp-12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,.65);
  font-size: var(--fs-sm);
}
.trust-item__icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-gold-light);
}

/* ═══════════════════════════════════════════════════════════════════════════
   9. SCHWERPUNKT-KARTEN
═══════════════════════════════════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

.card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card__image img { transform: scale(1.04); }

.card__body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__tag {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue-mid);
  margin-bottom: var(--sp-3);
}
.card__body h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
  color: var(--c-black);
}
.card__body p {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  flex: 1;
  margin-bottom: var(--sp-5);
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-blue);
  margin-top: auto;
}
.card__link::after {
  content: '→';
  transition: transform var(--transition);
}
.card:hover .card__link::after { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════════════════
   10. ÜBER MICH
═══════════════════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}
.about__image-wrap img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
}
.about__badge {
  position: absolute;
  bottom: var(--sp-6);
  right: calc(-1 * var(--sp-6));
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--sh-lg);
  text-align: center;
  min-width: 130px;
}
.about__badge-number {
  display: block;
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--c-blue);
  line-height: 1;
}
.about__badge-label {
  font-size: var(--fs-xs);
  color: var(--c-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about__content .eyebrow { margin-bottom: var(--sp-4); }
.about__content h2 { margin-bottom: var(--sp-6); }
.about__content p { color: var(--c-mid); margin-bottom: var(--sp-4); }

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.about__value {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: linear-gradient(145deg, #ffffff 0%, #f7f9ff 100%);
  border: 1px solid rgba(26,63,168,.10);
  border-radius: var(--r-lg);
  box-shadow: 0 10px 28px rgba(26,63,168,.07), 0 1px 0 rgba(255,255,255,.85) inset;
}
.about__value-icon {
  width: 36px;
  height: 36px;
  background: var(--c-blue-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-blue);
}
.about__value-text strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-black);
  margin-bottom: 2px;
}
.about__value-text span {
  font-size: var(--fs-xs);
  color: var(--c-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   11. ABLAUF / STEPS
═══════════════════════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--c-blue-pale), var(--c-blue), var(--c-blue-pale));
}

.step {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.step:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}

.step__number {
  width: 56px;
  height: 56px;
  background: var(--c-blue);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  font-weight: 800;
  margin: 0 auto var(--sp-5);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(26,63,168,.30);
}

.step h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.step p {
  font-size: var(--fs-sm);
  color: var(--c-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   12. FÜR WEN
═══════════════════════════════════════════════════════════════════════════ */
.fuerwen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.fuerwen-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  transition: box-shadow var(--transition);
}
.fuerwen-item:hover { box-shadow: var(--sh-md); }

.fuerwen-item__check {
  width: 28px;
  height: 28px;
  background: var(--c-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-white);
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

.fuerwen-item p {
  font-size: var(--fs-sm);
  color: var(--c-mid);
  margin: 0;
}
.fuerwen-item strong {
  display: block;
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--c-black);
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   13. DISCLAIMER BOX
═══════════════════════════════════════════════════════════════════════════ */
.disclaimer-box {
  background: var(--c-blue-pale);
  border: 1px solid rgba(26,63,168,.15);
  border-left: 4px solid var(--c-blue);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-8);
  margin-top: var(--sp-12);
}
.disclaimer-box h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--c-blue);
  margin-bottom: var(--sp-3);
}
.disclaimer-box p {
  font-size: var(--fs-sm);
  color: var(--c-mid);
}

/* ═══════════════════════════════════════════════════════════════════════════
   14. FAQ ACCORDION
═══════════════════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--sh-md); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-black);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--c-blue); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--c-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  color: var(--c-mid);
}
.faq-item.open .faq-icon {
  background: var(--c-blue);
  color: var(--c-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
}
.faq-answer__inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--c-mid);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════════════════
   15. KONTAKT-SEKTION
═══════════════════════════════════════════════════════════════════════════ */
.section--contact {
  background: var(--c-dark2);
  color: var(--c-white);
}
.section--contact h2,
.section--contact h3 { color: var(--c-white); }
.section--contact .lead { color: rgba(255,255,255,.70); }
.section--contact .eyebrow { color: var(--c-gold-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-info h2 { margin-bottom: var(--sp-4); }
.contact-info .lead { margin-bottom: var(--sp-8); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  color: rgba(255,255,255,.75);
  font-size: var(--fs-sm);
}
.contact-detail a { color: rgba(255,255,255,.85); }
.contact-detail a:hover { color: var(--c-white); }
.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-gold-light);
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: #25d366;
  color: var(--c-white);
  padding: 0.75em 1.5em;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: background var(--transition), transform var(--transition);
}
.contact-whatsapp:hover {
  background: #1ebe5b;
  color: var(--c-white);
  transform: translateY(-1px);
}

/* Formular */
.contact-form-wrap {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--sh-xl);
}
.contact-form-wrap h3 {
  color: var(--c-black);
  margin-bottom: var(--sp-6);
  font-size: var(--fs-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.form-group label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75em 1em;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: var(--fs-base);
  color: var(--c-dark);
  background: var(--c-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(26,63,168,.10);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--c-blue);
}
.form-checkbox label {
  font-size: var(--fs-xs);
  color: var(--c-muted);
  line-height: 1.5;
}
.form-checkbox a { color: var(--c-blue); }

.form-honeypot { display: none; }

.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  color: #065f46;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--sp-4);
}
.form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  color: #991b1b;
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-4);
}

/* ═══════════════════════════════════════════════════════════════════════════
   16. FOOTER
═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--c-black);
  color: rgba(255,255,255,.6);
  padding-top: var(--sp-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: var(--sp-4);
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer-tagline {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}
.footer-disclaimer {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: var(--sp-4);
  margin-top: var(--sp-4);
}

.footer-heading {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: var(--sp-5);
}

.footer-nav { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-nav a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--c-white); }

.footer-address {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
}
.footer-address span,
.footer-address a {
  display: block;
}
.footer-address a { color: rgba(255,255,255,.7); }
.footer-address a:hover { color: var(--c-white); }

.footer-bottom {
  padding-block: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-bottom p {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.35);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: var(--sp-6);
}
.footer-bottom-links a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.35);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════════════════════════
   17. FLOATING BUTTONS
═══════════════════════════════════════════════════════════════════════════ */
.floating-buttons {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.20);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.floating-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
}
.floating-btn--whatsapp { background: #25d366; color: var(--c-white); }
.floating-btn--phone    { background: var(--c-blue); color: var(--c-white); }

/* ═══════════════════════════════════════════════════════════════════════════
   18. UNTERSEITEN – PAGE HERO
═══════════════════════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: calc(var(--header-h) + var(--sp-16));
  padding-bottom: var(--sp-16);
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero .eyebrow { color: var(--c-gold-light); }
.page-hero h1 { color: var(--c-white); margin-bottom: var(--sp-4); }
.page-hero .lead { color: rgba(255,255,255,.72); margin-bottom: var(--sp-8); }

/* Breadcrumb */
.breadcrumb { background: var(--c-light); border-bottom: 1px solid var(--c-border); }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
  padding-block: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--c-muted);
}
.breadcrumb li + li::before { content: '/'; margin-right: var(--sp-2); }
.breadcrumb a { color: var(--c-blue); }

/* Unterseiten-Layout */
.subpage-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-16);
  align-items: start;
}

.prose h2 { margin-top: var(--sp-10); margin-bottom: var(--sp-4); }
.prose h3 { margin-top: var(--sp-8); margin-bottom: var(--sp-3); }
.prose p { color: var(--c-mid); margin-bottom: var(--sp-4); }
.prose ul { list-style: disc; padding-left: var(--sp-6); margin-bottom: var(--sp-4); }
.prose ul li { color: var(--c-mid); margin-bottom: var(--sp-2); }
.prose strong { color: var(--c-dark); }

/* Sidebar */
.sidebar-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-5);
  box-shadow: var(--sh-sm);
}
.sidebar-card h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--c-border);
}
.sidebar-card--cta {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: var(--c-white);
}
.sidebar-card--cta h3 { color: var(--c-white); border-color: rgba(255,255,255,.2); }
.sidebar-card--cta p { color: rgba(255,255,255,.8); font-size: var(--fs-sm); margin-bottom: var(--sp-5); }
.sidebar-card--cta .btn { width: 100%; justify-content: center; }

.sidebar-links { display: flex; flex-direction: column; gap: var(--sp-2); }
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--c-mid);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--c-border);
  transition: color var(--transition);
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--c-blue); }
.sidebar-links a::before { content: '→'; color: var(--c-blue); }

/* Highlight-Box */
.highlight-box {
  background: var(--c-blue-pale);
  border-left: 4px solid var(--c-blue);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-8) 0;
}
.highlight-box p { color: var(--c-blue); font-weight: 500; margin: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   19. LEGAL PAGES
═══════════════════════════════════════════════════════════════════════════ */
.legal-layout {
  max-width: 760px;
  margin-inline: auto;
}
.legal-layout h1 { margin-bottom: var(--sp-2); }
.legal-updated { color: var(--c-muted); font-size: var(--fs-sm); margin-bottom: var(--sp-10); }
.legal-layout h2 { font-size: var(--fs-xl); margin-top: var(--sp-10); margin-bottom: var(--sp-3); }
.legal-layout p, .legal-layout li { color: var(--c-mid); font-size: var(--fs-sm); }
.legal-layout ul { list-style: disc; padding-left: var(--sp-6); margin-bottom: var(--sp-4); }
.legal-layout address { margin-bottom: var(--sp-4); }

/* ═══════════════════════════════════════════════════════════════════════════
   20. RESPONSIVE
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .about__badge { right: var(--sp-4); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .subpage-layout { grid-template-columns: 1fr; }
  .subpage-layout .sidebar { order: 2; }
  .subpage-layout .subpage-main,
  .subpage-layout .prose { order: 1; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-white);
    flex-direction: column;
    align-items: stretch;
    padding: var(--sp-4);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    border-top: 1px solid var(--c-border);
  }
  .main-nav.open,
  .main-nav.is-open { transform: translateX(0); }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-list > li > a {
    padding: var(--sp-4) var(--sp-4);
    font-size: var(--fs-base);
    border-radius: var(--r-md);
    border-bottom: 1px solid var(--c-border);
  }
  .nav-list > li:last-child > a { border-bottom: none; }

  /* Dropdown im Mobile als Akkordeon */
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 var(--sp-4);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-dropdown::before { display: none; }
  .nav-list > li.open .nav-dropdown,
.nav-has-dropdown .nav-dropdown.is-visible { max-height: 400px; }
  .nav-dropdown a {
    border-bottom: 1px solid var(--c-border);
    border-radius: 0;
    padding: var(--sp-3) var(--sp-4);
  }

  .nav-cta { margin-top: var(--sp-4); }
  .nav-cta a {
    display: block;
    text-align: center;
    margin-left: 0 !important;
  }

  .cards-grid { grid-template-columns: 1fr; }
  .fuerwen-grid { grid-template-columns: 1fr; }
  .about__values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: var(--sp-6); }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--sp-4); }
  .section { padding-block: var(--sp-16); }
  .hero { min-height: 90vh; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   21. ACCESSIBILITY & PRINT
═══════════════════════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--c-blue);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

@media print {
  .site-header, .floating-buttons, .nav-toggle { display: none !important; }
  body { padding-top: 0; }
}

/* ── Scrolled-Header (nur Schatten, kein Schrumpfen) ── */
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.12);
}

/* ── Nav-Toggle is-active (Hamburger → X) ── */
.nav-toggle.is-active .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-active .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Dropdown is-visible ── */
@media (min-width: 769px) {
  .nav-has-dropdown .nav-dropdown.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
@media (max-width: 768px) {
  .nav-has-dropdown .nav-dropdown.is-visible {
    max-height: 500px !important;
  }
}

/* ── Fade-in Animationen ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ── Form Status ── */
.form-status {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-md);
  font-size: .9375rem;
  font-weight: 500;
  margin-top: var(--sp-4);
}
.form-status--success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-status--error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }


/* ═══════════════════════════════════════════════════════════════════════════
   22. KORREKTURRUNDE HEADER + HERO
   Nur Header/Menü und Hero-Bereich
═══════════════════════════════════════════════════════════════════════════ */

/* Desktop-Navigation hochwertiger: weiche Pill-Hover statt eckiger Flächen */
.nav-list > li > a {
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active,
.nav-list > li:focus-within > a {
  color: var(--c-blue);
  background: rgba(26,63,168,.075);
  border-color: rgba(26,63,168,.10);
  box-shadow: 0 6px 18px rgba(26,63,168,.08);
}

/* Dropdown: Hover-Lücke schließen und Zentrierung auch bei JS-Klasse behalten */
.nav-has-dropdown::after {
  content: '';
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
  display: block;
}
.nav-dropdown {
  top: calc(100% + 6px);
  z-index: 3;
  border-radius: 18px;
  padding: var(--sp-3);
}
.nav-dropdown::before {
  display: none;
}
.nav-list > li:hover .nav-dropdown,
.nav-list > li:focus-within .nav-dropdown,
.nav-list > li.open .nav-dropdown,
.nav-has-dropdown .nav-dropdown.is-visible {
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  border-radius: 12px;
}

/* Kontakt-CTA: runder, sauberer, mit dezenter Puls-Bewegung */
.nav-cta a {
  border-radius: 999px !important;
  padding: .72em 1.55em !important;
  box-shadow: 0 8px 22px rgba(26,63,168,.24);
  animation: navCtaPulse 2.8s ease-in-out infinite;
}
.nav-cta a:hover {
  transform: translateY(-1px);
  box-shadow: 0 11px 30px rgba(26,63,168,.34);
}
@keyframes navCtaPulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(26,63,168,.24), 0 0 0 0 rgba(26,63,168,.22); }
  50% { box-shadow: 0 10px 28px rgba(26,63,168,.30), 0 0 0 8px rgba(26,63,168,0); }
}

/* Hero-Buttons: weiße Kontur; Secondary mit milchiger Hinterlegung */
.hero__cta {
  align-items: center;
}
.hero .btn {
  border-radius: 999px;
  max-width: 100%;
  text-align: center;
  justify-content: center;
}
.hero .btn--primary {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.88);
  box-shadow: none;
}
.hero .btn--primary:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--c-white);
  color: var(--c-white);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.hero .btn--outline {
  background: rgba(255,255,255,.14);
  color: var(--c-white);
  border-color: rgba(255,255,255,.78);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero .btn--outline:hover {
  background: rgba(255,255,255,.22);
  border-color: var(--c-white);
  color: var(--c-white);
}

/* Mobile Menü + Hero sauber nutzbar */
@media (max-width: 768px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    height: var(--header-h);
  }

  .site-logo img {
    height: 42px;
  }

  .main-nav {
    transform: translateX(100%);
  }
  .main-nav.is-open,
  .main-nav.open {
    transform: translateX(0);
  }

  .nav-list > li > a {
    border-radius: 16px;
    border-bottom: 0;
  }

  .nav-list > li > a:hover,
  .nav-list > li > a.active,
  .nav-list > li:focus-within > a {
    box-shadow: none;
  }

  .nav-has-dropdown::after {
    display: none;
  }

  .nav-dropdown {
    background: rgba(26,63,168,.045);
    border-radius: 16px;
    margin: 0 var(--sp-2) var(--sp-2);
    padding: 0 var(--sp-3);
  }

  .nav-dropdown a {
    border-bottom: 0;
    border-radius: 12px;
  }

  .nav-cta a {
    width: 100%;
    animation: navCtaPulse 2.8s ease-in-out infinite;
  }

  .hero {
    min-height: auto;
    padding-top: var(--header-h);
    padding-bottom: var(--sp-16);
    align-items: flex-end;
  }

  .hero__bg {
    background-position: center top;
  }

  .hero__bg::after {
    background: linear-gradient(180deg, rgba(13,15,18,.68) 0%, rgba(13,15,18,.82) 58%, rgba(13,15,18,.92) 100%);
  }

  .hero__inner {
    max-width: 100%;
    padding-top: clamp(7.5rem, 28vh, 15rem);
  }

  .hero__eyebrow {
    font-size: .68rem;
    letter-spacing: .12em;
    margin-bottom: var(--sp-4);
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 1.06;
    margin-bottom: var(--sp-5);
  }

  .hero .lead {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: var(--sp-8);
  }

  .hero__cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-3);
  }

  .hero .btn {
    width: 100%;
    white-space: normal;
    line-height: 1.25;
    padding: .95em 1.15em;
  }

  .trust-bar {
    padding-block: var(--sp-4);
  }

  .trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    justify-content: stretch;
  }

  .trust-item {
    align-items: center;
    font-size: .92rem;
    line-height: 1.35;
  }

  .trust-item__icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding-top: clamp(6.5rem, 24vh, 12rem);
  }

  .hero h1 {
    font-size: clamp(1.95rem, 11vw, 2.65rem);
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   23. KORREKTURRUNDE 2 – Mobile-Menü, Hero-CTA, Floating Buttons, Footer
   Begrenzte Overrides für die aktuellen Änderungswünsche
═══════════════════════════════════════════════════════════════════════════ */

/* Hero Primary bleibt blau, bekommt aber die gewünschte weiße Kontur */
.hero .btn--primary {
  background: var(--c-blue);
  color: var(--c-white);
  border-color: rgba(255,255,255,.92);
  box-shadow: 0 10px 28px rgba(26,63,168,.38), inset 0 1px 0 rgba(255,255,255,.22);
}
.hero .btn--primary:hover {
  background: var(--c-blue-mid);
  color: var(--c-white);
  border-color: var(--c-white);
  box-shadow: 0 14px 34px rgba(26,63,168,.45), inset 0 1px 0 rgba(255,255,255,.26);
}

/* Mobile Navigation: feste Vollflächen-Navigation statt halb sichtbarer Ausfahrt */
@media (max-width: 768px) {
  .site-header {
    overflow: visible;
  }

  .main-nav {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    width: 100vw;
    height: calc(100dvh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    padding: var(--sp-4);
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,251,255,.98) 100%);
    border-top: 1px solid rgba(26,63,168,.10);
    box-shadow: 0 22px 45px rgba(13,15,18,.16);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
    z-index: 1001;
  }

  .main-nav.is-open,
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    width: min(100%, 520px);
    margin: 0 auto;
    padding: var(--sp-2) 0 var(--sp-8);
  }

  .nav-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: var(--sp-4) var(--sp-5);
    margin-bottom: var(--sp-2);
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(26,63,168,.08);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(26,63,168,.055);
  }

  .nav-dropdown {
    margin: 0 0 var(--sp-3);
    padding: 0 var(--sp-2);
    background: transparent;
    border-radius: 0;
  }

  .nav-has-dropdown .nav-dropdown.is-visible {
    max-height: 620px !important;
  }

  .nav-dropdown a {
    margin-bottom: var(--sp-2);
    padding: var(--sp-3) var(--sp-5);
    background: rgba(26,63,168,.045);
    border-radius: 14px;
  }

  .nav-cta a {
    justify-content: center;
    min-height: 54px;
    margin-top: var(--sp-2);
    background: var(--c-blue) !important;
    color: var(--c-white) !important;
    border: 1px solid rgba(255,255,255,.75) !important;
  }
}

/* Floating Buttons: hochwertiger, mit Struktur und weißer Umrandung */
.floating-btn {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.88);
  box-shadow:
    0 14px 32px rgba(13,15,18,.28),
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -10px 22px rgba(0,0,0,.08);
}
.floating-btn::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: radial-gradient(circle at 28% 22%, rgba(255,255,255,.42), rgba(255,255,255,0) 38%);
  pointer-events: none;
}
.floating-btn svg {
  position: relative;
  z-index: 1;
}
.floating-btn--whatsapp {
  background: linear-gradient(145deg, #32df76 0%, #20b85a 56%, #15954a 100%);
  color: var(--c-white);
}
.floating-btn--mail {
  background: linear-gradient(145deg, var(--c-blue) 0%, var(--c-blue-mid) 58%, #102a70 100%);
  color: var(--c-white);
}

/* Footer */
.footer-logo img {
  height: 68px;
  width: auto;
  margin-bottom: var(--sp-5);
}
.footer-disclaimer {
  display: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   24. KORREKTURRUNDE 3 – Mobile-Menü, Trust-Bullets, Floating, Steps, FAQ, Footer
   Nur gezielte Overrides für die aktuell gemeldeten Punkte
═══════════════════════════════════════════════════════════════════════════ */

/* FAQ: JS nutzt .is-open, ältere CSS-Regeln nutzten .open – beide Zustände gleich behandeln */
.faq-item.is-open,
.faq-item.open {
  box-shadow: var(--sh-md);
}
.faq-item.is-open .faq-icon,
.faq-item.open .faq-icon {
  background: var(--c-blue);
  color: var(--c-white);
  transform: none;
}
.faq-item.is-open .faq-icon svg line:first-child,
.faq-item.open .faq-icon svg line:first-child {
  opacity: 0;
}
.faq-icon svg line {
  transition: opacity .2s ease;
}
.faq-item.is-open .faq-answer,
.faq-item.open .faq-answer {
  max-height: 600px;
}

/* Floating Buttons: weniger Spielzeug-Glanz, mehr ruhige Premium-Fläche */
.floating-btn {
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255,255,255,.92);
  box-shadow:
    0 12px 26px rgba(13,15,18,.22),
    0 0 0 1px rgba(13,15,18,.08),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.floating-btn::before {
  display: none;
}
.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 34px rgba(13,15,18,.28),
    0 0 0 1px rgba(13,15,18,.08),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.floating-btn--whatsapp {
  background: linear-gradient(145deg, #24c765 0%, #15984c 100%);
  color: var(--c-white);
}
.floating-btn--mail {
  background: linear-gradient(145deg, var(--c-blue) 0%, #12317f 100%);
  color: var(--c-white);
}

@media (max-width: 768px) {
  /* Mobile Menü: keine einzelnen Karten/Kästen; sauberer Listenaufbau */
  .main-nav {
    padding: var(--sp-5) var(--sp-5) var(--sp-8);
    background: rgba(255,255,255,.985);
  }

  .nav-list {
    width: 100%;
    max-width: 520px;
    gap: 0;
    padding: 0;
  }

  .nav-list > li {
    width: 100%;
  }

  .nav-list > li > a {
    min-height: auto;
    margin: 0;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(26,63,168,.12);
  }

  .nav-list > li > a:hover,
  .nav-list > li > a.active,
  .nav-list > li:focus-within > a {
    background: transparent;
    box-shadow: none;
    color: var(--c-blue);
  }

  .nav-has-dropdown > a::after {
    flex: 0 0 auto;
  }

  .nav-has-dropdown .nav-dropdown,
  .nav-dropdown {
    position: static !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 0 0 1rem !important;
    transform: none !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
  }

  .nav-dropdown a {
    display: block;
    width: 100%;
    margin: 0;
    padding: .8rem 0 .8rem 1rem;
    background: transparent;
    border: 0;
    border-left: 2px solid rgba(26,63,168,.16);
    border-radius: 0;
    box-shadow: none;
    white-space: normal;
  }

  .nav-dropdown a:hover,
  .nav-dropdown a.active {
    background: transparent;
    color: var(--c-blue);
    border-left-color: var(--c-blue);
  }

  .nav-cta {
    margin-top: var(--sp-5);
  }

  .nav-cta a {
    justify-content: center;
    padding: .95rem 1.25rem !important;
    border: 1px solid rgba(255,255,255,.82) !important;
    border-radius: 999px !important;
    box-shadow: 0 10px 24px rgba(26,63,168,.24) !important;
  }

  /* Hero Trust-Punkte mobil mittig */
  .trust-bar__inner {
    justify-items: center;
  }

  .trust-item {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  /* Ablauf mobil wirklich einspaltig */
  .steps-grid {
    grid-template-columns: 1fr !important;
    gap: var(--sp-5);
  }

  .steps-grid::before {
    display: none !important;
  }

  /* Footer mobil komplett mittig */
  .site-footer {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    justify-items: center;
    text-align: center;
    gap: var(--sp-9);
  }

  .footer-col,
  .footer-tagline,
  .footer-address {
    text-align: center;
  }

  .footer-logo {
    display: inline-flex;
    justify-content: center;
  }

  .footer-logo img {
    height: 76px;
    margin-inline: auto;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .floating-buttons {
    right: var(--sp-4);
    bottom: var(--sp-4);
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   25. KORREKTURRUNDE 4 – Startseite mobil: Über mich, Kontakt, Footer-Abstände
   Ausschließlich mobile Overrides
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Über mich: mobil Überschrift zuerst, Bild direkt darunter, Text danach */
  .about-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-6);
  }

  .about__content {
    display: contents;
  }

  .about__content .eyebrow {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }

  .about__content h2 {
    order: 2;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }

  .about__image-wrap {
    order: 3;
    width: 100%;
    max-width: 440px;
    margin: var(--sp-2) auto var(--sp-4);
  }

  .about__content .lead {
    order: 4;
    width: 100%;
    text-align: center;
    margin-bottom: var(--sp-3);
  }

  .about__content p:not(.lead) {
    order: 5;
    width: 100%;
  }

  .about__values {
    order: 6;
    width: 100%;
    justify-items: center;
    margin-top: var(--sp-6);
  }

  .about__value {
    width: 100%;
    max-width: 340px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--sp-2);
    padding: var(--sp-5) var(--sp-4);
  }

  .about__value-text {
    text-align: center;
  }

  /* Kontaktbereich mobil mittig, Formularfelder bleiben sauber bedienbar */
  .section--contact .contact-info,
  .section--contact .contact-info .lead,
  .section--contact .contact-form-wrap h3 {
    text-align: center;
  }

  .section--contact .contact-details {
    align-items: center;
  }

  .section--contact .contact-detail {
    justify-content: center;
    text-align: center;
    max-width: 360px;
  }

  .section--contact .contact-whatsapp {
    justify-content: center;
    margin-inline: auto;
  }

  /* Footer mobil: mehr Luft vor den Zwischenüberschriften */
  .footer-grid {
    gap: var(--sp-6);
  }

  .footer-grid .footer-col + .footer-col {
    margin-top: var(--sp-6);
  }

  .footer-heading {
    margin-top: var(--sp-3);
    margin-bottom: var(--sp-4);
  }

  .footer-address {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    line-height: 1.45;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   27. KORREKTURRUNDE 6 – Einheitliches Anker-Scrolling + Mobile-Menü-CTA
   Nur Scroll-Offset und mobile CTA-Ausrichtung
═══════════════════════════════════════════════════════════════════════════ */
html {
  scroll-padding-top: calc(var(--header-h) + 36px);
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: calc(var(--header-h) - 6px);
  }

  .nav-cta a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   28. Unterseiten-Korrektur – ruhiger Textaufbau, CTA nach FAQ, Sidebar-Kontakt
═══════════════════════════════════════════════════════════════════════════ */
.page-hero .btn--primary {
  background: var(--c-blue);
  color: var(--c-white);
  border-color: rgba(255,255,255,.92);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(26,63,168,.38), inset 0 1px 0 rgba(255,255,255,.22);
}
.page-hero .btn--primary:hover {
  background: var(--c-blue-mid);
  color: var(--c-white);
  border-color: var(--c-white);
  box-shadow: 0 14px 34px rgba(26,63,168,.45), inset 0 1px 0 rgba(255,255,255,.26);
}
.subpage-main > h2:first-child,
.prose > h2:first-child {
  margin-top: 0;
}
.prose h2 {
  letter-spacing: -0.015em;
}
.prose p {
  font-size: 1.02rem;
  line-height: 1.82;
}
.prose ul li {
  line-height: 1.7;
}
.subpage-final-cta {
  margin-top: var(--sp-10);
  padding: var(--sp-8);
  background: linear-gradient(180deg, #f5f7fb 0%, #eef3f9 100%);
  border: 1px solid rgba(26,63,168,.10);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.subpage-final-cta h2 {
  margin-top: 0;
  margin-bottom: var(--sp-3);
}
.subpage-final-cta p {
  max-width: 760px;
  margin-bottom: var(--sp-5);
}
.subpage-final-cta .btn--primary {
  border-color: var(--c-blue);
}
.sidebar-contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  font-style: normal;
  font-size: .92rem;
  line-height: 1.45;
  color: var(--c-muted);
}
.sidebar-contact__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--c-blue);
  font-weight: 650;
  text-decoration: none;
}
.sidebar-contact__item:hover {
  color: var(--c-blue-mid);
}
.sidebar-contact__icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  border-radius: 999px;
  background: var(--c-blue-pale);
  color: var(--c-blue);
  border: 1px solid rgba(26,63,168,.10);
}
.sidebar-contact__note {
  display: block;
  padding-top: var(--sp-1);
  color: var(--c-muted);
}
@media (max-width: 1024px) {
  .subpage-layout .sidebar {
    order: 2;
  }
  .subpage-layout .subpage-main,
  .subpage-layout .prose {
    order: 1;
  }
}
@media (max-width: 768px) {
  .page-hero .btn--primary {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    white-space: normal;
    line-height: 1.25;
  }
  .subpage-final-cta {
    padding: var(--sp-6);
    text-align: center;
  }
  .subpage-final-cta p {
    margin-inline: auto;
  }
  .subpage-final-cta .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
  .sidebar-contact__item {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   29. Unterseiten-Feinschliff – mobiler Hero-CTA wie Startseite, Desktop-Bild oben
═══════════════════════════════════════════════════════════════════════════ */

/* Unterseiten-Hero-Bilder auf Desktop oben verankern, damit Köpfe nicht weggeschnitten werden */
@media (min-width: 769px) {
  .page-hero::before {
    background-position: center top !important;
  }
}

/* Unterseiten-Hero-CTA mobil exakt wie der Hero-CTA der Startseite */
@media (max-width: 768px) {
  .page-hero .btn {
    width: 100%;
    max-width: none;
    white-space: normal;
    line-height: 1.25;
    padding: .95em 1.15em;
    border-radius: 999px;
    text-align: center;
    justify-content: center;
  }

  .page-hero .btn--primary {
    background: var(--c-blue);
    color: var(--c-white);
    border-color: rgba(255,255,255,.92);
    box-shadow: 0 10px 28px rgba(26,63,168,.38), inset 0 1px 0 rgba(255,255,255,.22);
  }

  .page-hero .btn--primary:hover {
    background: var(--c-blue-mid);
    color: var(--c-white);
    border-color: var(--c-white);
    box-shadow: 0 14px 34px rgba(26,63,168,.45), inset 0 1px 0 rgba(255,255,255,.26);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   30. Feinschliff Header/Footer/Unterseiten-Hero
   Nur gezielte Overrides für die aktuell gemeldeten Punkte
═══════════════════════════════════════════════════════════════════════════ */

/* Header flacher: weniger Luft oben/unten, Desktop und Mobil */
:root {
  --header-h: 64px;
}

@media (max-width: 768px) {
  :root {
    --header-h: 56px;
  }
}

/* Desktop-Menü: etwas mehr Abstand zwischen letztem Textpunkt und Kontakt-CTA */
@media (min-width: 769px) {
  .nav-list > .nav-cta {
    margin-left: var(--sp-4);
  }

  .nav-cta a {
    margin-left: 0 !important;
  }
}

/* Unterseiten-Hero-Bild auf Desktop fixiert, aber 50px nach oben geschoben,
   damit unten nicht zu viel vom Motiv verloren geht. Mobil bleibt unangetastet. */
@media (min-width: 769px) {
  .page-hero::before {
    background-position: center calc(0% - 50px) !important;
  }
}

/* Footer: Kontaktpunkte mit gleichem Abstand wie die übrigen Footer-Links */
.footer-address {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  line-height: 1.45;
}

.footer-address span,
.footer-address a {
  display: block;
  margin: 0;
}

/* Footer-Logo ca. 10 % kleiner als in der letzten Version */
.footer-logo img {
  height: 61px;
}

@media (max-width: 768px) {
  .footer-logo img {
    height: 68px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   31. Header-Logo-Korrektur
   Header-Höhe wieder wie vorher, Logo selbst größer
═══════════════════════════════════════════════════════════════════════════ */
:root {
  --header-h: 80px;
}

.site-logo img {
  height: 60px;
  width: auto;
}

@media (max-width: 768px) {
  :root {
    --header-h: 68px;
  }

  .site-logo img {
    height: 50px;
    width: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   32. Mobile Unterseiten-Hero/Header-Feinschliff
   Nur mobile Ansicht: grauen Zwischenstreifen entfernen, Header/Logo etwas größer,
   Unterseiten-Hero unten symmetrischer auslaufen lassen. Scroll-JS bleibt unverändert.
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --header-h: 76px;
  }

  .site-logo img {
    height: 56px;
    width: auto;
  }

  .breadcrumb {
    display: none;
  }

  .page-hero {
    padding-top: calc(var(--header-h) + var(--sp-16));
    padding-bottom: calc(var(--sp-16) + var(--sp-3));
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   33. Mobile Startseiten-Hero – weniger Luft über der Eyebrow
   Nur Index-Hero mobil: oberen Innenabstand ca. halbiert.
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero__inner {
    padding-top: clamp(3.75rem, 14vh, 7.5rem);
  }
}

@media (max-width: 480px) {
  .hero__inner {
    padding-top: clamp(3.25rem, 12vh, 6rem);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   34. Anpassung Balz – kleinere Hero-H1, CTA ohne Glow/Schatten
═══════════════════════════════════════════════════════════════════════════ */
.hero h1 {
  font-size: clamp(2rem, 4.25vw, 3.65rem);
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 3.05rem);
  line-height: 1.12;
}

.btn,
.btn:hover,
.btn--primary,
.btn--primary:hover,
.btn--outline,
.btn--outline:hover,
.btn--outline-dark,
.btn--outline-dark:hover,
.btn--ghost,
.btn--ghost:hover,
.hero .btn,
.hero .btn:hover,
.hero .btn--primary,
.hero .btn--primary:hover,
.hero .btn--outline,
.hero .btn--outline:hover,
.page-hero .btn,
.page-hero .btn:hover,
.page-hero .btn--primary,
.page-hero .btn--primary:hover,
.sidebar-card--cta .btn,
.sidebar-card--cta .btn:hover,
.subpage-final-cta .btn,
.subpage-final-cta .btn:hover,
.nav-cta a,
.nav-cta a:hover {
  box-shadow: none !important;
}

.nav-cta a {
  animation: none !important;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.45rem);
  }

  .page-hero h1 {
    font-size: clamp(1.75rem, 7.6vw, 2.35rem);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   26. KORREKTURRUNDE 5 – Über mich Desktop: Bild/Textfluss & Werte-Karten
   Nur Desktop, mobile Darstellung bleibt unverändert
═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 1025px) {
  .about-grid {
    display: flow-root;
  }

  .about__image-wrap {
    float: left;
    width: 44%;
    max-width: 500px;
    margin: 0 var(--sp-16) var(--sp-8) 0;
  }

  .about__content {
    display: block;
  }

  .about__content .eyebrow {
    margin-top: 0;
  }

  .about__content p:nth-of-type(n+5) {
    clear: both;
  }

  .about__values {
    clear: both;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: var(--sp-10);
  }
}
