/* ============================================================
   PRAXIS HESS. — Haupt-Stylesheet (Redesign 2025)
   Farben: Orange #E8780A | Grau #6B7280 | Weiß #FFFFFF | Text #1C1C1E
   Typografie: Figtree (Überschriften) · Noto Sans (Fließtext)
   ============================================================ */

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

/* ── Reset & Basis ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Markenfarben */
  --orange:        #E8780A;
  --orange-light:  #F59332;
  --orange-dark:   #C4620A;
  --orange-pale:   #FEF3E7;
  --orange-surface:#FFF8F2;

  /* Grautöne */
  --gray:          #6B7280;
  --gray-light:    #F4F4F4;
  --gray-mid:      #D1D5DB;
  --gray-warm:     #F9F8F7;

  /* Text & Neutrals */
  --dark:          #1C1C1E;
  --dark-soft:     #2C2C2E;
  --white:         #FFFFFF;
  --text:          #1C1C1E;
  --text-muted:    #6B7280;

  /* Radii */
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --radius-xl:     40px;

  /* Shadows */
  --shadow-sm:     0 1px 4px rgba(0,0,0,.06);
  --shadow-md:     0 4px 24px rgba(0,0,0,.09);
  --shadow-lg:     0 12px 48px rgba(0,0,0,.12);
  --shadow-orange: 0 6px 28px rgba(232,120,10,.30);

  /* Nav */
  --nav-h:         76px;

  /* Transitions */
  --transition:    .28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typografie ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Figtree', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-xl { font-size: clamp(2.8rem, 6vw, 5.4rem); font-weight: 800; line-height: 1.04; letter-spacing: -0.03em; }
.display-lg { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 800; line-height: 1.07; letter-spacing: -0.025em; }
.display-md { font-size: clamp(1.6rem, 3vw, 2.4rem);  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
.headline    { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 600; line-height: 1.3; }
.body-lg     { font-size: 1.125rem; line-height: 1.78; font-family: 'Noto Sans', sans-serif; }
.body        { font-size: 1rem;     line-height: 1.7;  font-family: 'Noto Sans', sans-serif; }
.body-sm     { font-size: 0.875rem; line-height: 1.65; font-family: 'Noto Sans', sans-serif; }
.label       { font-size: 0.72rem;  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
               font-family: 'Figtree', sans-serif; }

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

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.9375rem; font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 32px rgba(232,120,10,.42);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--white); color: var(--dark);
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(0,0,0,.07);
}
.btn-secondary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--orange); color: var(--orange);
  background: transparent;
}
.btn-outline:hover {
  background: var(--orange); color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-dark {
  background: var(--dark); color: var(--white);
}
.btn-dark:hover { background: var(--dark-soft); transform: translateY(-1px); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8125rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}

.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 1.375rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--dark);
}
.nav__logo span { color: var(--orange); }
.nav__logo img { height: 40px; width: auto; }

.nav__links {
  display: flex; align-items: center; gap: 2px;
}
.nav__links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: all var(--transition);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--dark);
  background: var(--gray-light);
}

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__tel {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem; font-weight: 600; color: var(--dark);
  padding: 8px 16px; border-radius: 100px;
  border: 1.5px solid var(--gray-mid);
  transition: all var(--transition);
}
.nav__tel:hover { border-color: var(--orange); color: var(--orange); }
.nav__tel svg { width: 16px; height: 16px; color: var(--orange); }

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; padding: 4px;
}
.nav__hamburger span {
  display: block; height: 2px; background: var(--dark);
  border-radius: 2px; transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 999;
  background: var(--white);
  display: flex; flex-direction: column; padding: 32px 24px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile a {
  padding: 14px 16px; border-radius: var(--radius-md);
  font-family: 'Figtree', sans-serif;
  font-size: 1.1rem; font-weight: 500;
  border-bottom: 1px solid var(--gray-light);
  transition: all var(--transition);
}
.nav__mobile a:hover { background: var(--orange-pale); color: var(--orange); }
.nav__mobile .btn { margin-top: 16px; justify-content: center; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 80px;
  align-items: center;
  width: 100%;
  padding: calc(var(--nav-h) + 60px) 0 80px;
}

/* Hintergrund-Dekoelemente */
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,120,10,.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,120,10,.04) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  position: relative; z-index: 1;
  padding: 0;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-pale); color: var(--orange);
  padding: 7px 16px; border-radius: 100px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(232,120,10,.18);
}
.hero__badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  animation: badge-pulse 2.5s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.5); }
}

.hero__title { margin-bottom: 24px; }
.hero__title em {
  font-style: italic;
  color: var(--orange);
}

.hero__text {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 600px;
}

.hero__actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex; gap: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-mid);
}
.hero__stat-num {
  font-family: 'Figtree', sans-serif;
  font-size: 2.1rem; font-weight: 800; color: var(--dark);
  letter-spacing: -0.03em; line-height: 1;
}
.hero__stat-num span { color: var(--orange); }
.hero__stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ── Hero Visual ─────────────────────────────────────────────── */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hv-wrap {
  position: relative;
  width: 400px;
  height: 460px;
}

.hv-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  pointer-events: none;
}
.hv-ring--1 {
  width: 310px; height: 310px;
  margin: -155px 0 0 -155px;
  border: 1.5px dashed rgba(232,120,10,.20);
  animation: hv-spin 28s linear infinite;
}
.hv-ring--2 {
  width: 420px; height: 420px;
  margin: -210px 0 0 -210px;
  border: 1px dotted rgba(232,120,10,.10);
  animation: hv-spin 42s linear infinite reverse;
}

@keyframes hv-spin {
  to { transform: rotate(360deg); }
}

.hv-dots-bg {
  position: absolute;
  top: 50%; left: 50%;
  width: 240px; height: 240px;
  margin: -120px 0 0 -120px;
  background-image: radial-gradient(rgba(232,120,10,.16) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .6;
}

.hv-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--orange);
  border-radius: 28px;
  padding: 32px 36px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 24px 64px rgba(232,120,10,.40), inset 0 0 0 1px rgba(255,255,255,.12);
  z-index: 2;
  min-width: 165px;
}
.hv-center-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.hv-center-icon svg { width: 30px; height: 30px; }
.hv-center-name {
  font-family: 'Figtree', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  letter-spacing: -0.02em;
}
.hv-center-sub {
  font-size: 0.72rem; opacity: .72; margin-top: 5px;
}

.hv-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.10), 0 0 0 1px rgba(0,0,0,.04);
  z-index: 3;
  white-space: nowrap;
}
.hv-card-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.hv-card-icon svg { width: 17px; height: 17px; }
.hv-card-val {
  font-family: 'Figtree', sans-serif;
  font-size: 0.875rem; font-weight: 700; color: var(--dark);
  line-height: 1.2;
}
.hv-card-lbl { font-size: 0.7rem; color: var(--text-muted); margin-top: 1px; }

.hv-card--a { top: 4%;  left:  -4%; }
.hv-card--b { top: 10%; right: -6%; }
.hv-card--c { bottom: 22%; left: -6%; }
.hv-card--d { bottom: 4%; right: -2%; }

@keyframes hv-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hv-anim-1 { animation: hv-float 4.5s ease-in-out infinite; }
.hv-anim-2 { animation: hv-float 5.2s ease-in-out infinite .8s; }
.hv-anim-3 { animation: hv-float 4.0s ease-in-out infinite 1.5s; }
.hv-anim-4 { animation: hv-float 5.8s ease-in-out infinite .3s; }

/* ── Prozess-Schritte ────────────────────────────────────────── */
.prozess-steps {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  align-items: center;
  margin-top: 56px;
}

.prozess-step {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.prozess-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,120,10,.22);
}

.prozess-num {
  width: 46px; height: 46px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Figtree', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(232,120,10,.32);
}

.prozess-body h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--dark); margin-bottom: 10px;
}
.prozess-body p {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.75;
}

.prozess-connector {
  display: flex; align-items: center; justify-content: center;
  height: 2px;
  background: linear-gradient(90deg, rgba(232,120,10,.25), rgba(232,120,10,.55), rgba(232,120,10,.25));
  border-radius: 2px;
  margin: 0 4px;
  position: relative;
  top: -20px;
}

/* ── Team Placeholder Cards ──────────────────────────────────── */
.team-ph {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-ph span {
  font-family: 'Figtree', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: rgba(255,255,255,.55);
  position: relative; z-index: 1;
  letter-spacing: -0.03em;
}
.team-ph-icon {
  position: relative; z-index: 1;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
}
.team-ph-icon svg { width: 48px; height: 48px; }
.team-ph::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 140%; height: 65%;
  background: rgba(255,255,255,.06);
  border-radius: 50% 50% 0 0;
}
.team-ph--orange { background: linear-gradient(160deg, var(--orange) 0%, var(--orange-dark) 100%); }
.team-ph--dark   { background: linear-gradient(160deg, #3A3A3C 0%, #1C1C1E 100%); }
.team-ph--mid    { background: linear-gradient(160deg, #4A4A4C 0%, #2A2A2C 100%); }
.team-ph--soft   { background: linear-gradient(160deg, #5C4A38 0%, #3A2E24 100%); }
.team-ph--c1     { background: linear-gradient(160deg, #3A3A3C 0%, #1C1C1E 100%); }
.team-ph--c2     { background: linear-gradient(160deg, #4A4A4C 0%, #2A2A2C 100%); }
.team-ph--c3     { background: linear-gradient(160deg, #5C4A38 0%, #3A2E24 100%); }
.team-ph--open   { background: var(--gray-light); border: 2px dashed rgba(232,120,10,.3); color: var(--orange); }
.team-ph--open svg { width: 44px; height: 44px; }

/* ── Section Intro ──────────────────────────────────────────── */
.section-intro {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-intro .label { color: var(--orange); margin-bottom: 12px; display: block; }
.section-intro p { color: var(--text-muted); margin-top: 16px; font-size: 1.05rem; }

/* ── Hintergründe ───────────────────────────────────────────── */
.bg-light  { background: var(--gray-light); }
.bg-dark   { background: var(--dark); }
.bg-orange { background: var(--orange); }

/* ── Feature Cards ──────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,.05);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.card__icon {
  width: 52px; height: 52px;
  background: var(--orange-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  border: 1px solid rgba(232,120,10,.12);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.card p  { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; }

/* ── Leistungen Item ────────────────────────────────────────── */
.leistung-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px; border-radius: var(--radius-md);
  background: var(--gray-light);
  transition: all var(--transition);
}
.leistung-item:hover {
  background: var(--orange-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.leistung-item__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--orange); color: var(--white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.leistung-item__icon svg { width: 22px; height: 22px; }
.leistung-item h4 { font-size: 0.975rem; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.leistung-item p  { font-size: 0.85rem; color: var(--text-muted); }

/* ── About Strip ────────────────────────────────────────────── */
.about-strip {
  background: var(--dark);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: '"';
  position: absolute; top: -60px; left: 40px;
  font-family: 'Figtree', sans-serif;
  font-size: 22rem; font-weight: 900; opacity: .04;
  line-height: 1; color: var(--orange);
  pointer-events: none;
}
.about-strip::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,120,10,.06) 0%, transparent 70%);
  pointer-events: none;
}
.about-strip .text-muted { color: rgba(255,255,255,.55); }
.about-strip .label { color: var(--orange); }

/* ── Team Cards ─────────────────────────────────────────────── */
.team-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--gray-light);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card__img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  background: var(--gray-mid);
}
.team-card__img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, #E0E0E0, #C8C8C8);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
}
.team-card__body { padding: 20px 24px; }
.team-card__name { font-size: 1rem; font-weight: 700; color: var(--dark); }
.team-card__role { font-size: 0.8rem; color: var(--orange); font-weight: 600; margin-top: 3px; }
.team-card--open { border: 2px dashed rgba(232,120,10,.25); background: transparent; }
.team-card--open:hover { border-color: var(--orange); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dept-hidden { display: none; }

/* ── Dept Filter ─────────────────────────────────────────────── */
.dept-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.dept-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-mid);
  background: transparent;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.dept-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-pale);
}
.dept-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.team-card__badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 5px;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,.05);
  transition: all var(--transition);
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testi-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text  { font-size: 0.9375rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Figtree', sans-serif;
  font-weight: 700; font-size: 0.95rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.875rem; color: var(--dark); }
.testi-date { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--orange);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-orange);
}
.cta-banner::after {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2  { color: var(--white); }
.cta-banner p   { color: rgba(255,255,255,.85); margin-top: 8px; font-size: 1.05rem; }
.cta-banner .btn-secondary { flex-shrink: 0; }

/* ── Öffnungszeiten ─────────────────────────────────────────── */
.oeffnung-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.oeffnung-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; background: var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
}
.oeffnung-row .day  { font-weight: 700; color: var(--dark); }
.oeffnung-row .time { color: var(--text-muted); }
.oeffnung-row.highlight { background: var(--orange-pale); }
.oeffnung-row.highlight .time { color: var(--orange); font-weight: 700; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 80px 0 36px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo {
  font-family: 'Figtree', sans-serif;
  font-size: 1.4rem; font-weight: 800; color: var(--white);
  letter-spacing: -0.03em;
}
.footer__logo span { color: var(--orange); }
.footer__desc { font-size: 0.9rem; line-height: 1.75; max-width: 280px; }

.footer__col h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a  { font-size: 0.9rem; transition: color var(--transition); }
.footer__col a:hover { color: var(--orange); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8125rem;
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom a { transition: color var(--transition); }
.footer__bottom a:hover { color: var(--orange); }

/* ── Scroll-Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .10s; }
.reveal-delay-2 { transition-delay: .20s; }
.reveal-delay-3 { transition-delay: .30s; }
.reveal-delay-4 { transition-delay: .40s; }

/* ── Cookie Banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px; z-index: 9999;
  background: var(--dark); color: rgba(255,255,255,.85);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  max-width: 900px; margin: 0 auto;
  transform: translateY(140%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { flex: 1; font-size: 0.9rem; line-height: 1.6; min-width: 200px; }
.cookie-banner p a { color: var(--orange); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Page Hero (Unterseiten) ────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 72px;
  background: var(--gray-light);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gray-mid);
}
.page-hero .label { color: var(--orange); display: block; margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; margin-top: 16px; max-width: 600px; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span::before { content: '/'; margin-right: 8px; }

/* ── Formulare ──────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

.form__group { display: flex; flex-direction: column; gap: 6px; }

.form__label {
  font-family: 'Figtree', sans-serif;
  font-size: 0.8125rem; font-weight: 600; color: var(--dark);
  letter-spacing: 0.02em;
}
.form__label .req { color: var(--orange); margin-left: 2px; }

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--dark); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none; -webkit-appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,120,10,.12);
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--gray); }

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
}

.form__textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form__checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; font-size: 0.875rem; color: var(--text-muted);
}
.form__checkbox input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; accent-color: var(--orange); cursor: pointer; }
.form__checkbox a { color: var(--orange); }

.form__feedback {
  display: none; padding: 14px 18px;
  border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500;
}
.form__feedback--success { background: #D1FAE5; color: #065F46; border: 1px solid #6EE7B7; }
.form__feedback--error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }

.spinner {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: white; border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: middle; margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Tabs ───────────────────────────────────────────────────── */
.tabs {
  display: flex; gap: 4px;
  background: var(--gray-light); padding: 4px;
  border-radius: var(--radius-md);
}
.tab-btn {
  flex: 1; padding: 12px 16px; border-radius: calc(var(--radius-md) - 2px);
  font-family: 'Figtree', sans-serif;
  font-size: 0.875rem; font-weight: 600; color: var(--text-muted);
  transition: all var(--transition); text-align: center;
}
.tab-btn.active { background: var(--white); color: var(--dark); box-shadow: var(--shadow-sm); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── FAQ Akkordeon ──────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--gray-mid); }
.faq-item:first-child { border-top: 1px solid var(--gray-mid); }

.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; gap: 20px;
  font-family: 'Figtree', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--dark);
  text-align: left; cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }

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

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer p {
  padding-bottom: 20px; color: var(--text-muted); line-height: 1.75; font-size: 0.9375rem;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── Blog Cards ─────────────────────────────────────────────── */
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,.04);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__img {
  width: 100%; height: 200px; object-fit: cover;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  display: flex; align-items: center; justify-content: center;
}
.blog-card__body { padding: 24px; }
.blog-card__cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); }
.blog-card__title { font-size: 1.05rem; font-weight: 700; margin: 8px 0; line-height: 1.35; color: var(--dark); }
.blog-card__text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.blog-card__meta { display: flex; align-items: center; gap: 12px; margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); }

/* ── Job Cards ──────────────────────────────────────────────── */
.job-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 32px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,.04);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: all var(--transition);
}
.job-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.job-card__left { flex: 1; }
.job-card__title { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.job-card__tags { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.job-tag {
  font-size: 0.75rem; font-weight: 600; padding: 4px 10px;
  border-radius: 100px; background: var(--gray-light); color: var(--text-muted);
}
.job-tag.highlight { background: var(--orange-pale); color: var(--orange); }

/* ── Leistungs-Detail ───────────────────────────────────────── */
.leistung-detail {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
}
.leistung-detail h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.leistung-detail ul { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.leistung-detail li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.5;
}
.leistung-detail li::before {
  content: ''; width: 6px; height: 6px; background: var(--orange);
  border-radius: 50%; flex-shrink: 0; margin-top: 7px;
}

/* ── Team Filter ────────────────────────────────────────────── */
.team-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 18px; border-radius: 100px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  border: 1.5px solid var(--gray-mid); color: var(--text-muted);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange); color: var(--white); border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}

/* ── Divider ────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--gray-mid); margin: 0; }

/* ── Utilities ──────────────────────────────────────────────── */
.mt-4  { margin-top:  4px; }
.mt-8  { margin-top:  8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.rounded-xl { border-radius: var(--radius-xl); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; padding: calc(var(--nav-h) + 48px) 0 60px; }
  .hero__visual { display: none; }
  .hero__content { max-width: 680px; }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 48px 36px; }
  .prozess-steps { grid-template-columns: 1fr; gap: 16px; }
  .prozess-connector { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .nav__links, .nav__actions .nav__tel { display: none; }
  .nav__hamburger { display: flex; }
  .hero__stats { flex-wrap: wrap; gap: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 28px; border-radius: var(--radius-lg); }
  .oeffnung-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 16px 28px; }
}

/* ── Preisliste ─────────────────────────────────────────────── */
.price-tabs { display:flex; gap:8px; margin-bottom:36px; flex-wrap:wrap; }
.price-tab { padding:10px 24px; border-radius:100px; border:1.5px solid var(--gray-mid); background:transparent; font-size:.9rem; font-weight:600; color:var(--text-muted); cursor:pointer; transition:all var(--transition); font-family:inherit; }
.price-tab:hover { border-color:var(--orange); color:var(--orange); }
.price-tab.active { background:var(--orange); border-color:var(--orange); color:white; }
.price-content { display:none; }
.price-content.active { display:block; }
.price-cats { display:grid; grid-template-columns:1fr 1fr; gap:0 56px; align-items:start; }
.price-category { margin-bottom:36px; }
.price-category__head { display:flex; align-items:center; gap:10px; margin-bottom:16px; padding-bottom:12px; border-bottom:2px solid var(--gray-light); }
.price-category__tag { font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:white; background:var(--orange); padding:3px 10px; border-radius:100px; flex-shrink:0; }
.price-category__head h3 { font-size:1rem; font-weight:700; margin:0; }
.price-row { display:flex; justify-content:space-between; align-items:baseline; gap:12px; padding:9px 0; border-bottom:1px solid var(--gray-light); }
.price-row:last-child { border-bottom:none; }
.price-row__info { flex:1; min-width:0; }
.price-row__name { font-size:.875rem; font-weight:600; color:var(--dark); line-height:1.4; }
.price-row__sub { font-size:.775rem; color:var(--text-muted); margin-top:1px; line-height:1.4; }
.price-row__code { font-size:.7rem; font-weight:700; color:var(--orange); background:var(--orange-pale); padding:2px 7px; border-radius:100px; flex-shrink:0; white-space:nowrap; align-self:center; }
.price-row__amount { font-size:.95rem; font-weight:700; color:var(--dark); flex-shrink:0; white-space:nowrap; }
.price-row__amount.hl { color:var(--orange); }
.price-notice { background:var(--orange-pale); border-left:3px solid var(--orange); border-radius:0 var(--radius-sm) var(--radius-sm) 0; padding:14px 18px; font-size:.825rem; line-height:1.65; color:var(--dark); margin-top:8px; }
.price-notice strong { color:var(--orange); }
.price-wellness-grid { display:grid; grid-template-columns:1fr 1fr; gap:0 24px; }
.price-loc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:4px 16px; margin-top:8px; }
.price-loc-row { display:flex; justify-content:space-between; font-size:.8rem; padding:4px 0; border-bottom:1px solid var(--gray-light); }
@media(max-width:900px) { .price-cats { grid-template-columns:1fr; } }
@media(max-width:600px) { .price-wellness-grid { grid-template-columns:1fr; } .price-loc-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:700px) { .kassen-inner { grid-template-columns:1fr !important; padding:28px 24px !important; gap:24px !important; } }

/* ── Card Price Strip ───────────────────────────────────────── */
.card { display:flex; flex-direction:column; }
.card ul { margin-top:12px; display:flex; flex-direction:column; gap:6px; }
.card li { font-size:.875rem; color:var(--text-muted); line-height:1.5; padding-left:14px; position:relative; }
.card li::before { content:''; position:absolute; left:0; top:7px; width:5px; height:5px; background:var(--orange); border-radius:50%; }
.card-price { margin-top:auto; padding-top:14px; border-top:1px solid var(--gray-light); font-size:.95rem; font-weight:700; color:var(--orange); line-height:1.3; }
.card-price small { display:block; font-size:.75rem; font-weight:500; color:var(--text-muted); margin-top:2px; }
.card-price.muted { color:var(--text-muted); font-size:.85rem; font-weight:600; }
.leistung-detail { display:flex; flex-direction:column; }

/* ── Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hv-anim-1, .hv-anim-2, .hv-anim-3, .hv-anim-4 { animation: none; }
  .hv-ring--1, .hv-ring--2 { animation: none; }
}
