/* =========================================================
   HI-MAP™ Landingpage – Stylesheet
   Farben: Blau #0064ab · Weiß · Grau (aus der Beispielseite)
   ========================================================= */

:root {
  --blue: #0064ab;
  --blue-dark: #004f88;
  --blue-deep: #063a5e;
  --blue-soft: #e8f1f9;
  --blue-tint: rgba(0, 100, 171, 0.08);

  --grey-50: #f6f8fb;
  --grey-100: #f1f2f6;
  --grey-200: #e3e7ee;
  --grey-300: #c9d0da;
  --grey-500: #6b7280;
  --grey-600: #54595f;
  --grey-800: #2b3340;
  --ink: #16202c;
  --white: #ffffff;

  --font-head: "Jost", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(22, 32, 44, 0.06), 0 2px 8px rgba(22, 32, 44, 0.05);
  --shadow-md: 0 8px 24px rgba(22, 32, 44, 0.10);
  --shadow-lg: 0 24px 60px rgba(6, 58, 94, 0.22);

  --container: 1364px;
  --gutter: 24px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }
img { height: auto; } /* width/height-Attribute nur als Platzhalter gegen Layout-Sprünge */
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

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

/* ---------- Typografie ---------- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

h1 {
  font-size: clamp(1.9rem, 3.1vw, 2.75rem);
  line-height: 1.12;
}
@media (min-width: 961px) {
  h1 { white-space: nowrap; }
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.18;
}

.accent { color: var(--blue); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.lead {
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.65;
  color: var(--grey-600);
  max-width: 580px;
  margin: 22px 0 0;
}
.lead strong { color: var(--ink); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  padding: 0 22px;
  height: 48px;
  white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn .icon {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .18s ease;
}
.btn:hover .icon { transform: translateX(3px); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(0, 100, 171, 0.28);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0, 100, 171, 0.32); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--grey-300);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--white); }

.btn-lg { height: 54px; padding: 0 26px; font-size: 1.02rem; }
.btn-sm { height: 42px; padding: 0 18px; font-size: 0.92rem; }

:focus-visible { outline: 3px solid rgba(0, 100, 171, 0.45); outline-offset: 3px; border-radius: 6px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: var(--grey-200);
  box-shadow: 0 4px 20px rgba(22, 32, 44, 0.06);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { height: 32px; width: auto; }
.brand-sub {
  font-size: 0.78rem;
  color: var(--grey-500);
  padding-left: 14px;
  border-left: 1px solid var(--grey-200);
  line-height: 1.2;
  max-width: 190px;
}
.header-actions { display: flex; align-items: center; gap: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  /* Feste Höhe statt Viewport: auf Laptops genug Luft, auf großen Monitoren scheinen die Kundenstimmen schon herein */
  padding: calc(var(--header-h) + 96px) 0 112px;
  background: linear-gradient(180deg, var(--grey-100) 0%, var(--grey-50) 60%, var(--white) 100%);
}

.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .8;
}
.hero-glow-1 {
  width: 720px; height: 720px;
  right: -200px; top: -260px;
  background: radial-gradient(circle, rgba(0, 100, 171, 0.26) 0%, rgba(0, 100, 171, 0) 68%);
}
.hero-glow-2 {
  width: 520px; height: 520px;
  left: -220px; bottom: -260px;
  background: radial-gradient(circle, rgba(0, 100, 171, 0.14) 0%, rgba(0, 100, 171, 0) 70%);
}
.hero-ring {
  position: absolute;
  right: -180px; top: -200px;
  width: 720px; height: 720px;
  border-radius: 50%;
  border: 2px solid rgba(0, 100, 171, 0.22);
}
.hero-ring::before,
.hero-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.hero-ring::before { inset: 90px; border: 2px solid rgba(0, 100, 171, 0.16); }
.hero-ring::after { inset: 190px; border: 2px solid rgba(0, 100, 171, 0.10); background: radial-gradient(circle, rgba(0,100,171,0.06), rgba(0,100,171,0) 70%); }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero-copy { max-width: 660px; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-facts {
  list-style: none;
  margin: 36px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--grey-200);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 22px 32px;
}
.hero-facts li { display: flex; align-items: flex-start; gap: 14px; }
.fact-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
}
.fact-icon svg {
  width: 22px; height: 22px;
  fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.fact-text { display: flex; flex-direction: column; gap: 2px; }
.fact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.fact-value { font-weight: 500; color: var(--ink); line-height: 1.45; }

/* Video */
.hero-media { position: relative; }
.video-card {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--blue-deep);
  box-shadow: 0 18px 44px rgba(6, 58, 94, 0.18);
}
.video-el { width: 100%; height: 100%; object-fit: cover; }

.video-play {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; padding: 0;
  background: linear-gradient(180deg, rgba(6,58,94,0) 30%, rgba(6,58,94,.55) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transition: background .25s ease, opacity .3s ease;
}
.video-play:hover { background: linear-gradient(180deg, rgba(6,58,94,.08) 30%, rgba(6,58,94,.62) 100%); }
.video-play-btn {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(6, 58, 94, 0.35), 0 0 0 10px rgba(255, 255, 255, 0.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.video-play:hover .video-play-btn { transform: scale(1.06); box-shadow: 0 16px 36px rgba(6, 58, 94, 0.4), 0 0 0 14px rgba(255, 255, 255, 0.26); }
.video-play-btn svg { width: 34px; height: 34px; fill: var(--blue); margin-left: 4px; }
.video-play-badge {
  position: absolute;
  left: 18px; bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.video-card.is-playing .video-play { opacity: 0; pointer-events: none; }

/* ---------- Testimonials ---------- */
.testimonials-section {
  padding: 64px 0 clamp(64px, 8vw, 104px);
  background: var(--white);
}
.testimonials {
  position: relative;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.section-head .eyebrow { margin: 0; }

.carousel-nav { display: flex; gap: 10px; flex: 0 0 auto; }
.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-300);
  background: var(--white);
  display: grid; place-items: center;
  transition: border-color .18s ease, background .18s ease, color .18s ease, opacity .18s ease;
}
.carousel-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.carousel-btn:hover { border-color: var(--blue); color: var(--blue); }
.carousel-btn[disabled] { opacity: .35; cursor: default; }
.carousel-btn[disabled]:hover { border-color: var(--grey-300); color: inherit; }

.t-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * 24px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 6px; /* Snap-Kante = Container-Kante, nicht der 6px-Schattenrand */
  scroll-behavior: smooth;
  padding: 6px 6px 10px;
  margin: -6px -6px 0;
  scrollbar-width: none;
}
.t-track::-webkit-scrollbar { display: none; }

.t-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 26px 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--grey-200);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.t-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(0, 100, 171, 0.25); }

.t-quote { width: 26px; height: 26px; fill: var(--blue); opacity: .85; margin-bottom: 8px; }

.t-body { flex: 1 1 auto; }
.t-text {
  margin: 0;
  color: var(--grey-800);
  font-size: 0.97rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t-card.is-expanded .t-text { -webkit-line-clamp: unset; display: block; }
.t-more {
  display: none;
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
}
.t-more:hover { text-decoration: underline; }
.t-card.has-overflow .t-more { display: inline-block; }

.t-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--grey-200);
}
.t-person img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 4px var(--grey-200);
}
.t-name { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink); line-height: 1.25; }
.t-role { display: block; font-size: 0.86rem; color: var(--grey-500); margin-top: 2px; line-height: 1.35; }

.t-dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.t-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grey-300);
  transition: background .2s ease, width .2s ease;
}
.t-dots span.is-active { background: var(--blue); width: 24px; border-radius: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .t-track { grid-auto-columns: calc((100% - 24px) / 2); }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero-media { margin-top: 12px; max-width: 720px; }
  .hero { padding: calc(var(--header-h) + 40px) 0 64px; }
  .brand-sub { display: none; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; --header-h: 68px; }
  .brand-logo { height: 28px; }
  .btn-sm { height: 40px; padding: 0 14px; font-size: 0.85rem; }
  .hero-cta .btn { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; }
  .video-play-btn { width: 68px; height: 68px; }
  .video-play-btn svg { width: 28px; height: 28px; }
  .t-track { grid-auto-columns: 100%; }
  .t-card { padding: 24px 22px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .t-track { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* ---------- Was ist HI-MAP ---------- */
.about {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.about-media {
  position: relative;
  padding-right: 8%;
  padding-bottom: 7%;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(6, 58, 94, 0.14);
}
.about-img-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  border: 6px solid var(--white);
  box-shadow: 0 16px 40px rgba(6, 58, 94, 0.18);
}

.about-copy .eyebrow { margin-bottom: 14px; }
.about-copy h2 { max-width: 560px; }

.about-text {
  margin-top: 30px;
  display: grid;
  gap: 26px;
}
.about-para {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.about-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-soft);
  display: grid; place-items: center;
  margin-top: 2px;
}
.about-icon svg {
  width: 22px; height: 22px;
  fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.about-para p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--grey-800);
}
.about-highlight {
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
}

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 560px; }
  .about-copy h2 { max-width: none; }
}
@media (max-width: 640px) {
  .about-media { padding-right: 0; padding-bottom: 0; }
  .about-img-small { display: none; }
}

/* ---------- Ablauf & Inhalt ---------- */
.program {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--grey-50);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.program-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: stretch;
}
.program-copy .eyebrow { margin-bottom: 14px; }

.steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  position: relative;
}
.step {
  position: relative;
  display: flex;
  gap: 18px;
  padding-bottom: 26px;
}
.step:last-child { padding-bottom: 0; }
/* Verbindungslinie zwischen den Schritten */
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(0,100,171,.35), rgba(0,100,171,.12));
}
.step-icon {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(0, 100, 171, 0.3);
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  position: relative;
  z-index: 1;
}
.step-icon svg {
  width: 22px; height: 22px;
  fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.step-body { padding-top: 10px; }
.step-body h3 {
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.step-body p {
  margin: 0;
  color: var(--grey-600);
  line-height: 1.65;
  max-width: 560px;
}
.step-extra { margin-top: 8px !important; }
.step-extra strong { color: var(--ink); font-weight: 600; }

.program-note {
  margin: 28px 0 0 66px;
  font-size: 0.86rem;
  color: var(--grey-500);
  line-height: 1.55;
  max-width: 560px;
}

.program-media { position: relative; }
.program-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(6, 58, 94, 0.14);
}

.modules-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: clamp(56px, 7vw, 88px) 0 26px;
}
.modules-head::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--grey-200);
}
.modules-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
}

.modules {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.module {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.module:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(0, 100, 171, 0.25); }
.module-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--grey-200);
}
.module-icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--blue);
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(0, 100, 171, 0.25);
}
.module-icon svg {
  width: 24px; height: 24px;
  fill: none; stroke: var(--white); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.module-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2px;
}
.module h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
}
.module-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.module-list li {
  position: relative;
  padding-left: 30px;
  color: var(--grey-800);
  line-height: 1.5;
  font-size: 0.97rem;
}
/* Aufzählungszeichen: blauer Kreis mit Haken */
.module-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230064ab' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 1100px) {
  .modules { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .program-grid { grid-template-columns: 1fr; }
  .program-media { max-width: 560px; }
  .program-media img { min-height: 0; aspect-ratio: 4 / 5; }
}
@media (max-width: 640px) {
  .modules { grid-template-columns: 1fr; }
  .program-note { margin-left: 0; }
  .step { gap: 14px; }
  .step-icon { width: 42px; height: 42px; }
  .step:not(:last-child)::before { left: 20px; top: 44px; }
  .step-body { padding-top: 8px; }
}

/* ---------- Der messbare Effekt ---------- */
.impact {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 120px) 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, #04487e 55%, var(--blue-deep) 100%);
}
.impact-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 500px at 88% 10%, rgba(255,255,255,0.10), transparent 65%),
    radial-gradient(600px 500px at 5% 95%, rgba(255,255,255,0.07), transparent 65%);
}
.impact .container { position: relative; }

.impact-head { max-width: 720px; }
.impact h2 { color: var(--white); }
.eyebrow--light { color: rgba(255,255,255,0.85); }
.eyebrow--light .eyebrow-line { background: rgba(255,255,255,0.85); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}
.stat {
  padding: 30px 28px 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.8rem, 4.4vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.stat p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
  font-size: 0.98rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  margin-top: clamp(40px, 5vw, 64px);
}
.impact-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

/* Der Ergebnis-Kasten: bewusst das hellste Element der Sektion */
.results {
  position: relative;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 38px 40px 40px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.results::before {
  content: "";
  position: absolute;
  left: 0; top: 28px; bottom: 28px;
  width: 5px;
  border-radius: 0 4px 4px 0;
  background: var(--blue);
}
.results-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 8px 14px;
  border-radius: 999px;
}
.results-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.results-list li {
  position: relative;
  padding-left: 44px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.3;
  color: var(--ink);
}
.results-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 6px 14px rgba(0, 100, 171, 0.3);
}
.results-cta {
  align-self: flex-start;
  margin-top: 30px;
}

@media (max-width: 1100px) {
  .impact-grid { grid-template-columns: 1fr; }
  .impact-media img { min-height: 0; aspect-ratio: 16 / 9; }
}
@media (max-width: 960px) {
  .stats { grid-template-columns: 1fr; gap: 14px; }
  .stat { padding: 22px 22px 20px; display: grid; grid-template-columns: auto 1fr; gap: 0 20px; align-items: center; }
  .stat p { margin: 0; }
}
@media (max-width: 640px) {
  .results { padding: 28px 24px 30px; }
  .results-list li { padding-left: 40px; }
  .results-cta { width: 100%; }
}

/* ---------- Kundenstimme (hervorgehobener Kasten) ---------- */
.feature-quote {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--grey-50);
}
.feature-quote-card {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4.5vw, 56px) clamp(24px, 5vw, 64px) clamp(30px, 4vw, 48px);
  box-shadow:
    0 2px 6px rgba(6, 58, 94, 0.05),
    0 24px 60px rgba(6, 58, 94, 0.14);
  border: 1px solid rgba(0, 100, 171, 0.08);
}
/* dezenter blauer Akzent oben */
.feature-quote-card::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--blue);
}
.feature-quote-card .eyebrow { margin-bottom: 18px; }
.feature-quote-text {
  position: relative;
  margin: 0;
  padding: 0;
}
.feature-quote-mark {
  width: 44px; height: 44px;
  fill: var(--blue);
  opacity: .9;
  margin-bottom: 14px;
}
.feature-quote-text p {
  margin: 0;
  font-size: clamp(1.1rem, 1.45vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink);
}
.feature-quote-text p + p { margin-top: 18px; }
.feature-quote-text strong { font-weight: 600; color: var(--blue-deep); }

.feature-quote-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
}
.feature-quote-person { display: flex; flex-direction: column; }
.feature-quote-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--ink);
}
.feature-quote-role {
  font-size: 0.92rem;
  color: var(--grey-500);
  margin-top: 2px;
}
.feature-quote-logo {
  height: 46px;
  width: auto;
}

@media (max-width: 640px) {
  .feature-quote-card { border-radius: var(--radius-md); }
  .feature-quote-logo { height: 38px; }
}

/* ---------- Warum HI-MAP (Kacheln) ---------- */
.reasons {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--white);
}
.reasons-head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.reasons-copy .eyebrow { margin-bottom: 14px; }
.reasons-copy h2 { max-width: 640px; }
/* flaches Querformat, damit der Kopf nicht höher wird als die Headline */
.reasons-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(6, 58, 94, 0.14);
}

.tiles {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}
.tile { grid-column: span 2; }
/* Fünf Kacheln: 3 oben, 2 unten mittig */
.tile:nth-last-child(2):nth-child(3n+1) { grid-column: 2 / span 2; }
.tile {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.tile:hover {
  transform: translateY(-3px);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 100, 171, 0.25);
}
.tile-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--blue);
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(0, 100, 171, 0.25);
  margin-bottom: 20px;
}
.tile-icon svg {
  width: 26px; height: 26px;
  fill: none; stroke: var(--white); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.tile-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 10px;
}
.tile h3 {
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}
.tile-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.tile p {
  margin: 0;
  color: var(--grey-600);
  line-height: 1.65;
  font-size: 0.97rem;
}

@media (max-width: 1100px) {
  .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tile, .tile:nth-last-child(2):nth-child(3n+1) { grid-column: auto; }
}
@media (max-width: 960px) {
}
@media (max-width: 640px) {
  .tiles { grid-template-columns: 1fr; gap: 14px; }
  .tile { padding: 22px 20px 20px; }
}

/* ---------- Das HI-MAP Team ---------- */
.team {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--grey-50);
  border-top: 1px solid var(--grey-200);
}
.team-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 52px); }
.team-head .eyebrow { margin-bottom: 14px; }

.members {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.member {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 30px 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.member:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(0, 100, 171, 0.25); }
.member-head {
  display: flex;
  align-items: center;
  gap: 22px;
}
.member-head img {
  flex: 0 0 auto;
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 5px var(--grey-200), 0 10px 24px rgba(6, 58, 94, 0.12);
}
.member h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.member-role {
  margin: 0;
  color: var(--grey-600);
  line-height: 1.55;
  font-size: 0.95rem;
}
.member-quote {
  margin: 24px 0 0;
  padding: 20px 0 0 22px;
  border-top: 1px solid var(--grey-200);
  position: relative;
}
.member-quote::before {
  content: "";
  position: absolute;
  left: 0; top: 22px; bottom: 2px;
  width: 3px;
  border-radius: 2px;
  background: var(--blue);
}
.member-quote p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
}
.member-quote p::before { content: "„"; }
.member-quote p::after { content: "“"; }

@media (max-width: 960px) {
  .members { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .member { padding: 22px 20px 22px; }
  .member-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .member-head img { width: 84px; height: 84px; }
  .member h3 { font-size: 1.2rem; }
}

/* ---------- Navigation ---------- */
/* Anker: Sektions-Innenabstand herausrechnen, damit die Überschrift knapp unter dem Header landet */
section[id] { scroll-margin-top: calc(var(--header-h) + 40px - clamp(72px, 9vw, 120px)); }
#testimonials { scroll-margin-top: calc(var(--header-h) + 40px - clamp(56px, 7vw, 96px)); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 18px;
}
.site-nav a:not(.btn) {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--grey-800);
  transition: color .15s ease, background-color .15s ease;
}
.site-nav a:not(.btn):hover { color: var(--blue); background: rgba(0, 100, 171, 0.06); }
.site-nav-cta { display: none; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1.5px solid var(--grey-300);
  border-radius: 10px;
  background: var(--white);
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1240px) {
  .site-nav a:not(.btn) { padding: 8px 9px; font-size: 0.88rem; }
}
@media (max-width: 1100px) {
  .site-nav {
    position: absolute;
    top: calc(var(--header-h) + 8px);
    left: var(--gutter); right: var(--gutter);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.btn) { padding: 12px 14px; font-size: 1rem; }
  .site-nav-cta { display: inline-flex; margin-top: 10px; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .site-header.is-open { background: rgba(255, 255, 255, 0.96); }
}

/* ---------- Fallstudie ---------- */
.casestudy {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--white);
}
.casestudy-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.cover-link {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(6, 58, 94, 0.08), 0 28px 64px rgba(6, 58, 94, 0.22);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid var(--grey-200);
}
.cover-link:hover { transform: translateY(-4px); box-shadow: 0 2px 6px rgba(6, 58, 94, 0.08), 0 36px 74px rgba(6, 58, 94, 0.28); }
.cover-link img { width: 100%; display: block; }
.cover-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--grey-500);
}
.cover-caption svg { width: 16px; height: 16px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.casestudy-copy .eyebrow { margin-bottom: 14px; }
.casestudy-copy h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); max-width: 680px; }

.casestudy-facts {
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
}
.casestudy-facts div { margin: 0; }
.casestudy-facts dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.casestudy-facts dd { margin: 3px 0 0; font-weight: 500; color: var(--ink); line-height: 1.45; }

.casestudy-quote {
  margin: 26px 0 0;
  padding: 0 0 0 20px;
  border-left: 3px solid var(--blue);
}
.casestudy-quote p { margin: 0; font-size: 1.05rem; line-height: 1.65; color: var(--ink); font-style: italic; }
.casestudy-quote footer { margin-top: 10px; font-size: 0.92rem; color: var(--grey-600); }
.casestudy-quote footer strong { color: var(--ink); font-weight: 600; }

.casestudy-results { margin-top: 26px; }
.casestudy-results-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 10px;
}
.casestudy-results ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.casestudy-results li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 0.92rem;
}
.casestudy-results li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E");
  background-size: 11px 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.casestudy-copy .btn { margin-top: 30px; }

/* ---------- Kennen Sie diese Fragen ---------- */
.questions {
  padding: clamp(72px, 9vw, 120px) 0;
  background: linear-gradient(180deg, var(--blue-soft) 0%, #f3f8fc 100%);
  border-top: 1px solid rgba(0, 100, 171, 0.08);
}
.questions-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.questions-media { position: sticky; top: calc(var(--header-h) + 24px); }
.questions-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(6, 58, 94, 0.16);
}
.questions-copy .eyebrow { margin-bottom: 14px; }
.questions-copy h2 { max-width: 640px; }

.bubbles {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.bubbles li {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 100, 171, 0.12);
  border-radius: 14px 14px 14px 4px;
  padding: 14px 18px 14px 50px;
  color: var(--ink);
  line-height: 1.55;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(6, 58, 94, 0.05);
}
.bubbles li::before {
  content: "";
  position: absolute;
  left: 16px; top: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230064ab' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.5 9a2.5 2.5 0 1 1 3.5 2.3c-.7.4-1 1-1 1.7'/%3E%3Ccircle cx='12' cy='17' r='.6' fill='%230064ab'/%3E%3C/svg%3E");
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center;
}

.questions-answer {
  margin-top: clamp(36px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: 30px 36px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(0, 100, 171, 0.14);
  box-shadow: 0 20px 50px rgba(6, 58, 94, 0.10);
  border-left: 5px solid var(--blue);
}
.questions-answer p {
  margin: 0;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink);
  max-width: 760px;
}
.questions-answer strong { color: var(--blue); font-weight: 600; }

/* ---------- Preise ---------- */
.pricing {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--white);
}
.pricing-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 48px); }
.pricing-head .eyebrow { margin-bottom: 14px; }
.prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.price {
  position: relative;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.price:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(0, 100, 171, 0.25); }
.price--featured {
  background: var(--white);
  border-color: rgba(0, 100, 171, 0.35);
  box-shadow: 0 20px 50px rgba(6, 58, 94, 0.12);
}
.price--featured::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--blue);
}
.price-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.price--featured .price-icon { background: var(--blue); border-color: var(--blue); box-shadow: 0 6px 16px rgba(0, 100, 171, 0.25); }
.price-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.price--featured .price-icon svg { stroke: var(--white); }
.price h3 { font-size: 1.15rem; font-weight: 600; margin: 0 0 14px; }
.price-amount {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--blue);
}
.price-unit { margin: 8px 0 0; font-weight: 500; color: var(--ink); }
.price-note {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--grey-200);
  color: var(--grey-600);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* ---------- Kontakt ---------- */
.contact {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--grey-50);
  border-top: 1px solid var(--grey-200);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}
.contact-copy .eyebrow { margin-bottom: 14px; }
.contact-lead { margin: 18px 0 0; color: var(--grey-600); line-height: 1.65; font-size: 1.05rem; max-width: 460px; }

.contact-person { margin-top: 34px; }
.contact-person-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 10px;
}
.contact-person-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
}
.contact-avatar {
  flex: 0 0 auto;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--blue-soft);
  border: 2px dashed rgba(0, 100, 171, 0.35);
  display: grid; place-items: center;
}
.contact-avatar svg { width: 36px; height: 36px; fill: none; stroke: var(--blue); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-name { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; margin-bottom: 6px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--grey-600);
  font-size: 0.95rem;
  line-height: 1.7;
}
.contact-line:hover { color: var(--blue); }
.contact-line svg { width: 16px; height: 16px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 20px 50px rgba(6, 58, 94, 0.08);
  display: grid;
  gap: 18px;
}
.form-row { display: grid; gap: 6px; }
.form-row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-row--2 > div { display: grid; gap: 6px; }
.contact-form label { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.contact-form label > span[aria-hidden] { color: var(--blue); }
.form-consent span[aria-hidden] { color: var(--blue); }
.contact-form input,
.contact-form select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: inherit;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2354595f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 100, 171, 0.14);
}
.contact-form input.is-invalid,
.contact-form select.is-invalid { border-color: #c0392b; }
.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.86rem !important;
  font-weight: 400 !important;
  color: var(--grey-600) !important;
  line-height: 1.55;
}
.form-consent input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; accent-color: var(--blue); }
.form-consent a { color: var(--blue); text-decoration: underline; }
.form-submit { justify-self: start; }
.form-hint { margin: -6px 0 0; font-size: 0.8rem; color: var(--grey-500); }
.form-success {
  margin: 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: #e8f6ee;
  border: 1px solid #bfe3cf;
  color: #1e6b3a;
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}
.faq-head { position: sticky; top: calc(var(--header-h) + 24px); }
.faq-head .eyebrow { margin-bottom: 14px; }
.faq-lead { margin: 18px 0 0; color: var(--grey-600); line-height: 1.65; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: rgba(0, 100, 171, 0.3); box-shadow: var(--shadow-sm); background: var(--white); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--grey-300);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230064ab' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .25s ease, background-color .2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--blue-soft);
  border-color: rgba(0, 100, 171, 0.3);
}
.faq-body { padding: 0 22px 22px; }
.faq-body p { margin: 0; color: var(--grey-600); line-height: 1.7; max-width: 720px; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 34px 0;
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.8);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 14px; font-size: 0.85rem; }
.footer-logo { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.footer-nav { display: flex; gap: 18px; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--white); text-decoration: underline; }
.footer-copy { margin: 0; font-size: 0.85rem; }

/* ---------- Responsive für neue Sektionen ---------- */
@media (max-width: 1100px) {
  .prices { grid-template-columns: 1fr; max-width: 560px; }
}
@media (max-width: 960px) {
  .casestudy-grid { grid-template-columns: 1fr; }
  .casestudy-cover { max-width: 380px; }
  .questions-grid { grid-template-columns: 1fr; }
  .questions-media { position: static; max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-head { position: static; }
  .reasons-head { grid-template-columns: 1fr; }
  .reasons-media { max-width: 560px; }
  .reasons-media img { height: 200px; }
}
@media (max-width: 640px) {
  .casestudy-facts { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }
  .form-submit { width: 100%; }
  .questions-answer { padding: 22px 20px; }
  .questions-answer .btn { width: 100%; }
  .bubbles li { padding: 12px 14px 12px 44px; font-size: 0.95rem; }
  .faq-item summary { padding: 16px 16px; font-size: 1rem; }
  .faq-body { padding: 0 16px 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Anfrage-Pop-up ---------- */
.modal {
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  width: min(1080px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  overflow: auto;
  background: var(--grey-50);
  color: var(--ink);
  box-shadow: 0 40px 100px rgba(6, 58, 94, 0.35);
}
.modal::backdrop {
  background: rgba(6, 58, 94, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal[open] { animation: modal-in .22s ease-out; }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(.985); }
  to { opacity: 1; transform: none; }
}
.modal-inner { padding: clamp(28px, 4vw, 48px); }
.modal .contact-grid { gap: clamp(28px, 4vw, 64px); }
.modal .container { padding: 0; max-width: none; }
.modal .contact-copy h2 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.modal .contact-person { margin-top: 26px; }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--grey-200);
  background: var(--white);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background .15s ease, border-color .15s ease;
}
.modal-close:hover { border-color: var(--blue); }
.modal-close svg { width: 18px; height: 18px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; }
body:has(dialog.modal[open]) { overflow: hidden; }
@media (max-width: 640px) {
  .modal { width: calc(100vw - 16px); max-height: calc(100dvh - 16px); border-radius: var(--radius-md); }
  .modal-inner { padding: 64px 18px 24px; }
  .modal-close { top: 12px; right: 12px; }
}
