/* =========================================================
   FONTS – lokal gehostet (DSGVO-konform)
   ========================================================= */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/montserrat.woff2') format('woff2-variations'),
       url('fonts/montserrat.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/roboto.woff2') format('woff2-variations'),
       url('fonts/roboto.woff2') format('woff2');
}
@font-face {
  font-family: 'Varela Round';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/varela-round.woff2') format('woff2');
}

/* =========================================================
   Zahnarztpraxis Dr. Schreiber – Rebuild (Look & Feel 1:1)
   Brand-Werte aus der Originalseite extrahiert:
   - Cyan:   #00DAFC
   - Indigo: #4632DA  (H2-Farbe)
   - Deep:   #0700DD  (Gradient-Start)
   - Light:  #00F2FF  (Gradient-Ende)
   - Text:   #3D4459  (Headings dunkel) / #7A7A7A (Body)
   - Gradient: linear-gradient(130deg, #0700DD 0%, #00F2FF 100%)
   - Buttons: 30px Border-Radius (Pill)
   - Fonts:  Varela Round (Headings), Montserrat (Eyebrows & UI), Roboto (Body)
   ========================================================= */

:root {
  --c-cyan: #00DAFC;
  --c-cyan-light: #E6FBFF;
  --c-cyan-pale: #F2FCFE;
  --c-indigo: #4632DA;
  --c-indigo-dark: #0700DD;
  --c-cyan-grad: #00F2FF;
  --c-heading: #3D4459;
  --c-body: #7A7A7A;
  --c-bg: #FFFFFF;
  --gradient-hero: linear-gradient(130deg, #0700DD 0%, #00F2FF 100%);
  --font-display: 'Varela Round', system-ui, -apple-system, sans-serif;
  --font-ui: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Roboto', system-ui, -apple-system, sans-serif;
  --container: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: #333;
  font-weight: 400;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-indigo); text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

:focus-visible { outline: 3px solid var(--c-cyan); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-heading);
  margin: 0 0 .4em;
  font-weight: 400;
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -120px; left: 0;
  background: var(--c-indigo);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 9999;
}
.skip-link:focus { top: 0; color: #fff; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 0;
}
.site-header.is-sticky {
  position: fixed;
  background: linear-gradient(130deg, rgba(7,0,221,.85) 0%, rgba(0,242,255,.85) 100%);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 2px 18px rgba(7,0,221,.15);
  animation: slideDown .3s ease;
}
@keyframes slideDown { from { transform: translateY(-100%);} to { transform: translateY(0);} }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand img { height: 76px; width: auto; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-primary > ul {
  display: flex; gap: .25rem; list-style: none; margin: 0; padding: 0;
}
.nav-primary a {
  display: block;
  padding: .5rem 1.1rem;
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  transition: color .2s;
}
.site-header.is-sticky .nav-primary a { color: #fff; }
.nav-primary a:hover { color: var(--c-cyan); }
.site-header.is-sticky .nav-primary a:hover { color: #fff; opacity: .8; }
.nav-primary li.current > a::after,
.nav-primary a.is-current::after {
  content: "";
  position: absolute;
  left: 1.1rem; right: 1.1rem;
  bottom: -6px;
  height: 2px;
  background: #fff;
}
.site-header.is-sticky .nav-primary a.is-current::after { background: #fff; }
.nav-primary li.has-sub { position: relative; }
.nav-primary li.has-sub > a:not(.is-current)::after {
  content: "";
  display: inline-block;
  margin-left: .35em;
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  position: static;
  background: transparent;
}
.nav-primary .submenu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  border-radius: 8px;
  padding: .5rem 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .2s;
}
.nav-primary li.has-sub:hover .submenu,
.nav-primary li.has-sub:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-primary .submenu a { color: var(--c-heading); font-weight: 400; padding: .6rem 1.25rem; }
.nav-primary .submenu a:hover { background: var(--c-cyan-pale); color: var(--c-indigo); }

.header-phone {
  display: flex; align-items: center; gap: .5rem;
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .95rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255,255,255,.3);
}
.site-header.is-sticky .header-phone { color: #fff; border-left-color: rgba(255,255,255,.3); }
.header-phone svg { width: 18px; height: 18px; color: var(--c-cyan); }
.header-phone:hover { color: var(--c-cyan); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 6px;
}
.site-header.is-sticky .nav-toggle { color: #fff; border-color: rgba(255,255,255,.4); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
  padding: .85rem 1.7rem;
  border-radius: 30px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .01em;
  transition: all .25s ease;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn svg { width: 14px; height: 14px; }
.btn-cyan {
  background: #fff;
  color: var(--c-indigo);
  border: 1.5px solid var(--c-indigo);
}
.btn-cyan:hover {
  background: var(--c-indigo);
  color: #fff;
  border-color: var(--c-indigo);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(7,0,221,.25);
}
.btn-indigo {
  background: #fff;
  color: var(--c-indigo);
  border: 1.5px solid var(--c-indigo);
}
.btn-indigo:hover {
  background: var(--c-indigo);
  color: #fff;
  border-color: var(--c-indigo);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(7,0,221,.35);
}
.btn-white {
  background: #fff;
  color: var(--c-indigo);
}
.btn-white:hover {
  background: var(--c-indigo);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 720px;
  padding: 180px 0 140px;
  background: var(--gradient-hero);
  overflow: hidden;
  color: #fff;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.hero::before {
  width: 480px; height: 480px;
  top: 8%; left: 35%;
  border-radius: 47% 53% 60% 40% / 38% 52% 48% 62%;
  background: rgba(255,255,255,.08);
  animation: blobMove 16s ease-in-out infinite;
}
.hero::after {
  width: 620px; height: 620px;
  top: 40%; right: -15%;
  border-radius: 50% 50% 55% 45% / 45% 60% 40% 55%;
  background: rgba(255,255,255,.07);
  animation: blobMove 22s ease-in-out infinite reverse;
}
@keyframes blobMove {
  0%, 100% { transform: translate(0,0) rotate(0); }
  33% { transform: translate(20px,-30px) rotate(8deg); }
  66% { transform: translate(-25px,15px) rotate(-6deg); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-copy { max-width: 540px; }

.hero-image-wrap {
  position: relative;
  aspect-ratio: 5/4;
  max-width: 520px;
  margin-left: auto;
  width: 100%;
}
.hero-image-wrap::before {
  /* leichte hellere Blob-Fläche hinter dem Bild */
  content: "";
  position: absolute;
  inset: -30px -20px -20px -30px;
  background: rgba(255,255,255,.12);
  border-radius: 45% 55% 65% 35% / 50% 35% 65% 50%;
  z-index: 0;
}
.hero-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 38% 62% 60% 40% / 45% 40% 60% 55%;
  box-shadow: 0 30px 60px rgba(0,0,0,.18);
}
.eyebrow {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: .02em;
  margin: 0 0 1rem;
  display: block;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 2.85rem);
  color: #fff;
  max-width: 600px;
  margin: 0 0 1.5rem;
  line-height: 1.1;
}
.hero p {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255,255,255,.95);
  max-width: 500px;
  margin: 0 0 2rem;
  line-height: 1.6;
}

/* Bottom wave divider */
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 80px;
  z-index: 3;
  pointer-events: none;
}
.hero-wave svg { width: 100%; height: 100%; display: block; }

/* =========================================================
   FLOATING ENVELOPE BUTTON (bottom-left)
   ========================================================= */
.fab-envelope {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 56px; height: 56px;
  background: var(--c-indigo);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(7,0,221,.35);
  z-index: 60;
  transition: all .25s;
}
.fab-envelope:hover {
  background: var(--c-cyan);
  color: #fff;
  transform: translateY(-3px) scale(1.05);
}
.fab-envelope svg { width: 22px; height: 22px; }
.fab-envelope.is-hidden { opacity: 0; visibility: hidden; transform: scale(.6); transition: opacity .25s, visibility .25s, transform .25s; }

/* =========================================================
   BACK-TO-TOP – als Zahn
   ========================================================= */
.fab-tooth {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 45px;
  height: 55px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--c-indigo);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.85);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, color .2s ease;
  filter: drop-shadow(0 8px 18px rgba(7,0,221,.30));
}
.fab-tooth.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.fab-tooth:hover {
  color: var(--c-cyan);
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 14px 24px rgba(0,218,252,.45));
}
.fab-tooth-shape {
  width: 100%;
  height: 100%;
  display: block;
  transition: color .2s ease;
}
.fab-tooth-arrow {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.fab-tooth:focus-visible {
  outline: 3px solid var(--c-cyan);
  outline-offset: 4px;
  border-radius: 12px;
}
@media (max-width: 720px) {
  /* Alle Content-Buttons auf Mobile horizontal zentriert
     (Header/Mobile-Drawer ausgenommen) */
  main .btn,
  .cta-section .btn,
  .map-consent .btn {
    display: flex;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  /* Einheitlicher Abstand zum Text darüber für CTAs in Text-Bereichen */
  .philosophy-text > .btn,
  .services-intro > .btn,
  .team-cta > .btn,
  .prose > .btn,
  .prose > p > .btn:only-child,
  .hero-copy > .btn {
    margin-top: 1.5rem;
  }
  .prose > p:has(> .btn:only-child) { margin-bottom: 0; }

  .fab-tooth {
    bottom: 18px;
    right: 18px;
    width: 36px;
    height: 45px;
  }
  .fab-tooth-arrow { width: 16px; height: 16px; }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 90px 0; position: relative; overflow: hidden; }

/* Decorative pale blobs scattered */
.blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50% 50% 55% 45% / 50% 60% 40% 50%;
  background: var(--c-cyan-pale);
  z-index: 0;
}
.blob-1 { top: 80px; left: -120px; width: 380px; height: 380px; }
.blob-2 { bottom: -100px; right: -80px; width: 320px; height: 320px; background: rgba(70,50,218,.04); }
.blob-3 { top: 50%; right: -50px; width: 220px; height: 220px; background: var(--c-cyan-pale); }
.blob-4 { top: 40px; left: 50%; width: 180px; height: 180px; background: rgba(70,50,218,.04); transform: translateX(-50%); }

.section > .container { position: relative; z-index: 1; }

/* =========================================================
   PHILOSOPHY (organic image left, text right)
   ========================================================= */
.philosophy { padding-top: 60px; }
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.philosophy-image {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 480px;
  margin: 0 auto;
}
.philosophy-image::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: var(--c-cyan-pale);
  border-radius: 40% 60% 65% 35% / 55% 45% 55% 45%;
  z-index: 0;
}
.philosophy-image img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 38% 62% 65% 35% / 55% 45% 55% 45%;
}
.philosophy h3 {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--c-heading);
  margin: 0 0 1rem;
}
.philosophy h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  color: var(--c-indigo);
  margin: 0 0 1.5rem;
  font-weight: 400;
}
.philosophy p {
  font-family: var(--font-ui);
  font-weight: 300;
  color: var(--c-body);
  margin: 0 0 1rem;
  font-size: .98rem;
}
.philosophy .btn { margin-top: 1.5rem; }

/* =========================================================
   SERVICES INTRO + CARDS
   ========================================================= */
.services-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.services-intro h3 {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--c-indigo);
  margin: 0 0 .75rem;
}
.services-intro h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  color: var(--c-heading);
  margin: 0;
  max-width: 600px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: #fff;
  padding: 2.5rem 2rem 2rem;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(7,0,221,.06);
  text-decoration: none;
  transition: all .3s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 30px; left: 30px;
  width: 70px; height: 70px;
  background: var(--c-cyan-pale);
  border-radius: 50% 50% 65% 35% / 50% 55% 45% 50%;
  z-index: 0;
  transition: all .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(7,0,221,.12);
}
.service-card:hover::before { background: var(--c-cyan-light); transform: scale(1.15); }
.service-icon {
  position: relative;
  z-index: 1;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--c-indigo);
}
.service-icon svg { width: 48px; height: 48px; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--c-heading);
  margin: 0 0 .75rem;
}
.service-card p {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: .92rem;
  color: var(--c-body);
  margin: 0 0 1.25rem;
  min-height: 3em;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--c-indigo);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .9rem;
  transition: gap .2s;
}
.service-link::after {
  content: "→";
  font-size: 1.1em;
  transition: transform .2s;
}
.service-card:hover .service-link { color: var(--c-cyan); }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* =========================================================
   TEAM SECTION
   ========================================================= */
.team-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.team-card {
  display: block;
  text-decoration: none;
  position: relative;
}
.team-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(7,0,221,.12);
  transition: transform .4s;
  position: relative;
}
.team-card:hover .team-image { transform: translateY(-6px); }
.team-image img { width: 100%; height: 100%; object-fit: cover; }
.team-card-label {
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(7,0,221,.10);
  text-align: center;
  font-family: var(--font-display);
  color: var(--c-indigo);
  font-size: 1.1rem;
  margin: -2rem 1.5rem 0;
  position: relative;
  z-index: 2;
}
.team-cta {
  text-align: left;
}
.team-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--c-heading);
  margin: 0 0 1.5rem;
}
.team-cta .btn { margin-top: .5rem; }

/* =========================================================
   CTA "Sie haben Fragen?"
   ========================================================= */
.cta-section {
  position: relative;
  background: var(--gradient-hero);
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
  margin-top: 60px;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.10) 0%, transparent 35%),
    radial-gradient(circle at 30% 80%, rgba(255,255,255,.08) 0%, transparent 35%);
  pointer-events: none;
}
/* Wave on top of CTA going down to gradient */
.cta-wave-top {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  z-index: 1;
}
.cta-wave-top svg { width: 100%; height: 100%; display: block; transform: rotate(180deg); }

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 1rem;
}
.cta-text p {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255,255,255,.95);
  margin: 0 0 2rem;
}
.cta-image {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 480px;
  margin: 0 auto;
}
.cta-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  padding: 3rem 0 2rem;
  background: var(--c-indigo-dark);
  margin-top: 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
}
.footer-inner a { color: #fff; font-weight: 500; }
.footer-inner a:hover { color: var(--c-cyan); text-decoration: underline; }
.footer-legal { display: flex; gap: 2.5rem; }
.footer-credit .heart { color: #ff6b9d; }

/* =========================================================
   MOBILE NAV DRAWER
   ========================================================= */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(7,0,40,.55);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all .25s;
}
.nav-mobile.is-open { opacity: 1; visibility: visible; }
.nav-mobile-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 1.5rem 1.75rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s;
  display: flex;
  flex-direction: column;
}
.nav-mobile.is-open .nav-mobile-panel { transform: translateX(0); }
.nav-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.nav-mobile-head .brand img { height: 56px; width: auto; }
.nav-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: var(--c-heading);
  flex-shrink: 0;
}
.nav-mobile ul { list-style: none; margin: 0; padding: 0; }
.nav-mobile > .nav-mobile-panel > nav > ul > li > a {
  display: block;
  padding: 1rem .25rem;
  border-bottom: 1px solid #eee;
  color: var(--c-heading);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1.1rem;
}
.nav-mobile .submenu { padding-left: 1rem; }
.nav-mobile .submenu a { padding: .65rem .25rem; font-weight: 400; color: var(--c-body); display: block; border-bottom: 1px solid #f4f4f4; font-family: var(--font-ui); font-size: .95rem; }
.nav-mobile-cta {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.nav-mobile-cta .btn {
  width: auto;
  min-width: 200px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .nav-primary, .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { padding: 160px 0 120px; min-height: 640px; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-copy { max-width: 100%; }
  .hero-image-wrap { max-width: 460px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-section .container { grid-template-columns: 1fr 1fr; }
  .team-cta { grid-column: 1 / -1; text-align: center; }
}
@media (max-width: 720px) {
  .section { padding: 50px 0; }

  /* Sticky-Header auf Mobile etwas solider machen */
  .site-header.is-sticky {
    background: linear-gradient(130deg, rgba(7,0,221,.96) 0%, rgba(0,242,255,.96) 100%);
  }
  .site-header { padding: .6rem 0; }
  .brand img { height: 52px; }
  .nav-toggle { width: 40px; height: 40px; }

  /* Hero kompakter */
  .hero { padding: 110px 0 80px; min-height: auto; }
  .hero-inner { gap: 1.5rem; }
  .hero h1 { font-size: 2rem; margin-bottom: 1rem; }
  .hero p { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-image-wrap { max-width: 280px; }
  .hero-wave { height: 50px; }

  /* Philosophy */
  .philosophy-grid { grid-template-columns: 1fr; gap: 2rem; }
  .philosophy-image { max-width: 340px; }
  .philosophy h2 { font-size: 1.85rem; }

  /* Services intro: enger zusammen */
  .services-intro { flex-direction: column; align-items: flex-start; gap: 1.25rem; margin-bottom: 2.5rem; }
  .services-intro h2 { font-size: 1.85rem; }

  /* Service-Cards kompakter */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.75rem 1.5rem 1.5rem; }
  .service-card::before { width: 56px; height: 56px; top: 24px; left: 24px; }
  .service-icon { width: 48px; height: 48px; margin-bottom: .75rem; }
  .service-icon svg { width: 36px; height: 36px; }
  .service-card h3 { font-size: 1.1rem; }
  .service-card p { font-size: .9rem; min-height: 0; margin-bottom: 1rem; }

  /* Team */
  .team-section .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-cta { text-align: center; }
  .team-cta h2 { font-size: 1.6rem; }

  /* CTA */
  .cta-section { padding: 60px 0; }
  .cta-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-image { max-width: 320px; }
  .cta-text h2 { font-size: 1.85rem; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; padding-bottom: 4.5rem; }
  .footer-legal { justify-content: center; }

  /* Floating Envelope – kleiner und nicht über Footer-Links */
  .fab-envelope { bottom: 16px; left: 16px; width: 48px; height: 48px; }
  .fab-envelope.is-hidden { opacity: 0; visibility: hidden; transform: scale(.6); }
  .fab-envelope { transition: opacity .25s, visibility .25s, transform .25s; }
}
@media (max-width: 400px) {
  .container { padding: 0 1.1rem; }
  .hero h1 { font-size: 1.8rem; }
  .brand img { height: 46px; }
}

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

/* =========================================================
   SUBPAGE / INNER PAGE BANNER
   ========================================================= */
.page-banner {
  position: relative;
  padding: 170px 0 100px;
  background: var(--gradient-hero);
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.page-banner::before, .page-banner::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.page-banner::before {
  width: 360px; height: 360px;
  top: -20%; right: 5%;
  border-radius: 47% 53% 60% 40% / 38% 52% 48% 62%;
  background: rgba(255,255,255,.08);
}
.page-banner::after {
  width: 460px; height: 460px;
  bottom: -40%; left: -10%;
  border-radius: 50% 50% 55% 45% / 45% 60% 40% 55%;
  background: rgba(255,255,255,.06);
}
.page-banner-inner { position: relative; z-index: 2; }
.page-banner h1 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 400;
  margin: 0;
}
.page-banner .eyebrow { color: rgba(255,255,255,.92); margin: 0 0 .5rem; }

/* PROSE CONTENT */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-ui);
  font-weight: 300;
  color: var(--c-body);
  font-size: 1rem;
  line-height: 1.75;
  text-align: left;
}
.prose h2 {
  color: var(--c-indigo);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0 0 1rem;
  text-align: left;
}
.prose .eyebrow {
  color: var(--c-indigo);
  margin: 0 0 .5rem;
  text-align: left;
  display: block;
}
.prose h3 {
  color: var(--c-heading);
  font-size: 1.35rem;
  margin: 2.5rem 0 .75rem;
}
.prose p { margin: 0 0 1.1em; }
.prose ul { margin: 0 0 1.5em; padding-left: 1.4em; text-align: left; }
.prose ul li { margin-bottom: .35em; }
.prose strong { color: var(--c-heading); font-weight: 500; }
.prose-intro {
  text-align: left;
  font-size: 1.1rem;
  color: var(--c-heading);
  margin: 0 0 3rem;
  font-weight: 400;
}
.section-alt { background: var(--c-cyan-pale); }

/* =========================================================
   FEATURE-IMAGE auf Leistungs-Detailseiten
   ========================================================= */
.feature-image {
  position: relative;
  max-width: 540px;
  margin: 0 auto 3.5rem;
  aspect-ratio: 5 / 4;
}
.feature-image::before {
  content: "";
  position: absolute;
  inset: -25px -15px -15px -25px;
  background: var(--c-cyan-pale);
  border-radius: 40% 60% 65% 35% / 55% 45% 55% 45%;
  z-index: 0;
}
.feature-image img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 38% 62% 65% 35% / 55% 45% 55% 45%;
  box-shadow: 0 25px 50px rgba(7,0,221,.10);
}
.feature-image.flip::before {
  inset: -15px -25px -25px -15px;
  border-radius: 60% 40% 35% 65% / 45% 55% 45% 55%;
}
.feature-image.flip img {
  border-radius: 62% 38% 35% 65% / 45% 55% 45% 55%;
}
@media (max-width: 720px) {
  .feature-image { max-width: 340px; margin-bottom: 2rem; }
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-member {
  text-align: center;
  background: #fff;
  padding: 1.25rem 1.25rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(7,0,221,.06);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}
.team-member:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(7,0,221,.10); }
.team-member-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--c-cyan-pale), var(--c-cyan-light));
  margin: 0 0 1rem;
  display: block;
}
.team-member-image-wrap {
  position: relative;
  margin: 0 0 1rem;
}
.team-member-image-wrap .team-member-photo {
  margin: 0;
}
.team-badge {
  position: absolute;
  bottom: .75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-indigo);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(7,0,221,.25);
}
.team-member-avatar {
  width: 90px; height: 90px;
  margin: .75rem auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-cyan-light), var(--c-cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
}
.team-member h3 {
  font-family: var(--font-display);
  color: var(--c-indigo);
  font-size: 1.05rem;
  margin: 0 0 .25rem;
}
.team-member p {
  font-family: var(--font-ui);
  font-size: .88rem;
  color: var(--c-body);
  margin: 0;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Kontaktseite */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}
.contact-info { font-family: var(--font-ui); font-weight: 300; color: var(--c-body); line-height: 1.8; }
.contact-info h3 {
  font-family: var(--font-display);
  color: var(--c-indigo);
  font-size: 1.3rem;
  margin: 0 0 .5rem;
}
.contact-info .info-block { margin-bottom: 2rem; }
.contact-info a { color: var(--c-indigo); }
.contact-info a:hover { color: var(--c-cyan); }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: .35rem 0;
  border-bottom: 1px dashed #e4e4e4;
}
.hours-list li:last-child { border: 0; }
.contact-form { display: grid; gap: 1rem; }
.contact-form label {
  display: block;
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 500;
  color: var(--c-heading);
  margin-bottom: .35rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid #e4e6ed;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-heading);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 4px rgba(0,218,252,.15);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .checkbox-row {
  display: flex; gap: .75rem;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--c-body);
  font-family: var(--font-ui);
}
.contact-form .checkbox-row input { width: auto; margin-top: .25rem; }
.form-disclaimer {
  font-family: var(--font-ui);
  font-size: .82rem;
  line-height: 1.55;
  color: var(--c-body);
  margin: .5rem 0 0;
}
.form-disclaimer a { color: var(--c-indigo); }
.form-disclaimer a:hover { color: var(--c-indigo-dark); }
.form-submit { display: flex; justify-content: flex-start; margin-top: .25rem; }
.form-submit .btn { width: auto; min-width: 160px; }

/* =========================================================
   ANFAHRT / GOOGLE MAPS CONSENT GATE
   ========================================================= */
.map-consent {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7,0,221,.04), rgba(0,218,252,.07)),
    repeating-linear-gradient(45deg, #fff 0 12px, #f4f9fc 12px 24px);
  box-shadow: 0 10px 40px rgba(7,0,221,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.map-consent.is-loaded {
  background: none;
  padding: 0;
  display: block;
}
.map-consent.is-loaded iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-consent-inner {
  max-width: 460px;
  padding: 2rem 1.5rem;
  font-family: var(--font-ui);
  color: var(--c-body);
}
.map-consent .map-icon {
  width: 52px; height: 52px;
  color: var(--c-indigo);
  margin: 0 auto .75rem;
  display: block;
}
.map-consent h3 {
  font-family: var(--font-display);
  color: var(--c-indigo);
  font-size: 1.3rem;
  margin: 0 0 .75rem;
}
.map-consent p {
  font-size: .9rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}
.map-consent .btn { margin-bottom: 1rem; }
.map-consent .map-fallback {
  font-size: .8rem;
  margin: 0;
}
.map-consent .map-fallback a { color: var(--c-indigo); }
.map-consent .map-fallback a:hover { color: var(--c-cyan); }

/* =========================================================
   ANAMNESE-FORMULAR
   ========================================================= */
.anamnese-form {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--font-ui);
}
.anamnese-form .form-section {
  background: #fff;
  border: 1px solid #e4e6ed;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 22px rgba(7,0,221,.04);
}
.anamnese-form .form-section legend {
  font-family: var(--font-display);
  color: var(--c-indigo);
  font-size: 1.15rem;
  font-weight: 400;
  padding: 0 .5rem;
}
.anamnese-form .hint {
  font-size: .85rem;
  color: var(--c-body);
  margin: -.4rem 0 .8rem;
}
.anamnese-form label {
  display: block;
  font-size: .88rem;
  font-weight: 500;
  color: var(--c-heading);
  margin: .8rem 0 .35rem;
}
.anamnese-form input[type=text],
.anamnese-form input[type=tel],
.anamnese-form input[type=email],
.anamnese-form input[type=date] {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid #e4e6ed;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .98rem;
  color: var(--c-heading);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.anamnese-form input:focus {
  outline: none;
  border-color: var(--c-indigo);
  box-shadow: 0 0 0 4px rgba(70,50,218,.12);
}
.form-row { display: grid; gap: 1rem; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.radio-row { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; margin-bottom: .5rem; }
.radio-row label:first-child { margin: 0 .5rem 0 0; font-weight: 500; }
.anamnese-form .radio,
.anamnese-form .check {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .92rem;
  font-weight: 400;
  color: var(--c-heading);
  margin: 0;
  cursor: pointer;
}
.anamnese-form .radio input,
.anamnese-form .check input {
  width: 18px; height: 18px;
  accent-color: var(--c-indigo);
  flex-shrink: 0;
}
.anamnese-form .check { align-items: flex-start; line-height: 1.4; }
.anamnese-form .check input { margin-top: .15rem; }
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem 1.25rem;
}
.check-stack { display: grid; gap: .85rem; }
.inline-fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.inline-fieldset legend {
  font-size: .88rem;
  font-weight: 500;
  color: var(--c-heading);
  padding: 0;
  margin-right: .5rem;
  float: left;
}
.form-status {
  margin-top: 1rem;
  font-size: .92rem;
  min-height: 1.4em;
}
.form-status.is-error { color: #c62828; }
.form-status.is-warn { color: #ef6c00; }
.form-status.is-ok { color: #2e7d32; }

/* Erfolgs-/Fehler-Box nach Form-Submit */
.form-feedback {
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: .95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.form-feedback strong { font-weight: 500; }
.form-feedback-ok {
  background: rgba(46, 125, 50, .08);
  color: #1b5e20;
  border-left: 4px solid #2e7d32;
}
.form-feedback-error {
  background: rgba(198, 40, 40, .08);
  color: #b71c1c;
  border-left: 4px solid #c62828;
}

@media (max-width: 720px) {
  .page-banner { padding: 120px 0 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .prose h3 { font-size: 1.2rem; }
  .map-consent { aspect-ratio: 4 / 5; }
  .map-consent h3 { font-size: 1.15rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .anamnese-form .form-section { padding: 1.5rem 1.25rem; }
}

/* =========================================================
   KARRIERE / RECRUITING
   ========================================================= */

/* Reduzierter LP-Header (Logo + Tel, kein Menü) */
.career-header { background: #fff; box-shadow: 0 1px 0 rgba(7,0,221,.08); position: sticky; top: 0; z-index: 90; }
.career-header-inner { display: flex; align-items: center; justify-content: space-between; padding: .85rem 0; gap: 1rem; }
.career-header .brand img { height: 48px; width: auto; display: block; }
.career-header-tel {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-ui); font-weight: 600; font-size: .95rem;
  color: var(--c-indigo); text-decoration: none;
  padding: .5rem .9rem; border: 1.5px solid var(--c-indigo); border-radius: 30px;
  transition: background .2s, color .2s;
}
.career-header-tel:hover { background: var(--c-indigo); color: #fff; }
.career-header-tel svg { width: 16px; height: 16px; }

/* Hero (Hub + LPs) */
.career-hero {
  position: relative;
  background: var(--gradient-hero);
  color: #fff;
  padding: 7rem 0 5rem;
  overflow: hidden;
}
.career-hero .container { position: relative; z-index: 2; }
.career-hero .eyebrow { color: rgba(255,255,255,.85); display: inline-block; margin-bottom: .75rem; }
.career-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 1.25rem;
  max-width: 880px;
}
.career-hero .lead {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,.92);
  max-width: 700px;
  margin: 0 0 1.75rem;
  line-height: 1.55;
}
.career-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.career-hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
  aspect-ratio: 4/3;
}
.career-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Auswahlkarten (Hub) */
.career-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.career-choice-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: var(--c-heading);
  box-shadow: 0 20px 50px rgba(7,0,221,.12);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
  text-align: left;
  border: 2px solid transparent;
}
.career-choice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(7,0,221,.18);
  border-color: var(--c-cyan);
}
.career-choice-card .eyebrow { margin-bottom: .5rem; }
.career-choice-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--c-indigo);
  margin: 0 0 .75rem;
  line-height: 1.2;
}
.career-choice-card p {
  color: var(--c-body);
  line-height: 1.55;
  margin: 0 0 1.5rem;
  flex: 1;
}
.career-choice-card .btn { align-self: flex-start; }

/* Proof-Liste (✓ Kein Lebenslauf etc.) */
.proof-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.proof-list li {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-ui); font-weight: 500;
  color: #fff;
  font-size: 1.02rem;
}
.proof-list li::before {
  content: ""; flex-shrink: 0;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234632DA' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
.proof-list.on-white li { color: var(--c-heading); }
.proof-list.on-white li::before { background-color: var(--c-cyan-light); }

/* Brief von Daniela */
.letter-section { padding: 5rem 0; }
.letter-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(7,0,221,.08);
  padding: 3rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.letter-card::before {
  content: "„";
  position: absolute;
  top: -.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--c-cyan-pale);
  line-height: 1;
  z-index: 0;
}
.letter-photo {
  width: 220px; height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: var(--c-cyan-pale);
  display: block;
}
.letter-content { position: relative; z-index: 1; }
.letter-content .eyebrow { color: var(--c-cyan); }
.letter-content h2 {
  font-family: var(--font-display);
  color: var(--c-indigo);
  font-size: 1.6rem;
  margin: .5rem 0 1.25rem;
  line-height: 1.25;
}
.letter-content p {
  font-family: var(--font-body);
  color: var(--c-heading);
  line-height: 1.7;
  margin: 0 0 1rem;
  font-size: 1.02rem;
}
.letter-signature {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--c-indigo);
}
.letter-signature small {
  display: block;
  font-family: var(--font-ui);
  font-size: .82rem;
  color: var(--c-body);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: .15rem;
}

/* Benefit-Kacheln */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 8px 24px rgba(7,0,221,.06);
  border: 1px solid rgba(70,50,218,.08);
  transition: transform .2s, box-shadow .2s;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(7,0,221,.12);
}
.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-cyan-light);
  color: var(--c-indigo);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: .85rem;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-card h3 {
  font-family: var(--font-display);
  color: var(--c-indigo);
  font-size: 1.05rem;
  margin: 0 0 .35rem;
  line-height: 1.3;
}
.benefit-card p {
  font-family: var(--font-body);
  color: var(--c-body);
  font-size: .92rem;
  margin: 0;
  line-height: 1.55;
}

/* Team-Stimmen / Zitate */
.team-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.team-quote {
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 12px 30px rgba(7,0,221,.06);
  position: relative;
}
.team-quote-text {
  font-family: var(--font-body);
  color: var(--c-heading);
  font-style: italic;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0 0 1rem;
}
.team-quote-author {
  display: flex; align-items: center; gap: .75rem;
  border-top: 1px solid rgba(70,50,218,.1);
  padding-top: 1rem;
}
.team-quote-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--c-cyan-pale);
}
.team-quote-author strong {
  font-family: var(--font-display);
  color: var(--c-indigo);
  font-size: .95rem;
  display: block;
}
.team-quote-author span {
  font-family: var(--font-ui);
  color: var(--c-body);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Praxis-Galerie */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.gallery-grid .gallery-large { grid-row: span 2; }
.gallery-grid .gallery-large img { height: 100%; }

/* FAQ Accordion */
.faq-list { max-width: 760px; margin: 2.5rem auto 0; }
.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: .75rem;
  box-shadow: 0 4px 14px rgba(7,0,221,.05);
  border: 1px solid rgba(70,50,218,.08);
  overflow: hidden;
}
.faq-question {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--c-heading);
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--c-indigo);
  transition: transform .25s;
  line-height: 1;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-family: var(--font-body);
  color: var(--c-body);
  line-height: 1.65;
  font-size: .98rem;
}

/* Bewerbungsformular */
.apply-section {
  background: var(--gradient-hero);
  color: #fff;
  padding: 5rem 0;
}
.apply-section .eyebrow { color: rgba(255,255,255,.85); }
.apply-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: #fff;
  margin: .5rem 0 .5rem;
}
.apply-section .lead {
  color: rgba(255,255,255,.9);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 0 2.5rem;
}
.apply-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0,0,0,.18);
  color: var(--c-heading);
}
.apply-form { display: grid; gap: 1.1rem; }
.apply-form label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-heading);
  margin-bottom: .4rem;
}
.apply-form input[type="text"],
.apply-form input[type="tel"],
.apply-form input[type="email"],
.apply-form textarea,
.apply-form select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid #e4e6f1;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-heading);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.apply-form input:focus,
.apply-form textarea:focus,
.apply-form select:focus {
  outline: none;
  border-color: var(--c-indigo);
  box-shadow: 0 0 0 4px rgba(70,50,218,.12);
}
.apply-form textarea { min-height: 110px; resize: vertical; }
.apply-radio-group {
  display: flex; gap: .75rem; flex-wrap: wrap;
}
.apply-radio {
  flex: 1; min-width: 130px;
  position: relative;
}
.apply-radio input { position: absolute; opacity: 0; pointer-events: none; }
.apply-radio span {
  display: block;
  text-align: center;
  padding: .85rem 1rem;
  border: 1.5px solid #e4e6f1;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--c-heading);
  transition: all .2s;
}
.apply-radio input:checked + span {
  border-color: var(--c-indigo);
  background: var(--c-cyan-light);
  color: var(--c-indigo);
}
.apply-submit { margin-top: .5rem; display: flex; flex-direction: column; align-items: stretch; gap: .75rem; }
.apply-submit .btn { width: 100%; justify-content: center; padding: 1.1rem 1.5rem; font-size: 1.05rem; }
.apply-note {
  text-align: center;
  font-family: var(--font-ui);
  font-size: .85rem;
  color: var(--c-body);
}
.form-status.is-ok { color: #0a8a4a; font-weight: 600; }
.form-status.is-error { color: #c2185b; font-weight: 600; }

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  padding: .75rem;
  box-shadow: 0 -8px 24px rgba(7,0,221,.18);
  z-index: 80;
  gap: .5rem;
  border-top: 1px solid rgba(70,50,218,.1);
}
.sticky-mobile-cta .btn {
  flex: 1;
  justify-content: center;
  padding: .85rem 1rem;
  font-size: .92rem;
}
.sticky-mobile-cta .btn-outline {
  background: #fff;
  color: var(--c-indigo);
  border: 1.5px solid var(--c-indigo);
}

/* Career-Footer (reduziert) */
.career-footer {
  background: var(--c-indigo-dark);
  color: rgba(255,255,255,.85);
  padding: 2.5rem 0 2rem;
  text-align: center;
}
.career-footer a { color: #fff; text-decoration: none; margin: 0 .65rem; font-family: var(--font-ui); font-size: .9rem; }
.career-footer a:hover { color: var(--c-cyan); text-decoration: underline; }
.career-footer .footer-meta { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 1rem; }

/* Hub: Lead-Section */
.career-intro { padding: 6rem 0 4rem; text-align: center; }
.career-intro .container { max-width: 760px; }
.career-intro h2 { color: var(--c-indigo); font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem); margin: .5rem 0 1rem; line-height: 1.25; }
.career-intro p { color: var(--c-body); font-size: 1.05rem; line-height: 1.65; }

/* Responsive */
@media (max-width: 900px) {
  .career-hero { padding: 5.5rem 0 4rem; }
  .career-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .career-hero-image { aspect-ratio: 16/10; }
  .career-choice-grid { grid-template-columns: 1fr; }
  .career-choice-card { padding: 2rem 1.5rem; }
  .letter-card { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.5rem; }
  .letter-photo { width: 140px; height: 140px; margin: 0 auto; }
  .letter-content .eyebrow { display: block; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-grid .gallery-large { grid-row: span 2; }
  .apply-card { padding: 2rem 1.25rem; }
  .apply-radio-group { flex-direction: column; }
  .sticky-mobile-cta { display: flex; }
  body.has-sticky-cta { padding-bottom: 90px; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-grid .gallery-large { grid-row: span 1; }
  .career-header .brand img { height: 38px; }
  .career-header-tel { padding: .4rem .7rem; font-size: .82rem; }
}

/* Karriere-Hub: Stats, Standort, Wishes */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(70,50,218,.08);
  box-shadow: 0 10px 28px rgba(7,0,221,.06);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--c-indigo);
  line-height: 1;
  margin: 0 0 .65rem;
  display: block;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-heading);
  font-weight: 700;
}
.stat-label small {
  display: block;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: .85rem;
  color: var(--c-body);
  font-weight: 400;
  margin-top: .45rem;
}

.location-section { padding: 5rem 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.location-content h2 {
  font-family: var(--font-display);
  color: var(--c-indigo);
  margin: .5rem 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.25;
}
.location-content p {
  color: var(--c-body);
  line-height: 1.7;
  font-size: 1.02rem;
}
.location-highlights {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  gap: .8rem;
}
.location-highlights li {
  display: flex; align-items: center; gap: .75rem;
  color: var(--c-heading);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .98rem;
}
.location-highlights li::before {
  content: ""; flex-shrink: 0;
  width: 10px; height: 10px;
  background: var(--c-cyan);
  border-radius: 50%;
}
.location-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: 0 18px 40px rgba(7,0,221,.12);
}
.location-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.wishes-section { padding: 5rem 0; background: var(--c-cyan-pale); }
.wishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.wish-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: left;
  border-top: 4px solid var(--c-indigo);
  box-shadow: 0 8px 24px rgba(7,0,221,.06);
}
.wish-card h3 {
  font-family: var(--font-display);
  color: var(--c-indigo);
  font-size: 1.1rem;
  margin: 0 0 .5rem;
}
.wish-card p {
  font-family: var(--font-body);
  color: var(--c-body);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; gap: 2rem; }
  .location-image { aspect-ratio: 16/10; }
}

/* Auswahlkarten: Personen-Block oben */
.career-choice-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(70,50,218,.1);
}
.career-choice-author img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  background: var(--c-cyan-pale);
}
.career-choice-author-info { display: flex; flex-direction: column; gap: .25rem; }
.career-choice-author-quote {
  font-family: var(--font-body);
  color: var(--c-heading);
  font-style: italic;
  font-size: .92rem;
  line-height: 1.45;
  display: block;
}
.career-choice-author-name {
  font-family: var(--font-ui);
  color: var(--c-indigo);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}

/* Karriere-Hub: erweiterte Page-Banner-Variante */
.page-banner-career h1 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.page-banner-lead {
  font-family: var(--font-body);
  color: rgba(255,255,255,.92);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 720px;
  margin: 1.25rem auto 0;
  text-align: center;
}
@media (max-width: 720px) {
  .page-banner-lead { font-size: 1rem; }
}
