@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v18-latin_latin-ext-100.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v18-latin_latin-ext-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v18-latin_latin-ext-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v18-latin_latin-ext-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v18-latin_latin-ext-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v18-latin_latin-ext-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v18-latin_latin-ext-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v18-latin_latin-ext-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-v32-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-v32-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --site-max-width: 1536px;
  --site-gutter: clamp(20px, 2.2vw, 32px);
  --header-offset: 134px;
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #EFF6FF;
  --primary-soft: #F0F5FF;
  --text: #0F172A;
  --text-soft: #475569;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-darker: #0F172A;
  --bg-darkest: #060E1F;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 20px 50px rgba(15, 23, 42, 0.12);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}
body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.hidden {
  display: none !important;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
#insights,
#angebot,
#leistungen,
#webinare,
#team {
  scroll-margin-top: var(--header-offset);
}
.container {
  width: min(100%, var(--site-max-width));
  margin: 0 auto;
  padding: 0 var(--site-gutter);
}
.is-hidden { display: none !important; }
.svg-sprite {
  position: absolute; width: 0; height: 0;
  overflow: hidden; pointer-events: none;
}

/* ================== NAV ================== */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-top: 5px solid var(--primary);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: min(100%, var(--site-max-width));
  min-height: 102px;
  padding: 20px var(--site-gutter) 18px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  display: block;
  width: auto;
  height: 54px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 2px 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  transition: color 0.15s;
  margin: 0 10px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--primary);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 182px;
  min-height: 40px;
  padding: 11px 26px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.24);
}
.nav-cta:active { transform: translateY(1px); }
.nav-cta svg { width: 16px; height: 16px; }
@media (max-width: 900px) {
  :root {
    --header-offset: 110px;
  }
  .nav-inner {
    min-height: 86px;
    padding: 16px var(--site-gutter);
  }
  .logo-img { height: 44px; }
  .nav-links { display: none; }
}

/* ================== HERO ================== */
.hero {
  position: relative;
  padding: 0 0 36px;
  background: #fff;
}
.hero-shell {
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 818px;
  padding: 94px 68px 54px;
  isolation: isolate;
}
.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-shell::before {
  background: linear-gradient(90deg,
      #f6f6f6 34%,
      rgba(246, 246, 246, 1) 34%,
      rgba(246, 246, 246, 0.7) 37%,
      rgba(246, 246, 246, 0.3) 40%,
      rgba(246, 246, 246, 0.21) 48%,
      rgba(246, 246, 246, 0.1) 74%,
      rgba(246, 246, 246, 0) 100%)
}
.hero-shell::after {
  background:
    radial-gradient(circle at 31% 54%, rgba(255, 255, 255, 0.99) 0, rgba(255, 255, 255, 0.95) 16%, rgba(255, 255, 255, 0.76) 29%, rgba(255, 255, 255, 0.26) 41%, rgba(255, 255, 255, 0) 52%);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 135% 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 670px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: start;
}
.hero-text h1 {
  max-width: 760px;
  margin-bottom: 32px;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.hero-title-line {
  display: block;
}
.hero-text h1 .accent {
  color: var(--primary);
}
.hero-typed {
  display: inline-block;
  min-width: 14ch;
}
.hero-text p.subtitle {
  max-width: 650px;
  margin-bottom: 2px;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.38;
  color: #111111;
}
.hero-text p.tagline {
  margin-bottom: 36px;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.38;
  color: #111111;
}
.hero-ctas {
  display: flex;
  align-items: center;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 214px;
  min-height: 46px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-family: "Roboto", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.125;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.hero-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}
.hero-btn:active {
  transform: translateY(1px);
}
.hero-features {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  max-width: 980px;
}
.hero-feature {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  padding: 58px 22px 0 0;
}
.hero-feature-separator {
  flex: 0 0 auto;
  align-self: flex-start;
  width: 1px;
  height: 72px;
  margin-top: 50px;
  background: rgba(148, 163, 184, 0.65);
}
.hero-feature-mark {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary);
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
}
.hero-feature h2 {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.hero-feature p {
  max-width: 290px;
  display: -webkit-box;
  overflow: hidden;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(17, 17, 17, 0.92);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
@media (max-width: 1200px) {
  .hero-shell {
    min-height: 760px;
    padding: 84px 40px 44px;
  }
  .hero-shell::before {
    background:
      linear-gradient(90deg,
        #f6f6f6 0%,
        rgba(246, 246, 246, 0.99) 22%,
        rgba(246, 246, 246, 0.94) 38%,
        rgba(246, 246, 246, 0.72) 52%,
        rgba(246, 246, 246, 0.28) 66%,
        rgba(246, 246, 246, 0.05) 76%,
        rgba(246, 246, 246, 0) 100%);
  }
  .hero-shell::after {
    background:
      radial-gradient(circle at 33% 54%, rgba(255, 255, 255, 0.985) 0, rgba(255, 255, 255, 0.92) 18%, rgba(255, 255, 255, 0.56) 33%, rgba(255, 255, 255, 0.08) 46%, rgba(255, 255, 255, 0) 56%);
  }
  .hero-content {
    min-height: 620px;
  }
  .hero-features {
    gap: 24px;
    max-width: 920px;
  }
}
@media (max-width: 900px) {
  .hero {
    padding-bottom: 28px;
  }
  .hero-shell {
    min-height: auto;
    padding: 72px 30px 38px;
  }
  .hero-shell::before {
    background:
      linear-gradient(180deg,
        rgba(246, 246, 246, 0.98) 0%,
        rgba(246, 246, 246, 0.92) 28%,
        rgba(246, 246, 246, 0.68) 52%,
        rgba(246, 246, 246, 0.36) 100%);
  }
  .hero-shell::after {
    background:
      radial-gradient(circle at 30% 32%, rgba(255, 255, 255, 0.94) 0, rgba(255, 255, 255, 0.64) 28%, rgba(255, 255, 255, 0) 58%);
  }
  .hero-bg-image {
    object-position: 62% center;
    opacity: 0.64;
  }
  .hero-content {
    min-height: 0;
    gap: 56px;
  }
  .hero-text h1 {
    max-width: 620px;
    font-size: clamp(40px, 7vw, 58px);
  }
  .hero-text p.subtitle,
  .hero-text p.tagline {
    max-width: 580px;
  }
  .hero-features {
    max-width: none;
    flex-wrap: wrap;
    gap: 26px 18px;
  }
  .hero-feature {
    flex: 1 1 calc(50% - 9px);
    padding-top: 48px;
  }
  .hero-feature-separator {
    display: none;
  }
  .hero-feature h2 {
    white-space: normal;
  }
  .hero-feature p {
    max-width: none;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
  }
  .hero-feature:last-of-type {
    flex-basis: 100%;
  }
}
@media (max-width: 640px) {
  .hero-shell {
    padding: 54px 24px 30px;
  }
  .hero-shell::before {
    background:
      linear-gradient(180deg,
        rgba(246, 246, 246, 0.99) 0%,
        rgba(246, 246, 246, 0.95) 36%,
        rgba(246, 246, 246, 0.8) 66%,
        rgba(246, 246, 246, 0.56) 100%);
  }
  .hero-bg-image {
    object-fit: cover;
    object-position: 68% center;
    opacity: 0.48;
  }
  .hero-text h1 {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 1.12;
  }
  .hero-title-line {
    font-size: 0.96em;
  }
  .hero-typed {
    min-width: 0;
  }
  .hero-text p.subtitle,
  .hero-text p.tagline {
    font-size: 19px;
    line-height: 1.42;
  }
  .hero-text p.tagline {
    margin-bottom: 28px;
  }
  .hero-btn {
    width: 100%;
    min-width: 0;
  }
  .hero-features {
    gap: 24px;
  }
  .hero-feature {
    flex-basis: 100%;
  }
  .hero-feature h2,
  .hero-feature p {
    max-width: none;
  }
}

/* ================== LOGOS ================== */
.logos-section { padding: 32px 0 56px; border-bottom: 1px solid var(--border); }
.logos-slider { overflow: hidden; opacity: 0.65; }
.logos-slider .swiper-wrapper { align-items: center; }
.logo-item {
  width: auto !important;
  min-width: 120px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.logo-item img {
  max-height: 34px; max-width: 140px; width: auto; object-fit: contain;
  filter: grayscale(100%); opacity: 0.72;
}
@media (max-width: 640px) {
  .logo-item {
    min-width: 96px;
    padding: 0 18px;
  }
  .logo-item img {
    max-height: 28px;
    max-width: 120px;
  }
}

/* ================== SECTION COMMONS ================== */
section { padding: 80px 0; }
.section-eyebrow {
  display: block;
  margin-bottom: 28px;
  color: #000000;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.72px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}
.section-title {
  text-align: center; font-size: 38px; font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 14px; line-height: 1.15;
}
.section-sub {
  text-align: center; color: #000000;
  font-size: 26px; font-weight: 300; max-width: 640px; margin: -16px auto 48px; line-height: 1.6;
}
.section-sub.max {
   max-width: 840px;
}

/* ================== INSIGHTS ================== */
.insights-section {
  background: var(--bg-soft);
}
.linkedin-mark {
  display: block; width: 18px; height: 18px;
  fill: currentColor; color: currentColor;
  flex-shrink: 0;
}
.insights-head,
.insights-grid {
  display: none;
}
.insights-shell {
  overflow: hidden;
  padding-bottom: 20px;
}
.insights-topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 0px;
}

.insights-nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin: 0 0 0 auto;
}
.insights-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.insights-nav-btn:hover,
.insights-nav-btn:focus-visible {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.insights-nav-btn.swiper-button-disabled {
  opacity: 0.42;
  cursor: default;
  background: transparent;
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.18);
}
.kundenstimmen-nav {
  transition: opacity 0.18s ease;
}
.kundenstimmen-nav.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.insights-nav-btn svg {
  width: 20px;
  height: 18px;
}
.insights-slider {
  overflow: visible;
}
.insights-slider .swiper-wrapper {
  align-items: center;
}
.insights-slider .swiper-slide {
  width: 283px;
  height: 335px;
  padding: 0;
  transition: transform 0.3s ease;
  box-shadow: none !important;
  filter: none !important;
}
.insights-slider .swiper-slide.swiper-slide-active {
  width: 353px;
  height: 385px;
  padding: 35px 26px;
}
.insight-card {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  background: #2563EB;
  color: #fff;
  overflow: hidden;
  box-shadow: none !important;
  transform: scale(1);
  transform-origin: center;
  filter: none !important;
  transition: background 0.3s ease, padding 0.3s ease, transform 0.3s ease;
}
.insights-slider .swiper-slide-active .insight-card {
  background: #18244D;
  padding: 28px 26px 24px;
  transform: scale(1.247);
}
.insights-slider .swiper-slide-shadow-left,
.insights-slider .swiper-slide-shadow-right,
.insights-slider .swiper-slide-shadow-top,
.insights-slider .swiper-slide-shadow-bottom {
  display: none !important;
}
.insight-linkedin-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.insight-media-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  color: #fff;
  fill: currentColor;
  display: block;
}
.insight-card-category {
  display: block;
  padding-right: 34px;
  color: #fff;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 1.15;
  text-transform: uppercase;
}
.insight-card-title {
  margin-top: 16px;
  color: #fff;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
.insight-card-copy {
  margin-top: 10px;
  color: #fff;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.42;
  opacity: 0.9;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  line-clamp: 7;
}
.insight-card-link {
  margin: auto 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
}
.insight-card-link-arrow {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 10px;
  flex-shrink: 0;
}
.insight-card-link-arrow::before,
.insight-card-link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
}
.insight-card-link-arrow::before {
  left: 0;
  width: 24px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}
.insight-card-link-arrow::after {
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 1100px) {
  .section-eyebrow {
    font-size: 32px;
  }
  .insights-slider .swiper-slide {
    width: 250px;
    height: 250px;
    padding: 30px;
  }
  .insight-card {
    padding: 22px 18px 18px;
  }
  .insights-slider .swiper-slide-active .insight-card {
    padding: 24px 22px 20px;
  }
  .insight-card-category {
    font-size: 16px;
    letter-spacing: 1.6px;
  }
  .insight-card-title {
    font-size: 15px;
  }
  .insight-card-copy {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .section-eyebrow {
    font-size: 28px;
    letter-spacing: 0.56px;
  }
  .insights-topbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 26px;
  }
  .insights-topbar .section-eyebrow {
    width: 100%;
    text-align: center;
  }
  .insights-nav {
    align-self: flex-end;
  }
  .insights-slider .swiper-slide,
  .insights-slider .swiper-slide {
    width: min(78vw, 320px);
    height: min(78vw, 320px);
    padding: 24px;
  }
  .insight-card,
  .insights-slider .swiper-slide-active .insight-card {
    padding: 20px 18px 18px;
  }
  .insight-linkedin-badge {
    top: 16px;
    right: 16px;
    font-size: 18px;
  }
  .insight-media-badge {
    top: 16px;
    right: 16px;
    width: 22px;
    height: 22px;
  }
  .insight-card-category {
    font-size: 15px;
    letter-spacing: 1.5px;
  }
  .insight-card-title {
    font-size: 15px;
  }
  .insight-card-copy {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .section-eyebrow {
    font-size: 24px;
    letter-spacing: 0.48px;
  }
  .insights-nav-btn {
    width: 40px;
    height: 40px;
  }
  .insights-slider .swiper-slide,
  .insights-slider .swiper-slide {
    width: min(84vw, 300px);
    height: min(84vw, 300px);
    padding: 20px;
  }
  .insight-card-title {
    font-size: 14px;
  }
  .insight-card-copy {
    font-size: 12px;
  }
  .insights-slider .swiper-slide-active .insight-card {
    transform: scale(1.14);
  }
}

/* ================== KUNDENSTIMMEN ================== */
.kundenstimmen-section {
  position: relative;
  overflow-x: clip;
}
.kundenstimmen-shell {
  position: relative;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  padding: 42px calc(104px + 50vw - 50%) 56px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0, rgba(255, 255, 255, 1) 128px, rgba(248, 250, 252, 0.96) 128px, rgba(248, 250, 252, 0.96) 100%);
}
.kundenstimmen-stage {
  position: relative;
}
.kundenstimmen-main {
  width: min(100%, 860px);
  margin: 0 auto;
}
.kundenstimmen-avatars {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin-bottom: 42px;
}
.kunden-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.kunden-avatar-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 1;
  transition: opacity 0.24s ease;
}
.kunden-avatar-prev,
.kunden-avatar-next {
  justify-content: center;
}
.kunden-avatar-prev .kunden-avatar-image,
.kunden-avatar-next .kunden-avatar-image {
  width: 132px;
  height: 132px;
  opacity: 0.95;
}
.kunden-avatar-active .kunden-avatar-image {
  width: 194px;
  height: 194px;
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.14);
}
.kunden-avatar-image.is-fading,
.kunden-avatar-prev .kunden-avatar-image.is-fading,
.kunden-avatar-next .kunden-avatar-image.is-fading,
.kunden-avatar-active .kunden-avatar-image.is-fading {
  opacity: 0;
}
.kundenstimmen-fade {
  overflow: hidden;
  width: 100%;
}
.kundenstimmen-fade .swiper-slide {
  height: auto;
}
.kundenstimmen-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.kunden-quote {
  max-width: 780px;
  margin: 0 auto;
  color: #000000;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: clamp(36px, 4vw, 30px);
  font-weight: 100;
  line-height: 1.24;
}
.kunden-meta {
  margin-top: 26px;
}
.kunden-name {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.kunden-role {
  margin-top: 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
.kunden-company {
  margin-top: 6px;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
.kundenstimmen-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-8px);
  z-index: 3;
}
.kundenstimmen-prev {
  left: 0;
}
.kundenstimmen-next {
  right: 0;
}
@media (max-width: 1100px) {
  .kundenstimmen-shell {
    padding: 38px calc(78px + 50vw - 50%) 52px;
  }
  .kunden-avatar-prev .kunden-avatar-image,
  .kunden-avatar-next .kunden-avatar-image {
    width: 112px;
    height: 112px;
  }
  .kunden-avatar-active .kunden-avatar-image {
    width: 168px;
    height: 168px;
  }
  .kunden-quote {
    max-width: 680px;
  }
}
@media (max-width: 767px) {
  .kundenstimmen-shell {
    padding: 28px 24px 44px;
    background: #ffffff;
  }
  .kundenstimmen-avatars {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
  }
  .kunden-avatar-prev,
  .kunden-avatar-next {
    display: none;
  }
  .kunden-avatar-active .kunden-avatar-image {
    width: 148px;
    height: 148px;
  }
  .kunden-quote {
    font-size: 30px;
    line-height: 1.28;
  }
  .kunden-name {
    font-size: 16px;
  }
  .kunden-role,
  .kunden-company {
    font-size: 15px;
  }
  .kundenstimmen-nav {
    top: auto;
    bottom: 0;
    transform: none;
  }
  .kundenstimmen-prev {
    left: calc(50% - 52px);
  }
  .kundenstimmen-next {
    right: calc(50% - 52px);
  }
}
@media (max-width: 480px) {
  .kundenstimmen-shell {
    padding: 24px 18px 40px;
  }
  .kunden-avatar-active .kunden-avatar-image {
    width: 126px;
    height: 126px;
  }
  .kunden-quote {
    font-size: 24px;
  }
}

/* ================== STATS ================== */
.stats-section { padding: 0 0 80px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.stat { text-align: center; padding: 16px 8px; }
.stat-number {
  font-size: 52px; font-weight: 800; color: var(--primary);
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 12px;
}
.stat-label { font-size: 18px; font-weight: 300; color: var(--primary); line-height: 1.3; hyphens: manual; padding: 0 10px; }
@media (max-width: 1100px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 650px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 452px) { .stats-grid { grid-template-columns: repeat(1, 1fr); } }

/* ================== PROZESS-TIMELINE ================== */
.engagement { background: var(--bg-soft); padding: 80px 0; }
.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding: 0 4%;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(4% + 56px);
  right: calc(4% + 56px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column; align-items: center;
}
.process-num {
  width: 56px; height: 56px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  border: 6px solid var(--bg-soft);
  position: relative;
  z-index: 2;
}
.process-icon {
  width: 56px; height: 56px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-top: 24px;
  margin-bottom: 18px;
}
.process-icon svg { width: 46px; height: 46px; }
.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
  letter-spacing: 0.8px;
}
.process-step p {
  font-size: 14px;
  color: var(--primary);
  line-height: 1.55;
  max-width: 200px;
  font-weight: 300;
}
.process-step .hide-mobile {
  display: none;
}
@media (min-width: 960px) {
  .process-step .hide-mobile {
    display: initial;
  }
}
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 32px;
  }
  .process-steps::before { display: none; }
  .process-step { flex-direction: row; gap: 16px; text-align: left; align-items: flex-start; }
  .process-step .process-num {
    flex-shrink: 0; margin-top: 4px;
    width: 44px; height: 44px; font-size: 16px; border-width: 0;
  }
  .process-icon { display: none; }
  .process-step p { max-width: none; }
}

/* ================== CONFIGURATOR ================== */
.angebot {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--primary) 0 360px, #fff 360px 100%);
}
.angebot > .container {
  position: relative;
  z-index: 1;
}
.angebot > .container::before,
.angebot > .container::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.angebot > .container::before {
  top: 0;
  left: 0;
  width: 131px;
  height: 116px;
  background-image: url("../img/aio-arrows.svg");
}
.angebot > .container::after {
  top: 40px;
  right: 0;
  width: min(507px, 38vw);
  aspect-ratio: 507 / 202;
  background-image: url("../img/aio-logo-bright.svg");
}
.angebot .section-eyebrow,
.angebot .section-sub,
.angebot .conf-grid {
  position: relative;
  z-index: 1;
}
.angebot .section-eyebrow,
.angebot .section-sub {
  color: #fff;
}
.angebot .section-eyebrow {
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.angebot .section-sub {
  max-width: 780px;
  margin-bottom: 95px;
}
.conf-grid {
  width: min(100%, 1068px);
  margin: 0 auto;
}
.conf-questions,
.conf-output {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.16);
}
.conf-questions {
  min-height: 404px;
  padding: 60px clamp(24px, 7vw, 92px) 24px;
  overflow: visible;
  transform-origin: center top;
}
.conf-questions.is-exiting {
  overflow: hidden;
  animation: confWizardWipe 0.68s cubic-bezier(0.7, 0, 0.2, 1) forwards;
}
.conf-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 56px;
}
.conf-step {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(37, 99, 235, 0.55);
  border-radius: 50%;
  color: var(--primary);
  background: #fff;
  font-size: 17px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.conf-step:hover,
.conf-step:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  outline: none;
}
.conf-step.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.conf-step.is-complete:not(.is-active) {
  background: var(--primary-light);
  border-color: var(--primary);
}
.conf-step-line {
  width: 46px;
  height: 1px;
  background: rgba(37, 99, 235, 0.65);
}
.question {
  display: flex;
  justify-content: center;
}
.question[hidden] {
  display: none;
}
.q-icon-wrap {
  display: none;
}
.q-body {
  width: 100%;
  min-width: 0;
}
.q-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 58px;
  color: var(--primary);
}
.q-num {
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.q-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
}
.q-tooltip-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: help;
  outline: none;
}
.q-tooltip-trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 4px;
}
.q-info {
  width: 18px;
  height: 18px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.q-info svg {
  width: 18px;
  height: 18px;
}
.q-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  width: min(520px, calc(100vw - 48px));
  background: #fff;
  color: #000;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  padding: 12px 14px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  pointer-events: none;
  z-index: 30;
}
.q-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #fff;
}
.q-tooltip-trigger:hover .q-tooltip,
.q-tooltip-trigger:focus .q-tooltip,
.q-tooltip-trigger:focus-within .q-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.q-hint {
  margin-top: 12px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
.options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.options-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.option {
  min-height: 130px;
  background: #f8fafc;
  border: 1.5px solid transparent;
  border-radius: 4px;
  padding: 28px 34px;
  text-align: left;
  position: relative;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.option:hover {
  border-color: rgba(37, 99, 235, 0.45);
  background: #fff;
  transform: translateY(-1px);
}
.option.selected {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
}
.option.selected::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--primary);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 8.5L7 11.5L12 5.5' stroke='white' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
}
.option-title {
  color: #111827;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
}
.option-desc {
  margin-top: 4px;
  color: #333842;
  font-size: 16px;
  line-height: 1.45;
}
.conf-check-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.conf-check-actions[hidden] {
  display: none;
}
.conf-check-btn {
  min-width: 210px;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.18s, opacity 0.18s, transform 0.18s;
}
.conf-check-btn:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.conf-check-btn:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}
.disclaimer {
  display: none;
}
.conf-output {
  width: min(100%, 932px);
  margin: 0 auto;
  padding: 36px;
  opacity: 0;
  transform: translateY(28px);
}
.conf-output[hidden] {
  display: none;
}
.conf-output.is-revealed {
  animation: confOutputReveal 0.58s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.output-label {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.output-intro {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 24px;
  line-height: 1.55;
}
.output-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.output-row:first-child {
  border-top: none;
  padding-top: 4px;
}
.output-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.output-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.7;
}
.output-row-body {
  flex: 1;
  min-width: 0;
}
.output-row-label {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 2px;
}
.output-row-value {
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
}
.output-row-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}
.empfehlung {
  margin-top: 18px;
  background: var(--primary-soft);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
}
.empfehlung svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.empfehlung-body {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-soft);
}
.empfehlung-body strong {
  color: var(--text);
  display: block;
  margin-bottom: 3px;
}
.conf-result-actions {
  display: grid;
  grid-template-columns: 1fr 52px;
  gap: 12px;
  margin-top: 24px;
}
.conf-cta {
  width: 100%;
  min-height: 52px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.15s;
}
.conf-cta:hover:not(:disabled) {
  background: var(--primary-dark);
}
.conf-cta:disabled {
  background: #94A3B8;
  cursor: not-allowed;
  opacity: 0.7;
}
.conf-cta svg,
.conf-reset svg {
  width: 18px;
  height: 18px;
}
.conf-reset {
  width: 52px;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--primary);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.conf-reset:hover,
.conf-reset:focus-visible {
  border-color: var(--primary);
  background: var(--primary-light);
  outline: none;
}
.privacy {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.privacy svg {
  width: 14px;
  height: 14px;
}
@keyframes confWizardWipe {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0) scale(1);
  }
  48% {
    opacity: 1;
    transform: translateY(-6px) scale(0.985);
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(-18px) scale(0.98);
  }
}
@keyframes confOutputReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .angebot {
    background: linear-gradient(180deg, var(--primary) 0 420px, #fff 420px 100%);
  }
  .angebot .section-eyebrow {
    font-size: 30px;
  }
  .angebot .section-sub {
    font-size: 20px;
    margin-bottom: 46px;
  }
  .conf-questions {
    padding: 42px 24px 24px;
  }
  .conf-steps {
    margin-bottom: 42px;
  }
  .conf-step {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  .conf-step-line {
    width: clamp(18px, 6vw, 38px);
  }
  .q-header {
    margin-bottom: 34px;
  }
  .q-num,
  .q-title {
    font-size: 21px;
  }
  .options,
  .options-four {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .option {
    min-height: 106px;
    padding: 22px 24px;
  }
  .conf-output {
    padding: 26px 20px;
  }
}
@media (max-width: 520px) {
  .conf-step {
    width: 34px;
    height: 34px;
  }
  .conf-step-line {
    width: 12px;
  }
  .q-header {
    align-items: flex-start;
  }
  .q-num,
  .q-title {
    font-size: 18px;
  }
  .q-tooltip {
    left: 0;
    transform: translateY(4px);
  }
  .q-tooltip::after {
    left: 18px;
    transform: none;
  }
  .q-tooltip-trigger:hover .q-tooltip,
  .q-tooltip-trigger:focus .q-tooltip,
  .q-tooltip-trigger:focus-within .q-tooltip {
    transform: translateY(0);
  }
  .conf-result-actions {
    grid-template-columns: 1fr 48px;
  }
  .conf-reset {
    width: 48px;
  }
}

/* ================== LEISTUNGEN ================== */
.leistungen-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.exec-video {
  position: relative; aspect-ratio: auto; min-height: 100%;
  border-radius: 0;
  overflow: hidden; background: linear-gradient(135deg, #1E293B, #475569);
  cursor: default;
  display: flex; align-items: center; justify-content: center;
  transition: none;
}
.exec-video-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: grayscale(20%);
}
.exec-video::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.04) 0%, rgba(15,23,42,0.52) 100%);
}
.exec-video-play {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: var(--shadow-xl); position: relative; z-index: 1;
}
.exec-video-play svg { width: 24px; height: 24px; margin-left: 2px; }
.exec-video-tag {
  position: absolute; bottom: 20px; left: 20px; color: white; z-index: 1;
}
.exec-video-tag strong { display: block; font-size: 14px; margin-bottom: 4px; }
.exec-video-tag span { font-size: 13px; opacity: 0.85; }
.download-box {
  background: transparent;
  padding: 42px 54px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.download-box h3 {
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.download-box p {
  font-size: 15px;
  color: #222222;
  margin-bottom: 20px;
  line-height: 1.75;
  font-weight: 300;
}
.download-list { list-style: none; margin-bottom: 28px; }
.download-list li {
  font-size: 15px;
  color: var(--text);
  padding: 7px 0 7px 34px;
  position: relative;
  line-height: 1.45;
  font-weight: 300;
}
.download-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: url("../img/check-blue.svg") center/contain no-repeat;
}
.download-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; max-width: 400px; margin: 0 auto; background: var(--primary); color: white;
  padding: 11px 26px; border-radius: 999px;
  font-size: 16px; font-weight: 500; transition: background 0.15s;
}
.download-cta:hover { background: var(--primary-dark); }
.download-cta svg { width: 16px; height: 16px; }
.download-note { text-align: center; margin-top: 12px; font-size: 12px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 6px; }
.download-note svg { width: 14px; height: 14px; }
@media (max-width: 900px) {
  .leistungen-top { grid-template-columns: 1fr; }
  .exec-video { min-height: 320px; }
  .download-box { padding: 30px 24px; }
  .download-box h3 { font-size: 20px; }
  .download-box p { font-size: 16px; line-height: 1.65; }
}

.sparring-frame {
  padding: 0;
  margin: 0 0 28px;
  text-align: center;
}
.sparring-frame-body { margin: 98px auto; }

.sparring-frame-title {
  color: var(--primary);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}
.sparring-frame-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}
.sparring-frame-tag {
  background: #F9FAFC;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}
.services-wrapper {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  position: static;
}
.services-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 43px; 
}
@media (max-width: 1100px) { 
  .services-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 33px; 
  } 
}
.service-card {
  background: #F9FAFC;
  border: none;
  border-radius: 6px;
  padding: 40px 34px 34px;
  transition: none;
}
.service-num-title { font-size: 26px; font-weight: 600; line-height: 1.2; }
@media (max-width: 440px) { 
  .service-card {
    padding: 20px 8px 17px;
  }
  .service-num-title { font-size: 20px; }
}
.service-header { display: block; margin-bottom: 28px; text-align: center; }
.service-titles { flex: 1; }
.service-sub-title { font-size: 18px; font-weight: 300; color: var(--text); margin-top: 14px; line-height: 1.35; }
.service-card hr { display: none; }
.service-list { 
  list-style: none; 
  margin: 0 auto;
  width: fit-content;
}
.service-list li {
  font-size: 15px;
  color: var(--text);
  padding: 9px 0 9px 30px;
  position: relative;
  line-height: 1.5;
  font-weight: 300;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: url("../img/check-blue.svg") center/contain no-repeat;
}

.outcomes {
  margin-top: 56px; background: var(--primary-soft);
  border-radius: 16px; padding: 32px;
}
.outcomes-title {
  text-align: center; color: var(--primary);
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; margin-bottom: 24px;
}
.outcomes-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.outcome { text-align: center; padding: 12px; }
.outcome-icon {
  width: 46px; height: 46px; margin: 0 auto 12px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.outcome-icon svg { width: 26px; height: 26px; stroke-width: 1.55; }
.outcome strong { display: block; font-size: 13px; margin-bottom: 4px; }
.outcome span { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; gap: 23px; }
  .outcomes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================== TEAM ================== */
.team { background: var(--bg-soft); }
.team-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin: 40px 0 40px; padding: 28px; background: white; border-radius: var(--radius);
}
.team-stat { display: flex; gap: 16px; align-items: center; }
.team-stat-icon {
  width: 50px; height: 50px; background: var(--primary-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--primary);
  flex-shrink: 0;
}
.team-stat-icon svg { width: 30px; height: 30px; stroke-width: 1.55; }
.team-stat-body { flex: 1; min-width: 0; }
.team-stat-num { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: var(--primary); line-height: 1; }
.team-stat-label { font-size: 13px; font-weight: 700; margin-top: 4px; }
.team-stat-desc { font-size: 11px; color: var(--text-muted); margin-top: 2px; line-height: 1.4; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
}
.team-photo {
  position: relative; width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 56px; font-weight: 700;
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.team-photo-slate { background: linear-gradient(135deg, #475569, #1E293B); }
.team-photo-blue { background: linear-gradient(135deg, #1E40AF, #2563EB); }
.team-photo-ink { background: linear-gradient(135deg, #334155, #0F172A); }
.team-photo-stone { background: linear-gradient(135deg, #475569, #334155); }
.team-photo-charcoal { background: linear-gradient(135deg, #1E293B, #475569); }
.team-photo-primary { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.team-photo-steel { background: linear-gradient(135deg, #334155, #475569); }
.team-linkedin {
  position: absolute; top: 10px; right: 10px;
  width: 22px; height: 22px; background: white; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #0A66C2;
}
.team-linkedin .linkedin-mark {
  width: 12px; height: 12px;
}
.team-body { padding: 16px 18px; }
.team-name { font-size: 15px; font-weight: 700; line-height: 1.25; }
.team-role { font-size: 13px; color: var(--primary); margin-top: 4px; font-weight: 600; }
.team-tag { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 1024px) { .team-stats { grid-template-columns: repeat(2, 1fr); } .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* ================== WEITEREMPFEHLUNG ================== */
.weiterempfehlung-title {
  text-align: center; font-size: 28px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 56px;
}
.weiterempfehlung-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.we-card { display: flex; flex-direction: column; min-height: 100%; }
.review-item.is-collapsed { display: none; }
.we-logo {
  height: 48px; display: flex; align-items: center; margin-bottom: 18px;
}
.we-logo img {
  max-width: 150px; max-height: 44px; width: auto; height: auto;
  object-fit: contain;
}
.we-card-text {
  font-size: 13px; color: var(--text-soft);
  line-height: 1.65; margin-bottom: 22px; font-style: italic; flex: 1;
}
.we-card-author { display: flex; align-items: center; gap: 12px; }
.we-card-photo {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
  overflow: hidden;
}
.we-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.we-card-name { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }
.we-card-role { font-size: 12px; color: var(--text); margin-top: 2px; }
.we-card-role strong { font-weight: 700; }
.we-card-loc { font-size: 12px; color: var(--text-muted); }
.we-more {
  display: flex; width: max-content; align-items: center; justify-content: center; gap: 10px;
  margin: 44px auto 0; color: var(--primary);
  font-weight: 700; font-size: 15px;
  transition: color 0.15s, gap 0.15s;
}
.we-more:hover { color: var(--primary-dark); gap: 14px; }
.we-more.is-hidden { display: none; }
.we-more-icon {
  line-height: 1; font-size: 16px;
}
@media (max-width: 900px) { .weiterempfehlung-grid { grid-template-columns: 1fr; } }

/* ================== FINAL CTA ================== */
.final-cta {
  background: var(--primary); color: white; text-align: center; padding: 96px 0;
}
.final-cta h2 {
  font-size: 36px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 18px; color: white;
}
.final-cta h2 .accent { color: #93C5FD; }
.final-cta p {
  font-size: 16px; max-width: 720px; margin: 0 auto 36px;
  opacity: 0.95; line-height: 1.65;
}
.final-cta .btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: white;
  border: 1.5px solid white; padding: 14px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 600; transition: background 0.15s;
}
.final-cta .btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ================== FOOTER ================== */
footer { background: var(--bg-darker); color: white; padding: 72px 0 28px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 56px; flex-wrap: wrap; gap: 40px; }
.footer-logo-img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 100%;
}
.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  margin-bottom: 56px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
}
.footer-col a, .footer-col p {
  display: block; color: rgba(255,255,255,0.7);
  font-size: 13px; padding: 4px 0; transition: color 0.15s;
}
.footer-col a:hover { color: white; }
.footer-col .submenu { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.footer-col .submenu a { padding: 4px 0; }
a.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
}
.footer-social .linkedin-mark { width: 16px; height: 16px; }
.footer-partners-row {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; margin-bottom: 16px;
}
.footer-partners-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
}
.footer-partner {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; margin-top: 16px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
@media (max-width: 768px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ================== WEBINARE ================== */
.webinare { background: white; padding: 56px 0; }
.webinare > .container {
  position: relative;
}

.webinare-head {
  position: relative;
  min-height: 264px;
  margin-bottom: 34px;
}
.webinare-head-copy {
  position: relative;
  z-index: 1;
  padding-top: 92px;
}
.webinare-card {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 648px;
  padding: 72px 56px;
  border-radius: 0;
  background: #f6f6f6;
  box-shadow: var(--shadow-xl);
  isolation: isolate;
}
.webinare-card::before,
.webinare-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.webinare-card::before {
  background: linear-gradient(90deg,
      rgba(246, 246, 246, 1) 0%,
      rgba(246, 246, 246, 0.99) 22%,
      rgba(246, 246, 246, 0.94) 36%,
      rgba(246, 246, 246, 1) 55%,
      rgba(246, 246, 246, 0.28) 72%,
      rgba(246, 246, 246, 0.04) 87%,
      rgba(246, 246, 246, 0) 100%)
}
.webinare-card::after {
  background:
    radial-gradient(circle at 30% 54%, rgba(255, 255, 255, 0.99) 0, rgba(255, 255, 255, 0.96) 18%, rgba(255, 255, 255, 0.72) 31%, rgba(255, 255, 255, 0.2) 44%, rgba(255, 255, 255, 0) 56%);
}
.webinare-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.webinare-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  scale: 150%;
  transform-origin: 100% 40%;
}
.webinare-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 666px);
  min-height: 100%;
  padding: 48px 48px 44px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(8px);
}
.webinare-mark {
  position: absolute;
  top: 18px;
  left: -95px;
  width: min(40vw, 520px);
  height: auto;
  pointer-events: none;
  user-select: none;
}
.webinare-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 36px;
}
.webinare-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.webinare-feature-icon {
  width: 48px;
  height: 48px;
  background: #edf4ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.webinare-feature-icon svg { width: 22px; height: 22px; }
.webinare-feature-body strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}
.webinare-feature-body p {
  font-size: 15px;
  color: rgba(15, 23, 42, 0.82);
  line-height: 1.58;
}
.webinare-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  align-items: stretch;
}
.webinare-cta-primary {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  min-height: 46px;
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: "Roboto", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.125;
  text-align: center;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.webinare-cta-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}
.webinare-cta-primary:active { transform: translateY(1px); }
.webinare-cta-secondary {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  min-height: 46px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-family: "Roboto", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.125;
  text-align: center;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.webinare-cta-secondary:hover {
  background: var(--primary-soft);
  border-color: var(--primary-dark);
}
.webinare-cta-secondary:active { transform: translateY(1px); }
.webinare-cta-secondary svg { width: 16px; height: 16px; }
@media (max-width: 900px) {
  .webinare-head {
    min-height: 214px;
    margin-bottom: 28px;
  }
  .webinare-head-copy {
    text-align: center;
    padding-top: 78px;
  }
  .webinare-head .section-eyebrow,
  .webinare-head .section-sub {
    text-align: center;
  }
  .webinare-card {
    min-height: 0;
    padding: 36px 30px;
  }
  .webinare-card::before {
    background: linear-gradient(180deg,
        rgba(246, 246, 246, 0.98) 0%,
        rgba(246, 246, 246, 0.92) 26%,
        rgba(246, 246, 246, 0.72) 54%,
        rgba(246, 246, 246, 0.34) 100%);
  }
  .webinare-card::after {
    background:
      radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.94) 0, rgba(255, 255, 255, 0.68) 26%, rgba(255, 255, 255, 0) 56%);
  }
  .webinare-bg-image {
    object-position: 60% center;
    opacity: 0.72;
    filter: saturate(0.88);
  }
  .webinare-content {
    width: 100%;
    padding: 36px 32px;
    border-radius: 6px;
  }
  .webinare-mark {
    top: 16px;
    left: -86px;
    width: min(38vw, 320px);
  }
  .webinare-features {
    gap: 24px;
    margin-bottom: 30px;
  }
}
@media (max-width: 640px) {
  .webinare-head {
    min-height: 126px;
    margin-bottom: 22px;
  }
  .webinare-head-copy {
    text-align: center;
    padding-top: 34px;
  }
  .webinare-card {
    padding: 24px 20px;
    border-radius: 0;
  }
  .webinare-card::before {
    background: linear-gradient(180deg,
        rgba(246, 246, 246, 0.99) 0%,
        rgba(246, 246, 246, 0.95) 34%,
        rgba(246, 246, 246, 0.82) 64%,
        rgba(246, 246, 246, 0.56) 100%);
  }
  .webinare-bg-image {
    object-position: 64% center;
    opacity: 0.54;
  }
  .webinare-content {
    padding: 28px 24px;
    border-radius: 6px;
  }
  .webinare-mark {
    top: 6px;
    left: -34px;
    width: 170px;
  }
  .webinare-feature {
    gap: 14px;
  }
  .webinare-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .webinare-feature-body strong,
  .webinare-feature-body p {
    max-width: none;
  }
  .webinare-feature-body p {
    font-size: 14px;
  }
  .webinare-cta-primary,
  .webinare-cta-secondary {
    padding: 12px 18px;
    font-size: 14px;
  }
}

/* ================== WEBINAR MODAL ================== */
.modal-wide { max-width: 960px !important; }
.webinar-modal-body { padding: 24px 32px 28px; }
.webinar-modal-main {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
}
.webinar-list-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.webinar-list {
  max-height: 480px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 4px;
}
.webinar-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 13px;
}
.webinar-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  align-items: center;
  transition: border-color 0.15s, background 0.15s;
}
.webinar-item:hover { border-color: var(--border-strong); }
.webinar-item.next-up {
  border-color: var(--primary);
  background: var(--primary-soft);
}
.webinar-date-box {
  background: var(--primary-light);
  border-radius: 8px;
  padding: 8px 0;
  text-align: center;
}
.webinar-date-day { font-size: 20px; font-weight: 800; color: var(--primary); line-height: 1; }
.webinar-date-month {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.webinar-info-title { font-size: 13px; font-weight: 600; line-height: 1.4; }
.webinar-info-meta { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.webinar-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 100px;
  background: var(--primary);
  color: white;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
}
.webinar-membership {
  background: linear-gradient(160deg, #1E40AF 0%, #2563EB 60%, #3B82F6 100%);
  color: white;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.membership-price { text-align: center; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.2); }
.membership-from { font-size: 13px; opacity: 0.9; }
.membership-amount { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: 4px 0; }
.membership-period { font-size: 13px; opacity: 0.9; }
.webinar-membership h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.9;
}
.membership-benefits { list-style: none; margin-bottom: 20px; flex: 1; }
.membership-benefits li {
  font-size: 12px;
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.5;
}
.membership-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #93C5FD;
}
.membership-cta {
  width: 100%;
  background: white;
  color: var(--primary);
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.15s;
  margin-bottom: 8px;
}
.membership-cta:hover { background: #DBEAFE; }
.membership-cta-secondary {
  width: 100%;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
}
.membership-cta-secondary:hover { background: rgba(255,255,255,0.12); border-color: white; }
.membership-divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 18px 0;
  position: relative;
}
.membership-divider::after {
  content: "oder";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(160deg, #1E40AF 0%, #2563EB 60%, #3B82F6 100%);
  padding: 0 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0.85;
  text-transform: uppercase;
}
.membership-single { text-align: center; margin-bottom: 18px; }
.single-label { font-size: 10px; opacity: 0.85; letter-spacing: 0.12em; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.single-price { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.single-price span { font-size: 13px; font-weight: 500; opacity: 0.85; margin-left: 4px; }
.single-note { font-size: 11px; opacity: 0.85; margin-top: 3px; }
.membership-note { font-size: 10px; opacity: 0.7; margin-top: 12px; text-align: center; line-height: 1.5; }
.webinar-testimonials {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.webinar-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.webinar-testimonial {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 18px;
}
.webinar-testimonial-quote {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 14px;
}
.webinar-testimonial-author { display: flex; gap: 10px; align-items: center; }
.webinar-testimonial-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.webinar-testimonial-name { font-size: 12px; font-weight: 700; line-height: 1.2; }
.webinar-testimonial-role { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
@media (max-width: 768px) {
  .webinar-modal-main { grid-template-columns: 1fr; }
  .webinar-modal-body { padding: 20px; }
  .webinar-list { max-height: 320px; }
  .webinar-testimonials-grid { grid-template-columns: 1fr; }
}

/* ================== MODAL (CALENDAR) ================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; border-radius: 16px; max-width: 720px; width: 100%;
  max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-xl); position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: background 0.15s; z-index: 2;
}
.modal-close:hover { background: var(--border); }
.modal-close svg { width: 18px; height: 18px; }
.modal-header { padding: 28px 32px 20px; border-bottom: 1px solid var(--border); }
.modal-header h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.modal-header p { font-size: 14px; color: var(--text-muted); }
.modal-body { padding: 28px 32px; }
.modal-steps {
  display: flex; gap: 8px; padding: 16px 32px;
  background: var(--bg-soft); font-size: 12px; color: var(--text-muted);
}
.modal-step { display: flex; align-items: center; gap: 6px; }
.modal-step .num {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--border); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.modal-step.active .num { background: var(--primary); }
.modal-step.done .num { background: #16A34A; }
.modal-step.active { color: var(--text); font-weight: 600; }
.modal-step-sep { color: var(--border); }
.cal-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-month { font-size: 16px; font-weight: 700; }
.cal-nav { display: flex; gap: 4px; }
.cal-nav button {
  width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s;
}
.cal-nav button:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
.cal-nav button:disabled { opacity: 0.4; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { text-align: center; font-size: 11px; color: var(--text-muted); padding: 8px 0; font-weight: 600; }
.cal-day {
  aspect-ratio: 1; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; cursor: pointer; transition: background 0.15s;
}
.cal-day:hover:not(.disabled):not(.other) { background: var(--primary-soft); }
.cal-day.disabled, .cal-day.other { color: var(--border-strong); cursor: not-allowed; }
.cal-day.today { color: var(--primary); font-weight: 700; }
.cal-day.selected { background: var(--primary); color: white; }
.cal-side { border-left: 1px solid var(--border); padding-left: 24px; }
.cal-side-empty {
  display: flex; align-items: center; justify-content: center; height: 100%;
  color: var(--text-muted); font-size: 13px; text-align: center; padding: 32px 16px;
}
.cal-side-date { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.cal-times { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cal-time {
  padding: 10px; border: 1.5px solid var(--border); border-radius: 8px;
  text-align: center; font-size: 13px; font-weight: 600;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.cal-time:hover { border-color: var(--primary); color: var(--primary); }
.cal-time.selected { background: var(--primary); color: white; border-color: var(--primary); }
.cal-form-row { margin-bottom: 16px; }
.cal-form-row label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.cal-form-row input, .cal-form-row textarea {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 14px; font-family: inherit;
  outline: none; transition: border-color 0.15s;
}
.cal-form-row input:focus, .cal-form-row textarea:focus { border-color: var(--primary); }
.cal-form-row textarea { resize: vertical; min-height: 80px; }
.cal-form-summary {
  background: var(--primary-soft); border-radius: 10px;
  padding: 14px 16px; margin-bottom: 20px; font-size: 13px;
}
.cal-form-summary strong {
  display: block; margin-bottom: 4px; font-size: 12px;
  color: var(--text-muted); font-weight: 600; letter-spacing: 0.05em;
}
.modal-footer {
  padding: 16px 32px 24px; display: flex; justify-content: space-between; gap: 12px;
  border-top: 1px solid var(--border);
}
.btn-secondary-modal {
  padding: 11px 20px; border-radius: 8px; border: 1.5px solid var(--border);
  font-size: 14px; font-weight: 600; transition: border-color 0.15s, color 0.15s;
}
.btn-secondary-modal:hover { border-color: var(--primary); color: var(--primary); }
.modal-back-hidden { visibility: hidden; }
.btn-primary-modal {
  padding: 11px 24px; border-radius: 8px;
  background: var(--primary); color: white;
  font-size: 14px; font-weight: 600; transition: background 0.15s;
}
.btn-primary-modal:hover:not(:disabled) { background: var(--primary-dark); }
.btn-primary-modal:disabled { background: #94A3B8; cursor: not-allowed; opacity: 0.7; }
.modal-done-button { margin-left: auto; }
.success-screen { text-align: center; padding: 16px; }
.success-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: #DCFCE7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #16A34A;
}
.success-icon svg { width: 32px; height: 32px; }
.success-screen h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.success-screen p {
  font-size: 14px; color: var(--text-muted);
  max-width: 380px; margin: 0 auto 20px; line-height: 1.6;
}
.success-details {
  background: var(--bg-soft); border-radius: 10px; padding: 16px;
  font-size: 13px; text-align: left; max-width: 380px; margin: 0 auto;
}
.success-details strong {
  display: block; font-size: 11px; color: var(--text-muted);
  margin-bottom: 4px; font-weight: 600; letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .section-eyebrow {
    font-size: 24px;
  }
  .section-sub {
    font-size: 18px;
    line-height: 1.3;
    margin: -16px auto 30px;
  }
  .insights-slider .swiper-slide,
  .insights-slider .swiper-slide.swiper-slide-active {
    width: min(72vw, 292px);
    height: min(72vw, 292px);
    padding: 20px;
  }
  .insight-card-copy {
    -webkit-line-clamp: 6;
    line-clamp: 6;
  }
  .kundenstimmen-main {
    padding-bottom: 56px;
  }
  .stat-number {
    font-size: clamp(36px, 8vw, 44px);
  }
  .cal-wrap { grid-template-columns: 1fr; }
  .cal-side { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 20px; }
  .modal-body, .modal-header, .modal-footer, .modal-steps { padding-left: 20px; padding-right: 20px; }
}
