/* ════════════════════════════════════════════════════════════════════════
   MARCO STORZ · COACHING + CONSULTING
   Premium Swiss consulting · global styles · v4 (logo-aligned + Jost)
   Palette derived from the logo: steel blue #4A7A95 + warm gray #8E9B9C
   ════════════════════════════════════════════════════════════════════════ */

:root {
  /* Brand — derived directly from the logo */
  --navy:        #1E3140;   /* deep, slightly desaturated extension of the logo blue */
  --navy-2:      #2A4357;
  --blue:        #355C75;
  --petrol:      #3D6B85;
  --steel:       #4A7A95;   /* LOGO BLUE — exact */
  --steel-light: #6E94A8;
  --accent:      #4A7A95;
  --warm-gray:   #8E9B9C;   /* LOGO GRAY — exact */
  --warm-gray-2: #A6B0B1;

  /* Neutrals — slightly warmer to flatter the logo gray */
  --white:       #FFFFFF;
  --off-white:   #F6F6F4;
  --gray-100:    #EFEEEB;
  --gray-200:    #E2E1DD;
  --gray-300:    #C5C4C0;
  --gray-400:    #8E9B9C;
  --gray-500:    #6B7378;
  --gray-600:    #4A5258;
  --gray-700:    #2D3338;
  --gray-800:    #1F2024;

  --line-dark:   rgba(255,255,255,0.09);
  --line-light:  rgba(30,49,64,0.10);

  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--white); color: var(--gray-800);
  overflow-x: hidden; line-height: 1.5;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 2px; }
::selection { background: var(--steel); color: var(--white); }

/* ─────────────────── NAVIGATION (light — lets the colored logo shine) ─────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%; height: 84px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-light);
  transition: height .3s ease, box-shadow .3s ease;
}
.nav.scrolled { height: 68px; box-shadow: 0 8px 32px rgba(30,49,64,.08); }

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; transition: height .3s ease; }
.nav.scrolled .nav-logo img { height: 44px; }

.nav-links {
  display: flex; align-items: center; gap: 2.2rem; list-style: none;
}
.nav-links a {
  color: var(--gray-600);
  font-size: .85rem; font-weight: 400; letter-spacing: .04em;
  position: relative; padding-bottom: 4px;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--steel);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--steel); color: var(--white) !important;
  padding: .65rem 1.25rem !important;
  font-size: .78rem !important; font-weight: 500 !important;
  letter-spacing: .06em !important;
  border-radius: 2px; white-space: nowrap;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--navy) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: transparent; border: 0;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--navy);
  transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 84px 0 0;
  background: var(--white); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1.6rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--navy);
  font-size: 1.3rem; font-weight: 400; letter-spacing: .04em;
}
.mobile-menu .nav-cta { padding: .85rem 1.6rem !important; font-size: .85rem !important; }

/* ─────────────────── PAGE HERO (sub-pages) ─────────────────── */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 12rem 8% 5rem;
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at top right, rgba(110,148,168,0.18), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(61,107,133,0.25), transparent 50%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 920px; }
.page-hero .crumbs {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--steel-light); margin-bottom: 1.4rem;
}
.page-hero .crumbs a { color: var(--steel-light); opacity: .7; }
.page-hero .crumbs a:hover { opacity: 1; }
.page-hero .crumbs .sep { margin: 0 .6rem; opacity: .4; }
.page-hero h1 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--steel-light);
  font-weight: 400;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7; max-width: 660px;
  font-weight: 300;
}

/* ─────────────────── HERO (HOMEPAGE — text over image) ─────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 660px;
  overflow: hidden; background: var(--navy);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: 50% 18%;
  background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.4s ease;
  image-rendering: -webkit-optimize-contrast;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background:
    /* glossy diagonal sheen — adds the polished highlight */
    linear-gradient(118deg,
      rgba(255,255,255,0.10) 0%,
      rgba(255,255,255,0.04) 22%,
      rgba(255,255,255,0) 46%),
    /* left-weighted veil keeps the headline crisp, lets the photo breathe on the right */
    linear-gradient(100deg,
      rgba(24,40,53,0.94) 0%,
      rgba(26,43,57,0.80) 34%,
      rgba(30,49,64,0.42) 60%,
      rgba(30,49,64,0.16) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%; display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 8% 7%; max-width: 820px;
}
.hero-label {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--steel-light); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; transform: translateY(16px);
  animation: heroIn .8s .3s ease forwards;
}
.hero-label::before {
  content: ''; display: inline-block;
  width: 32px; height: 1px; background: var(--steel-light);
}
.hero h1 {
  font-family: var(--sans);
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--white); margin-bottom: 1.8rem;
  opacity: 0; transform: translateY(20px);
  animation: heroIn .8s .5s ease forwards;
}
.hero h1 em { font-style: normal; color: var(--steel-light); font-weight: 400; }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 560px; margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
  animation: heroIn .8s .7s ease forwards;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: heroIn .8s .9s ease forwards;
}
.hero-dots {
  position: absolute; bottom: 3rem; right: 5%;
  display: flex; gap: .6rem; z-index: 3;
}
.hero-dot {
  width: 24px; height: 1px; background: rgba(255,255,255,0.3);
  cursor: pointer; transition: background .3s;
  border: 0; padding: 0;
}
.hero-dot.active { background: var(--white); }
.hero-scroll {
  position: absolute; bottom: 3rem; left: 8%; z-index: 3;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: .7rem;
  opacity: 0; animation: heroIn .8s 1.2s ease forwards;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 30px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollHint 2.4s ease-in-out infinite;
}

/* ─────────────────── BUTTONS ─────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .95rem 1.85rem;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 2px; border: none; cursor: pointer;
  transition: all .25s ease;
}
.btn svg { width: 14px; height: 14px; transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--steel); color: var(--white); }
.btn-primary:hover { background: var(--steel-light); transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(74,122,149,0.5); }

.btn-outline {
  background: transparent; color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); color: var(--white); background: rgba(255,255,255,0.04); }

.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(30,49,64,0.4); }

.btn-outline-dark {
  background: transparent; color: var(--navy);
  border: 1px solid rgba(30,49,64,0.3);
}
.btn-outline-dark:hover { border-color: var(--navy); background: rgba(30,49,64,0.04); }

/* ─────────────────── SECTIONS / TYPOGRAPHY ─────────────────── */
section { scroll-margin-top: 84px; }

.section { padding: 7rem 8%; }
.section-sm { padding: 4.5rem 8%; }

.eyebrow {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .8rem;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--steel);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--steel-light); }
.eyebrow.light::before { background: var(--steel-light); }

.section-title {
  font-family: var(--sans);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 300; line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--navy); margin-bottom: 1.2rem;
}
.section-title em { font-style: normal; color: var(--steel); font-weight: 400; }
.section-title.on-dark { color: var(--white); }
.section-title.on-dark em { color: var(--steel-light); }

.section-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: var(--gray-600); max-width: 620px;
}
.section-sub.on-dark { color: rgba(255,255,255,0.72); }

.divider-rule {
  width: 48px; height: 2px; background: var(--steel);
  margin: 1.4rem 0;
}
.divider-rule.center { margin: 1.4rem auto; }
.divider-rule.light { background: var(--steel-light); }

.section-head { margin-bottom: 4rem; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }
.section-head.center .eyebrow { justify-content: center; }
.challenges-head { margin-top: 3.5rem; margin-bottom: 3rem; }

/* ─────────────────── STATS BAR ─────────────────── */
.bg-offwhite { background: var(--off-white); }
.bg-navy { background: var(--navy); }

.stats-bar {
  background: var(--navy-2);
  border-top: 1px solid rgba(110,148,168,0.45);
  box-shadow: 0 18px 40px rgba(15,25,33,0.35);
  position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  padding-inline: max(0px, calc((100% - 1180px) / 2));
}
.stat {
  padding: 1.9rem 2rem;
  border-right: 1px solid var(--line-dark);
  display: flex; align-items: center; gap: 1.1rem;
}
.stat:last-child { border-right: none; }
.stat-mark {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  border: 1px solid rgba(110,148,168,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel-light);
  flex-shrink: 0;
}
.stat-mark svg { width: 14px; height: 14px; }
.stat-num {
  font-size: 1.6rem; font-weight: 400; color: var(--white); line-height: 1;
  letter-spacing: -0.005em;
}
.stat-label {
  font-size: .72rem; color: var(--gray-400);
  margin-top: .35rem; line-height: 1.4; font-weight: 300;
}

/* ─────────────────── HERAUSFORDERUNGEN / LEISTUNGEN GRID ─────────────────── */
.challenges-grid, .leistungen-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--gray-200);
  margin-top: 3rem;
  border: 1px solid var(--gray-200);
}
.challenge-card {
  background: var(--white); padding: 2.4rem 2rem;
  transition: background .25s;
}
.challenge-card:hover { background: var(--off-white); }
.challenge-icon {
  width: 3.7rem; height: 3.7rem; border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel); margin-bottom: 1.2rem;
}
.challenge-icon svg { width: 22px; height: 22px; }
.challenge-title {
  font-size: .98rem; font-weight: 500;
  color: var(--navy); margin-bottom: .55rem;
  letter-spacing: -0.005em;
}
.challenge-desc {
  font-size: .85rem; color: var(--gray-600);
  line-height: 1.65; font-weight: 300;
}

/* ─────────────────── ERSTCHECK FEATURE ─────────────────── */
.erstcheck {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.erstcheck-img {
  background-size: cover; background-position: center 28%;
  min-height: 540px;
  position: relative;
}
.erstcheck-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(30,49,64,0.18), transparent 50%);
}
.erstcheck-content {
  padding: 5rem 5.5rem;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.erstcheck-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--gray-100);
  padding: .5rem 1rem; border-radius: 999px;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 1.4rem;
  align-self: flex-start;
}
.erstcheck-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--steel);
  box-shadow: 0 0 0 4px rgba(74,122,149,0.18);
}
.erstcheck-checks {
  display: grid; grid-template-columns: 1fr 1fr; gap: .7rem;
  margin: 1.8rem 0 2.4rem;
}
.check-item {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .85rem; color: var(--gray-600); line-height: 1.5;
  font-weight: 400;
}
.check-item svg {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  color: var(--steel);
}
.erstcheck-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.erstcheck.align-page .erstcheck-actions { margin-top: 2.4rem; }

/* ─────────────────── LEISTUNGEN ─────────────────── */
.leistung-card {
  background: var(--white); padding: 2.6rem 2.1rem;
  display: flex; flex-direction: column;
  transition: background .3s, color .3s;
}
.leistung-card:hover { background: var(--navy); }
.leistung-card:hover .leistung-title,
.leistung-card:hover .leistung-desc,
.leistung-card:hover .leistung-check { color: rgba(255,255,255,0.85); }
.leistung-card:hover .leistung-icon { background: rgba(110,148,168,0.15); color: var(--steel-light); }
.leistung-card:hover .leistung-num { color: var(--steel-light); }
.leistung-card:hover .leistung-link { color: var(--steel-light); }
.leistung-card:hover .leistung-link::after { background: var(--steel-light); }

.leistung-icon {
  width: 3.2rem; height: 3.2rem; border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel); margin-bottom: 1.6rem;
  transition: background .3s, color .3s;
}
.leistung-icon svg { width: 18px; height: 18px; }
.leistung-num {
  font-size: .95rem; font-weight: 500;
  color: var(--gray-400);
  margin-bottom: .4rem;
  letter-spacing: .04em;
  transition: color .3s;
}
.leistung-title {
  font-size: 1.05rem; font-weight: 500;
  color: var(--navy); margin-bottom: .9rem;
  transition: color .3s; letter-spacing: -0.005em;
}
.leistung-desc {
  font-size: .88rem; color: var(--gray-600);
  line-height: 1.7; flex: 1; font-weight: 300;
  transition: color .3s;
}
.leistung-checks {
  margin-top: 1.4rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.leistung-check {
  font-size: .8rem; color: var(--gray-600);
  display: flex; align-items: flex-start; gap: .5rem;
  font-weight: 300;
  transition: color .3s;
}
.leistung-check::before {
  content: ''; width: 14px; height: 1px;
  background: var(--steel); margin-top: 9px; flex-shrink: 0;
}
.leistung-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--steel); margin-top: 1.7rem;
  transition: color .3s;
  position: relative; padding-bottom: 3px;
  align-self: flex-start;
}
.leistung-link::after {
  content: ''; position: absolute; left: 0; right: 24px; bottom: 0;
  height: 1px; background: var(--steel);
  transform: scaleX(.4); transform-origin: left;
  transition: transform .3s;
}
.leistung-link:hover::after { transform: scaleX(1); }
.leistung-link svg { width: 12px; height: 12px; }

/* ─────────────────── PROZESS (dark) ─────────────────── */
.prozess { background: var(--navy); color: var(--white); }
.prozess-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem; margin-top: 4rem; position: relative;
}
.prozess-step { position: relative; }
.prozess-step:not(:last-child)::after {
  content: ''; position: absolute;
  top: 1.5rem; right: -1.5rem; width: 1.5rem; height: 1px;
  background: linear-gradient(to right, rgba(110,148,168,0.4), transparent);
}
.step-num {
  width: 3.2rem; height: 3.2rem;
  border: 1px solid rgba(110,148,168,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: .9rem; font-weight: 500;
  color: var(--steel-light);
  margin-bottom: 1.4rem;
  letter-spacing: .02em;
}
.step-title {
  font-size: 1rem; font-weight: 500;
  color: var(--white); margin-bottom: .6rem; letter-spacing: -0.005em;
}
.step-desc {
  font-size: .87rem; color: rgba(255,255,255,0.55);
  line-height: 1.7; font-weight: 300;
}

/* ─────────────────── FACHBEREICHE ─────────────────── */
.fach-intro {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem; margin-bottom: 4rem; align-items: center;
}
.fach-image {
  height: 460px;
  background-size: cover; background-position: center 28%;
  border-radius: 2px;
  position: relative;
}
.fach-image::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--gray-200);
  pointer-events: none;
}
.fach-list { display: flex; flex-direction: column; }
.fach-item {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 1.8rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
  transition: padding .25s ease;
}
.fach-item:first-child { border-top: 1px solid var(--gray-200); }
.fach-item:hover { padding-left: .8rem; }
.fach-icon-wrap {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel-light); flex-shrink: 0;
}
.fach-icon-wrap svg { width: 16px; height: 16px; }
.fach-name {
  font-size: .98rem; font-weight: 500;
  color: var(--navy); letter-spacing: -0.005em;
}
.fach-sub {
  font-size: .82rem; color: var(--gray-400);
  margin-top: .3rem; font-weight: 300;
}
.fach-arrow {
  color: var(--gray-400);
  transition: transform .25s, color .25s;
}
.fach-arrow svg { width: 18px; height: 18px; }
.fach-item:hover .fach-arrow { transform: translateX(6px); color: var(--steel); }

/* ─────────────────── DETAIL FACHBEREICHE PAGE ─────────────────── */
.fach-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch;
  border-bottom: 1px solid var(--gray-200);
}
.fach-detail.reverse > :first-child { order: 2; }
.fach-detail-img {
  min-height: 460px;
  background-size: cover; background-position: center 28%;
  background-color: var(--gray-100);
}
.fach-detail-text {
  padding: 5rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.fach-detail-text .fach-num {
  font-size: .85rem; color: var(--steel);
  margin-bottom: .4rem; letter-spacing: .04em; font-weight: 500;
}
.fach-bullets { list-style: none; margin: 1.5rem 0 1.8rem; }
.fach-bullets li {
  font-size: .9rem; color: var(--gray-600);
  padding: .6rem 0 .6rem 1.6rem;
  border-bottom: 1px solid var(--gray-200);
  position: relative; font-weight: 300;
}
.fach-bullets li::before {
  content: ''; position: absolute;
  left: 0; top: 1.1rem; width: 8px; height: 1px;
  background: var(--steel);
}
.fach-bullets li:last-child { border-bottom: none; }

/* ─────────────────── PORTRAIT ─────────────────── */
.portrait-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 5rem; align-items: start;
}
.portrait-img-wrap { position: relative; }
.portrait-img {
  height: 640px;
  background-size: cover; background-position: center top;
  border-radius: 2px;
}
.portrait-img-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--navy);
  padding: 1.6rem 2rem;
  border-radius: 2px;
}
.badge-num {
  font-size: 2.2rem; font-weight: 300;
  color: var(--white); line-height: 1;
  letter-spacing: -0.01em;
}
.badge-label {
  font-size: .68rem; color: var(--steel-light);
  letter-spacing: .12em; margin-top: .4rem;
  text-transform: uppercase;
}
.portrait-story {
  font-size: .95rem; color: var(--gray-600);
  line-height: 1.85; font-weight: 300;
}
.portrait-story p { margin-bottom: 1.1rem; }
.portrait-story p strong { color: var(--navy); font-weight: 500; }

.portrait-values {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 3rem;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.value-item {
  padding: 1.5rem 1.4rem;
  background: var(--white);
}
.value-icon { color: var(--steel); margin-bottom: .8rem; }
.value-icon svg { width: 18px; height: 18px; }
.value-title {
  font-size: .9rem; font-weight: 500;
  color: var(--navy); margin-bottom: .3rem;
  letter-spacing: -0.005em;
}
.value-desc {
  font-size: .8rem; color: var(--gray-500);
  line-height: 1.55; font-weight: 300;
}

.portrait-stats {
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: var(--navy); margin-top: 5rem;
}
.pstat {
  padding: 2.2rem 1.5rem;
  border-right: 1px solid var(--line-dark);
  text-align: center;
}
.pstat:last-child { border-right: none; }
.pstat-num {
  font-size: 1.8rem; font-weight: 300; color: var(--white);
  letter-spacing: -0.01em;
}
.pstat-label {
  font-size: .72rem; color: var(--gray-400);
  margin-top: .35rem; line-height: 1.45; font-weight: 300;
}

/* ─────────────────── CAREER BAND (thematic full-bleed) ─────────────────── */
.career-band {
  position: relative; height: 440px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--navy);
}
.career-band-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 42%;
  transform: scale(1.05);
}
.career-band-img::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, rgba(24,40,53,0.74) 0%, rgba(24,40,53,0.58) 55%, rgba(24,40,53,0.78) 100%);
}
.career-band-inner {
  position: relative; z-index: 2; text-align: center;
  padding: 0 8%; max-width: 920px;
}
.career-band-inner h2 {
  font-family: var(--sans);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 300; color: var(--white);
  line-height: 1.12; letter-spacing: -0.01em;
}

/* Timeline */
.timeline {
  position: relative; margin-top: 4rem; padding-left: 1.5rem;
  border-left: 1px solid var(--gray-200);
}
.timeline-item { position: relative; padding: 0 0 2.2rem 1.5rem; }
.timeline-item::before {
  content: ''; position: absolute;
  left: -1.85rem; top: .25rem; width: 11px; height: 11px;
  background: var(--white); border: 2px solid var(--steel);
  border-radius: 50%;
}
.timeline-year {
  font-size: .85rem;
  color: var(--steel); margin-bottom: .25rem;
  letter-spacing: .04em; font-weight: 500;
}
.timeline-title {
  font-size: 1rem; font-weight: 500;
  color: var(--navy); margin-bottom: .35rem;
  letter-spacing: -0.005em;
}
.timeline-desc {
  font-size: .87rem; color: var(--gray-600);
  line-height: 1.7; font-weight: 300;
}

/* ─────────────────── TESTIMONIALS (photo-led cards) ─────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200); border-radius: 5px;
  padding: 1.3rem 1.3rem 1.7rem;
  display: flex; flex-direction: column;
}
.t-photo {
  width: 100%; aspect-ratio: 4 / 5; border-radius: 4px;
  background-size: cover; background-position: center top;
  background-color: var(--gray-100);
  margin-bottom: 1.3rem;
}
.t-photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--gray-100), var(--gray-200));
  color: var(--gray-300);
}
.t-photo--placeholder svg { width: 42%; height: 42%; }
.t-logo {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--steel); margin-bottom: .85rem;
}
.t-name {
  font-size: .98rem; font-weight: 500; color: var(--navy);
  letter-spacing: -0.005em;
}
.t-role {
  font-size: .76rem; color: var(--gray-400); font-weight: 300;
  margin-top: .15rem;
}
.t-mark {
  font-size: 2.6rem; line-height: .4; color: var(--gray-300);
  font-weight: 400; display: block; margin: 1.2rem 0 .65rem;
}
.t-text {
  font-size: .85rem; color: var(--gray-600);
  line-height: 1.72; font-weight: 300;
}

/* ─────────────────── REF LOGOS ─────────────────── */
.ref-logos { background: var(--navy); padding: 4rem 8%; }
.ref-logos-label {
  text-align: center;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 2.8rem;
}
.logos-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.logo-badge {
  font-size: .85rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: .08em;
  padding: 1.5rem 2rem;
  flex: 1 1 calc(16.66% - 0);
  text-align: center;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: color .2s, background .2s;
  text-transform: uppercase;
}
.logo-badge:hover { color: var(--white); background: rgba(255,255,255,0.03); }

/* ─────────────────── CTA BAND ─────────────────── */
.cta-band {
  background: var(--navy-2);
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 3rem;
  padding: 3.5rem 8%;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; right: -10%; top: -50%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(110,148,168,0.25), transparent 60%);
  pointer-events: none;
}
.cta-band.dark { background: var(--navy-2); }
.cta-band-title {
  font-family: var(--sans);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 300; color: var(--white);
  line-height: 1.2; letter-spacing: -0.01em;
  position: relative;
}
.cta-band-title em { font-style: normal; color: var(--steel-light); font-weight: 400; }
.cta-band-sub {
  font-size: .92rem; color: rgba(255,255,255,0.65);
  margin-top: .5rem; font-weight: 300;
  position: relative;
}
.cta-band-btns { display: flex; gap: 1rem; flex-shrink: 0; position: relative; }

/* ─────────────────── KONTAKT / FORM ─────────────────── */
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 5rem; margin-top: 3rem;
}
.kontakt-info { display: flex; flex-direction: column; gap: 1.6rem; }
.kontakt-hero-img {
  height: 240px;
  background-size: cover; background-position: center top;
  border-radius: 2px; margin-bottom: 1.5rem;
}
.kontakt-item {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--gray-200);
}
.kontakt-item:last-child { border-bottom: none; }
.kontakt-icon {
  width: 2.6rem; height: 2.6rem;
  background: var(--navy); color: var(--steel-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: 2px;
}
.kontakt-icon svg { width: 16px; height: 16px; }
.kontakt-label {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: .3rem;
}
.kontakt-val {
  font-size: .95rem; font-weight: 500; color: var(--navy);
  line-height: 1.5;
}
.kontakt-val a { color: var(--navy); transition: color .2s; }
.kontakt-val a:hover { color: var(--steel); }

.kontakt-form {
  background: var(--off-white);
  padding: 3rem;
  border: 1px solid var(--gray-200); border-radius: 2px;
  box-shadow: 0 18px 44px rgba(30,49,64,.06);
}
.form-title {
  font-family: var(--sans);
  font-size: 1.5rem; font-weight: 400;
  color: var(--navy); margin-bottom: .4rem;
  letter-spacing: -0.01em;
}
.form-sub {
  font-size: .87rem; color: var(--gray-500);
  margin-bottom: 2rem; font-weight: 300;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: .45rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .85rem 1rem;
  border: 1px solid var(--gray-200); border-radius: 2px;
  font-family: var(--sans);
  font-size: .92rem; color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color .2s, background .2s;
  font-weight: 400;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--steel); background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400); font-weight: 300;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-check {
  display: flex; align-items: flex-start; gap: .65rem;
  margin-bottom: 1.6rem;
}
.form-check input { width: auto; flex-shrink: 0; margin-top: 4px; accent-color: var(--steel); }
.form-check label {
  font-size: .82rem; color: var(--gray-600);
  line-height: 1.55; font-weight: 400;
  text-transform: none; letter-spacing: 0;
}
.form-check label a { color: var(--steel); text-decoration: underline; text-underline-offset: 2px; }
.btn-submit {
  width: 100%;
  background: var(--navy); color: var(--white);
  border: none; padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: .8rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  transition: background .25s;
}
.btn-submit:hover { background: var(--steel); }
.btn-submit svg { width: 14px; height: 14px; }

/* booking */
.booking-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 2px; padding: 2.5rem; margin-top: 2.5rem;
}
.booking-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.booking-logo {
  width: 2.6rem; height: 2.6rem; border-radius: 6px;
  background: linear-gradient(135deg, var(--steel), var(--steel-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 500; font-size: .8rem; letter-spacing: .04em;
}
.booking-title { font-size: 1rem; font-weight: 500; color: var(--navy); }
.booking-sub { font-size: .8rem; color: var(--gray-500); font-weight: 300; }
.booking-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 2rem; align-items: start;
}
.booking-calendar {
  background: var(--off-white); border-radius: 4px;
  padding: 1.4rem;
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.1rem;
}
.cal-month { font-weight: 500; color: var(--navy); font-size: .92rem; }
.cal-nav { display: flex; gap: .4rem; }
.cal-nav button {
  width: 28px; height: 28px; border-radius: 4px;
  background: var(--white); border: 1px solid var(--gray-200);
  color: var(--gray-600); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.cal-nav button:hover { color: var(--steel); border-color: var(--steel); }
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  font-size: .78rem;
}
.cal-grid .dow {
  text-align: center; color: var(--gray-400); font-weight: 500;
  font-size: .68rem; letter-spacing: .08em; padding: .35rem 0;
  text-transform: uppercase;
}
.cal-grid .day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 4px; color: var(--gray-600); cursor: pointer;
  background: var(--white); transition: .15s;
}
.cal-grid .day:hover { background: var(--steel); color: var(--white); }
.cal-grid .day.off { color: var(--gray-300); background: transparent; cursor: default; }
.cal-grid .day.today { border: 1px solid var(--steel); color: var(--steel); font-weight: 500; }
.cal-grid .day.selected { background: var(--navy); color: var(--white); }

.slots-list { display: flex; flex-direction: column; gap: .55rem; }
.slots-label {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: .6rem;
}
.slot {
  padding: .75rem 1rem; border: 1px solid var(--gray-200);
  border-radius: 4px; font-size: .85rem; color: var(--navy);
  cursor: pointer; text-align: left; background: var(--white);
  transition: .15s;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-weight: 400;
}
.slot:hover { border-color: var(--steel); color: var(--steel); }
.slot.taken { color: var(--gray-300); background: var(--off-white); cursor: not-allowed; text-decoration: line-through; }

/* ─────────────────── FOOTER ─────────────────── */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.55);
  padding: 5rem 8% 2rem;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand { font-size: .88rem; line-height: 1.7; font-weight: 300; }
.footer-brand .footer-logo { margin-bottom: 1.4rem; height: 64px; width: auto; }
.footer-col h4 {
  font-size: .7rem; font-weight: 500; color: var(--white);
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col a {
  font-size: .85rem; color: rgba(255,255,255,0.55);
  font-weight: 300; transition: color .2s;
}
.footer-col a:hover { color: var(--steel-light); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .85rem; color: rgba(255,255,255,0.55);
  margin-bottom: .9rem;
  font-weight: 300;
}
.footer-contact-item svg {
  width: 14px; height: 14px; flex-shrink: 0; margin-top: 4px;
  color: var(--steel-light);
}
.footer-bottom {
  padding-top: 1.6rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: .76rem; color: rgba(255,255,255,0.3); font-weight: 300;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--steel-light); }
.footer-legal-links { display: flex; gap: 1.5rem; }

/* ─────────────────── ANIMATIONS ─────────────────── */
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollHint {
  0%, 100% { transform: scaleY(.4); transform-origin: top; opacity: .5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─────────────────── MOBILE ─────────────────── */
@media (max-width: 1100px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .challenges-grid { grid-template-columns: repeat(2, 1fr); }
  .prozess-steps { grid-template-columns: repeat(2, 1fr); gap: 2.6rem 2rem; }
  .prozess-step:not(:last-child)::after { display: none; }
  .fach-intro { grid-template-columns: 1fr; }
  .fach-image { height: 340px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .portrait-stats { grid-template-columns: repeat(3, 1fr); }
  .portrait-grid { grid-template-columns: 1fr; gap: 4rem; }
  .portrait-img { height: 460px; }
  .erstcheck { grid-template-columns: 1fr; }
  .erstcheck-img { min-height: 320px; }
  .erstcheck-content { padding: 3.5rem 7%; }
  .erstcheck-checks { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .fach-detail { grid-template-columns: 1fr; }
  .fach-detail.reverse > :first-child { order: 0; }
  .fach-detail-text { padding: 3.5rem 7%; }
}

@media (max-width: 720px) {
  .nav { height: 72px; }
  .nav-logo img { height: 40px; }
  .mobile-menu { top: 72px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 7% 8rem; }
  .hero-dots { bottom: 2rem; right: 7%; }
  .hero-scroll { display: none; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat { padding: 1.6rem 7%; }
  .section { padding: 4.5rem 7%; }
  .section-sm { padding: 3rem 7%; }
  .section-head { margin-bottom: 2.6rem; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .challenges-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .prozess-steps { grid-template-columns: 1fr; gap: 2rem; }
  .portrait-values { grid-template-columns: 1fr 1fr; }
  .portrait-stats { grid-template-columns: 1fr 1fr; }
  .pstat { border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 3rem 7%; }
  .career-band { height: 320px; }
  .cta-band-btns { flex-wrap: wrap; }
  .footer { padding: 3.5rem 7% 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
  .page-hero { padding: 8.5rem 7% 4rem; }
  .kontakt-form { padding: 2rem; }
}


/* ─────────────────── MOBILE STICKY CTA ─────────────────── */
.mobile-cta { display: none; }
@media (max-width: 760px) {
  .mobile-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
    display: flex; gap: 1px; background: var(--line-light);
    box-shadow: 0 -6px 22px rgba(30,49,64,.14);
  }
  .mobile-cta a {
    flex: 1; text-align: center; padding: 1rem 1rem;
    font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  }
  .mobile-cta .c-call { background: #fff; color: var(--navy); }
  .mobile-cta .c-book { background: var(--steel); color: #fff; }
  /* keep footer / bottom content clear of the bar */
  .footer { padding-bottom: 5.5rem; }
}


/* ─────────────────── HERO SUBHEAD + NOTE ─────────────────── */
.hero-h2 {
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  font-weight: 400; color: var(--steel-light);
  letter-spacing: .005em; line-height: 1.3;
  margin-bottom: 1.4rem; max-width: 30ch;
  opacity: 0; transform: translateY(16px);
  animation: heroIn .8s .55s ease forwards;
}
.hero-note {
  margin-top: 1.2rem; font-size: .8rem; font-weight: 300;
  letter-spacing: .03em; color: rgba(255,255,255,.62);
  opacity: 0; animation: heroIn .8s 1.05s ease forwards;
}


/* ─────────────────── FAQ (accordion) ─────────────────── */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line-light); padding: 1.15rem 0; }
.faq details:first-child { border-top: 1px solid var(--line-light); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 1.2rem;
  font-size: 1.02rem; font-weight: 500; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--steel); font-weight: 300; font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: '\2013'; }
.faq details p { margin: .8rem 0 0; font-size: .92rem; color: var(--gray-600); font-weight: 300; line-height: 1.75; max-width: 70ch; }


/* ─────────────────── FORM SUCCESS ─────────────────── */
.form-success {
  flex-direction: column; align-items: flex-start; justify-content: center;
  gap: .6rem; background: var(--off-white);
  border: 1px solid var(--line-light); border-radius: 4px;
  padding: 2.6rem 2.4rem; min-height: 320px;
}
.form-success-icon { color: var(--steel); margin-bottom: .4rem; }
.form-success-icon svg { width: 44px; height: 44px; }
.form-success h3 { font-size: 1.35rem; font-weight: 500; color: var(--navy); letter-spacing: -.01em; }
.form-success p { font-size: .95rem; color: var(--gray-600); font-weight: 300; line-height: 1.7; max-width: 46ch; margin-bottom: .8rem; }


/* ─────────────────── Responsive hardening (beats inline grids) ─────────────────── */
/* Tablet portrait: switch to hamburger nav so long labels never overflow */
@media (max-width: 900px){
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
}
/* Tablet & below: collapse inline two-column layouts */
@media (max-width: 1100px){
  .erstcheck { grid-template-columns: 1fr !important; }
  .split-2 { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .split-sticky { position: static !important; top: auto !important; }
}
@media (min-width: 721px) and (max-width: 1100px){
  .cols-3 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 720px){
  .cols-3 { grid-template-columns: 1fr !important; }
}
/* Never allow horizontal scroll on small screens */
@media (max-width: 760px){
  html, body { overflow-x: hidden; }
}
/* ─────────── HERO · Mobile-Optimierung (Portraitbild + Lesbarkeit) ─────────── */
@media (max-width: 760px){
  .hero { height: auto; min-height: 88vh; }
  .hero-slide { background-position: 64% 12%; }
  .hero-content { padding: 0 7% 7.5rem; }
  .hero-label { margin-bottom: 1rem; font-size: .66rem; letter-spacing: .22em; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3.1rem); margin-bottom: 1.1rem; }
  .hero-h2 { font-size: 1.1rem; margin-bottom: 1rem; }
  .hero-sub { font-size: .98rem; margin-bottom: 1.6rem; }
  .hero-btns { gap: .7rem; }
  .hero-btns .btn { flex: 1 1 auto; justify-content: center; }
  .hero-note { font-size: .74rem; }
  .hero-dots { bottom: 6.4rem; }
}
@media (max-width: 420px){
  .hero-slide { background-position: 66% 8%; }
  .hero h1 { font-size: clamp(2rem, 12vw, 2.7rem); }
}


/* ─────────────────── EMBED PLACEHOLDERS (WIX) ─────────────────── */
.embed-slot {
  border: 1.5px dashed var(--steel-light); border-radius: 6px;
  background: linear-gradient(180deg, var(--off-white), #fff);
  padding: 3rem 2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; min-height: 440px;
}
.embed-slot svg { width: 46px; height: 46px; color: var(--steel); }
.embed-slot-title { font-size: 1.15rem; font-weight: 500; color: var(--navy); }
.embed-slot-sub { font-size: .9rem; color: var(--gray-600); font-weight: 300; max-width: 54ch; line-height: 1.7; }
.embed-slot-tag {
  margin-top: .4rem; font-size: .72rem; letter-spacing: .03em; color: var(--steel);
  background: #fff; border: 1px solid var(--line-light); padding: .45rem .85rem; border-radius: 999px;
}
.form-hubspot-note {
  display: flex; align-items: center; gap: .55rem;
  font-size: .76rem; font-weight: 400; color: var(--steel);
  background: rgba(74,122,149,.07); border: 1px solid var(--line-light);
  padding: .55rem .8rem; border-radius: 4px; margin-bottom: 1.4rem;
}
.form-hubspot-note svg { width: 14px; height: 14px; flex-shrink: 0; }
@media (max-width: 760px){ .embed-slot { min-height: 360px; padding: 2.2rem 1.3rem; } }


/* ─────────────────── LOGO SLIDER (marquee) ─────────────────── */
.logo-marquee {
  overflow: hidden; margin-top: 2.4rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logo-track {
  display: flex; align-items: center; gap: 1.5rem; width: max-content;
  animation: logoScroll 48s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-chip {
  flex: none; display: flex; align-items: center; justify-content: center;
  width: 190px; height: 96px; padding: 0 24px;
  background: #fff; border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}
.logo-chip img {
  max-width: 100%; max-height: 52px; width: auto; height: auto;
  object-fit: contain; display: block;
}
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; flex-wrap: wrap; justify-content: center; gap: 1.2rem; width: auto; }
}
@media (max-width: 760px) {
  .logo-track { gap: 1rem; animation-duration: 34s; }
  .logo-chip { width: 150px; height: 80px; padding: 0 18px; }
  .logo-chip img { max-height: 42px; }
}


/* ─────────────────── HOME · STIMMEN AUS DER PRAXIS ─────────────────── */
.hq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem; max-width: 1080px; margin: 2.6rem auto 0;
}
.hq-card {
  position: relative; background: #fff;
  border: 1px solid var(--gray-200); border-radius: 6px;
  padding: 2.3rem 2.2rem 2rem;
  display: flex; flex-direction: column; margin: 0;
  transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
}
.hq-card:hover {
  box-shadow: 0 20px 48px rgba(30,49,64,.10);
  border-color: var(--gray-300); transform: translateY(-3px);
}
.hq-mark {
  font-size: 3.1rem; line-height: .5; color: var(--steel);
  opacity: .28; font-weight: 400; margin-bottom: .6rem; user-select: none;
}
.hq-head {
  font-size: 1.12rem; font-weight: 500; color: var(--navy);
  letter-spacing: -.01em; line-height: 1.3; margin: 0 0 .9rem;
  text-wrap: pretty;
}
.hq-text {
  font-size: .94rem; font-weight: 300; color: var(--gray-600);
  line-height: 1.78; margin: 0 0 1.6rem; flex: 1;
  border: 0; padding: 0;
}
.hq-text strong { font-weight: 600; color: var(--navy); }
.hq-author {
  display: flex; align-items: center; gap: .9rem;
  padding-top: 1.3rem; border-top: 1px solid var(--gray-200);
}
.hq-photo {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background-size: cover; background-position: center top;
  background-color: var(--gray-100);
}
.hq-photo--ph {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--gray-100), var(--gray-200));
  color: var(--gray-300);
}
.hq-photo--ph svg { width: 56%; height: 56%; }
.hq-meta { display: flex; flex-direction: column; }
.hq-name { font-size: .95rem; font-weight: 500; color: var(--navy); letter-spacing: -.005em; }
.hq-role { font-size: .8rem; color: var(--gray-500); font-weight: 300; margin-top: .05rem; }
.hq-org  { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--steel); margin-top: .35rem; }

@media (max-width: 760px) {
  .hq-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .hq-card { padding: 1.9rem 1.5rem 1.6rem; }
}


/* ─────────────────── REFERENZEN · LANGFORMAT ─────────────────── */
/* Stimmen – untereinander aufgeführt, volle Breite, Foto links */
.ref-quotes { margin: 2.6rem 0 0; }
.ref-quote {
  display: grid; grid-template-columns: 210px 1fr; gap: 1rem 3rem;
  grid-template-areas: "aside head" "aside body";
  align-items: start;
  border-top: 1px solid var(--gray-200); padding: 2.8rem 0;
}
.ref-quote:first-child { border-top: 0; padding-top: .5rem; }
.rq-head-row {
  grid-area: aside; display: flex; flex-direction: column; align-items: flex-start; gap: 0;
  position: sticky; top: 110px;
}
.rq-photo {
  width: 88px; height: 88px; border-radius: 50%; flex-shrink: 0; margin-bottom: 1rem;
  background-size: cover; background-position: center top; background-color: var(--gray-100);
}
.rq-photo--ph {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--gray-100), var(--gray-200));
  color: var(--gray-300);
}
.rq-photo--ph svg { width: 52%; height: 52%; }
.rq-meta { display: flex; flex-direction: column; }
.rq-name { font-size: 1.05rem; font-weight: 500; color: var(--navy); letter-spacing: -.01em; }
.rq-role { font-size: .82rem; color: var(--gray-500); font-weight: 300; margin-top: .2rem; line-height: 1.4; }
.rq-org {
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--steel); margin-top: .7rem;
}
.rq-head {
  grid-area: head; font-size: 1.4rem; font-weight: 300; color: var(--navy);
  letter-spacing: -.01em; line-height: 1.25; margin: 0 0 1.1rem; text-wrap: pretty;
}
.rq-body { grid-area: body; max-width: 74ch; }
.rq-body p {
  font-size: .96rem; font-weight: 300; color: var(--gray-600);
  line-height: 1.85; margin: 0 0 1.05rem;
}
.rq-body p:last-child { margin-bottom: 0; }
.rq-body strong { font-weight: 600; color: var(--navy); }

@media (max-width: 820px) {
  .ref-quote { grid-template-columns: 1fr; grid-template-areas: "aside" "head" "body"; gap: 1.1rem; padding: 2.2rem 0; }
  .rq-head-row { position: static; flex-direction: row; align-items: center; gap: .9rem; }
  .rq-photo { width: 60px; height: 60px; margin-bottom: 0; }
  .rq-head { font-size: 1.2rem; }
}

/* Kennzahlenband bündig unter dem Hero – Home-Farbgebung */
.portrait-stats.stats-flush {
  margin-top: 0;
  background: var(--navy-2);
  border-top: 1px solid rgba(110,148,168,.45);
  box-shadow: 0 18px 40px rgba(15,25,33,.35);
  position: relative; z-index: 2;
}


/* ─────────────────── KARTE (Google Maps Embed) ─────────────────── */
.map-frame {
  position: relative; aspect-ratio: 16 / 10;
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 18px 44px rgba(30,49,64,.10);
  background: var(--gray-100);
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0; display: block;
  position: relative; z-index: 1;
  filter: saturate(.92) contrast(1.02);
}
/* Marken-Fallback hinter der Karte – sichtbar nur, falls das Embed (z. B. im Sandbox) nicht lädt */
.map-fallback {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
}
.map-fallback svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-fallback-note {
  position: relative; z-index: 1;
  font-size: .76rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray-500); background: rgba(255,255,255,.75);
  padding: .4rem .8rem; border-radius: 999px; backdrop-filter: blur(2px);
}
/* dünner Marken-Innenrahmen für den Premium-Eindruck */
.map-frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border: 1px solid rgba(30,49,64,.08); border-radius: 4px;
  box-shadow: inset 0 0 0 0 rgba(0,0,0,0);
}
.map-cta {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--navy); color: #fff;
  font-size: .74rem; font-weight: 500; letter-spacing: .04em;
  padding: .62rem 1rem; border-radius: 3px;
  box-shadow: 0 6px 18px rgba(30,49,64,.28);
  transition: background .2s, transform .2s;
}
.map-cta:hover { background: var(--steel); transform: translateY(-1px); }
.map-cta svg { width: 14px; height: 14px; }
@media (max-width: 760px){
  .map-frame { aspect-ratio: 4 / 3; }
}


/* ─────────────────── POSITIONIERUNG (Text + Bild) ─────────────────── */
.pos-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem; align-items: center;
}
.pos-grid .section-head { margin-bottom: 0; }
.pos-image img {
  width: 100%; height: auto; display: block;
  border-radius: 6px;
  box-shadow: 0 22px 50px rgba(30,49,64,.16);
}
@media (max-width: 860px) {
  .pos-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .pos-image { max-width: 540px; }
}


/* ─────────────────── LEISTUNG OUTCOME ─────────────────── */
.leistung-outcome {
  display: flex; align-items: flex-start; gap: .6rem;
  background: var(--gray-100); border-left: 2px solid var(--steel);
  padding: .85rem 1.1rem; border-radius: 4px; margin: 0 0 1.8rem;
  font-size: .88rem; color: var(--navy); font-weight: 400; line-height: 1.55;
}
.leistung-outcome svg { width: 16px; height: 16px; color: var(--steel); flex-shrink: 0; margin-top: 3px; }
.leistung-outcome b { font-weight: 600; }


/* ─────────────────── COOKIE CONSENT ─────────────────── */
.cookie-consent[hidden] { display: none !important; }
.cookie-consent {
  position: fixed; left: 1.4rem; right: 1.4rem; bottom: 1.4rem; z-index: 2147483600;
  max-width: 940px; margin-inline: auto;
  background: var(--navy); color: rgba(255,255,255,.88);
  border: 1px solid rgba(110,148,168,.35); border-radius: 8px;
  box-shadow: 0 18px 48px rgba(15,25,33,.45);
  padding: 1rem 1.2rem;
  display: flex; flex-direction: row; align-items: center; flex-wrap: wrap; gap: 1rem 1.4rem;
  max-height: calc(100vh - 2.8rem); overflow: auto;
}
@keyframes cookieIn { from { opacity:0; transform: translateY(16px);} to { opacity:1; transform:none; } }
.cookie-text { flex: 1 1 320px; font-size: .82rem; font-weight: 300; line-height: 1.55; }
.cookie-text a { color: var(--steel-light); text-decoration: underline; }
.cookie-actions { flex: 0 0 auto; display: flex; gap: .7rem; justify-content: flex-end; }
.cookie-btn {
  font-family: var(--sans); font-size: .8rem; font-weight: 500; letter-spacing: .03em;
  padding: .7rem 1.2rem; min-height: 44px; border-radius: 3px; cursor: pointer; border: 1px solid transparent;
  transition: background .2s, border-color .2s;
}
.cookie-essential { background: transparent; color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.3); }
.cookie-essential:hover { border-color: rgba(255,255,255,.6); }
.cookie-accept { background: var(--steel); color: #fff; }
.cookie-accept:hover { background: var(--steel-light); }
@media (max-width: 760px) {
  .cookie-consent {
    left: .6rem; right: .6rem; bottom: calc(54px + .6rem);
    flex-direction: column; align-items: stretch; gap: .85rem; padding: 1.1rem 1.1rem;
  }
  .cookie-actions { width: 100%; gap: .6rem; }
  .cookie-btn { flex: 1; min-height: 48px; font-size: .85rem; }
}


/* Ansatz – Werte-Gruppe */
.values-header { margin: 1rem 0 2rem; padding-top: 2.4rem; border-top: 1px solid var(--line-light); }
.values-title { font-size: 1.25rem; font-weight: 400; color: var(--navy); letter-spacing: -.01em; margin-top: .3rem; }


/* Kontakt – Formular full-width + Standort (Karte oben, Bild+Daten darunter) */
.kontakt-formwrap { width: 100%; }
.kontakt-formwrap .kontakt-form { max-width: none; }
.kontakt-formwrap .form-row { grid-template-columns: 1fr 1fr; }
.standort-wrap { width: 100%; }
.standort-wrap .map-frame { aspect-ratio: 21 / 7; }
.standort-info {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.5rem;
  align-items: center; margin-top: 1.8rem;
  background: var(--off-white); border: 1px solid var(--gray-200);
  border-radius: 4px; padding: 2rem;
}
.standort-photo {
  min-height: 260px; height: 100%; border-radius: 3px;
  background-size: cover; background-position: center 25%; background-color: var(--gray-100);
}
.standort-contact { display: flex; flex-direction: column; gap: 1.2rem; }
@media (max-width: 860px) {
  .standort-info { grid-template-columns: 1fr; gap: 1.6rem; }
  .standort-photo { min-height: 220px; }
  .standort-wrap .map-frame { aspect-ratio: 4 / 3; }
}


/* Referenzen – KPI-Leitzeile + heller Logo-Slider */
.proj-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin: 0 0 2.6rem; }
.kpi-card { border-left: 2px solid var(--steel); display: flex; flex-direction: column; }
.kpi-num { font-size: 2rem; font-weight: 300; color: var(--navy); letter-spacing: -.02em; margin-bottom: .6rem; }
.kpi-tag { margin-top: auto; padding-top: 1.2rem; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--steel); }
.ref-logos-light { background: var(--white); }
.ref-logos-light .ref-logos-label { color: var(--gray-500); }
.ref-logos-light .logo-chip { border: 1px solid var(--gray-200); box-shadow: 0 8px 24px rgba(30,49,64,.06); }
@media (max-width: 900px){ .proj-kpis { grid-template-columns: 1fr; } }


/* Home – Stimmen als Slider (scroll-snap) */
.hq-slider {
  display: flex; gap: 1.6rem; max-width: none; margin: 2.6rem 0 0;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1.2rem; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--steel) var(--gray-200);
}
.hq-slider .hq-card {
  flex: 0 0 clamp(300px, 42%, 460px); scroll-snap-align: center;
}
.hq-slider::-webkit-scrollbar { height: 6px; }
.hq-slider::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 999px; }
.hq-slider::-webkit-scrollbar-track { background: var(--gray-200); border-radius: 999px; }
@media (max-width: 760px){ .hq-slider .hq-card { flex-basis: 86%; } }


/* Prozess – helle Variante */
.prozess.prozess-light { background: var(--off-white); }
.prozess-light .step-num { color: var(--steel); border-color: var(--gray-300); }
.prozess-light .step-title { color: var(--navy); }
.prozess-light .step-desc { color: var(--gray-600); }
.prozess-light .prozess-step::before,
.prozess-light .prozess-steps::before { background: var(--gray-200) !important; }


/* Erstcheck/Split – graue Variante für Hintergrund-Alternation */
.erstcheck.sec-gray .erstcheck-content { background: var(--off-white); }


/* Über mich/Positionierung – Text bündig zum Seitenrand (8vw) wie normale Sektionen */
.erstcheck.align-page .erstcheck-content { padding-left: 8vw; }
@media (max-width: 900px) {
  .erstcheck.align-page .erstcheck-content { padding-left: 8%; }
}


/* Kachel-Klicklogik */
/* Klickbare Karte → Pointer + blauer (navy) Hover (Default-Hover bleibt navy) */
.leistung-card.is-clickable { cursor: pointer; }
/* Nicht klickbare Karte → neutraler grauer Hover, kein Pointer */
.leistung-card.no-link { cursor: default; }
.leistung-card.no-link:hover { background: var(--off-white); }
.leistung-card.no-link:hover .leistung-title { color: var(--navy); }
.leistung-card.no-link:hover .leistung-desc { color: var(--gray-600); }
.leistung-card.no-link:hover .leistung-num { color: var(--gray-400); }
.leistung-card.no-link:hover .leistung-icon { background: var(--gray-100); color: var(--steel); }
/* Challenge-Karten sind nie verlinkt → grauer Hover, Standard-Cursor */
.challenge-card { cursor: default; }


/* Fachbereiche-Teaser: 5 Karten, transparenter Gap (kein grauer Leerraum), 3→2→1 */
.leistungen-grid.fb-grid {
  background: transparent;
  gap: 1.4rem;
  grid-template-columns: repeat(3, 1fr);
}
.leistungen-grid.fb-grid .leistung-card { border: 1px solid var(--gray-200); }
@media (max-width: 1100px) {
  .leistungen-grid.fb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .leistungen-grid.fb-grid { grid-template-columns: 1fr; }
}


/* ─────────────────── KONTAKT · Split (Portrait+CTA | Formular) ─────────────────── */
.kontakt-split {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: 1.6rem; align-items: stretch; margin-top: 1rem;
}
.kontakt-aside {
  background: var(--navy); border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
}
.kontakt-aside-img {
  width: 100%; aspect-ratio: 4 / 3;
  background-size: cover; background-position: center 18%;
  background-color: var(--navy-2);
}
.kontakt-aside-body {
  padding: 2.2rem 2rem 2.4rem; display: flex; flex-direction: column;
  gap: .8rem; flex: 1;
}
.kontakt-aside .eyebrow { color: var(--steel-light); }
.kontakt-aside .eyebrow::before { background: var(--steel-light); }
.kontakt-aside-title {
  font-size: 1.55rem; font-weight: 300; color: #fff;
  line-height: 1.18; letter-spacing: -.01em;
}
.kontakt-aside-sub {
  font-size: .92rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,.74);
}
.kontakt-aside-links {
  margin-top: auto; display: flex; flex-direction: column;
  gap: .8rem; padding-top: 1.6rem;
}
.kontakt-aside-link {
  display: flex; align-items: center; gap: .7rem;
  color: #fff; font-size: .9rem; font-weight: 400;
  transition: color .2s;
}
.kontakt-aside-link svg { width: 16px; height: 16px; color: var(--steel-light); flex-shrink: 0; }
.kontakt-aside-link:hover { color: var(--steel-light); }
.kontakt-formcol { display: flex; }
.kontakt-formcol .kontakt-form { flex: 1; margin: 0; }

/* ─────────────────── STANDORT · Split (Logo+Adresse | Karte) ─────────────────── */
.standort-split {
  display: grid; grid-template-columns: 0.72fr 1.28fr;
  gap: 1.6rem; align-items: stretch; margin-top: 1rem;
}
.standort-card {
  background: var(--off-white); border: 1px solid var(--gray-200);
  border-radius: 4px; padding: 2.6rem 2.4rem;
  display: flex; flex-direction: column; gap: 1.6rem; justify-content: center;
}
.standort-card .kontakt-item { padding-bottom: 0; border-bottom: none; }
.standort-card .kontakt-val { font-size: 1.05rem; line-height: 1.6; }
.standort-card-logo { width: 360px; max-width: 92%; height: auto; }
.standort-card-btns { display: flex; gap: .8rem; flex-wrap: wrap; }
.standort-card-btns .btn { padding: .7rem 1.2rem; font-size: .72rem; }
.standort-split .map-frame { aspect-ratio: auto; height: 100%; min-height: 380px; }

@media (max-width: 900px) {
  .kontakt-split, .standort-split { grid-template-columns: 1fr; }
  .kontakt-aside-img { aspect-ratio: 16 / 10; }
  .standort-split .map-frame { min-height: 340px; aspect-ratio: 4 / 3; }
}


/* ─────────────────── REFERENZEN · Projekt-Cases (Metrik + Detail) ─────────────────── */
.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem; margin-top: 2.8rem;
}
.case-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 5px;
  padding: 2.4rem 2.1rem 2.1rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.case-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--steel);
}
.case-card:hover { box-shadow: 0 18px 44px rgba(30,49,64,.09); transform: translateY(-3px); }
.case-eyebrow {
  font-size: .66rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 1.5rem;
}
.case-metric { display: flex; align-items: baseline; gap: .55rem; flex-wrap: wrap; }
.case-num {
  font-size: 2.7rem; font-weight: 300; color: var(--navy);
  line-height: 1; letter-spacing: -.02em;
}
.case-unit { font-size: .82rem; font-weight: 400; color: var(--steel); letter-spacing: .01em; }
.case-title {
  font-size: 1.08rem; font-weight: 500; color: var(--navy);
  margin: 1.1rem 0 .6rem; line-height: 1.32; letter-spacing: -.005em;
}
.case-desc { font-size: .88rem; color: var(--gray-600); line-height: 1.72; font-weight: 300; }
.case-checks {
  display: flex; flex-direction: column; gap: .65rem;
  margin: 1.5rem 0 1.7rem; padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.case-check { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; color: var(--navy); font-weight: 400; }
.case-check svg { width: 15px; height: 15px; color: var(--steel); flex-shrink: 0; margin-top: 2px; }
.case-tag {
  margin-top: auto; font-size: .65rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--steel);
}
@media (max-width: 980px) {
  .cases-grid { grid-template-columns: 1fr; }
}


/* Fachbereiche · 6. Kachel als CTA (füllt das 3×2-Raster) */
.leistung-card.cta-tile { background: var(--navy); border-color: var(--navy); }
.leistung-card.cta-tile .leistung-num { color: var(--steel-light); }
.leistung-card.cta-tile .leistung-title { color: #fff; }
.leistung-card.cta-tile .leistung-desc { color: rgba(255,255,255,.74); }
.leistung-card.cta-tile .leistung-icon { background: rgba(110,148,168,.18); color: var(--steel-light); }
.leistung-card.cta-tile .leistung-link { color: var(--steel-light); }
.leistung-card.cta-tile .leistung-link::after { background: var(--steel-light); }
.leistung-card.cta-tile:hover { background: var(--navy-2); }
