/* ── Variablen & Reset ──────────────────────────────────────────────────── */

:root {
  --brand-50:   #f3f7fb;
  --brand-100:  #e3ecf5;
  --brand-200:  #c8daea;
  --brand-300:  #9fbfd9;
  --brand-400:  #6f9cc3;
  --brand-500:  #467aa7;
  --brand-600:  #3a6590;
  --brand-700:  #315478;
  --brand-800:  #2a4560;
  --brand-900:  #24384e;
  --brand-950:  #15222f;

  --slate-50:   #f8fafc;
  --slate-100:  #f1f5f9;
  --slate-200:  #e2e8f0;
  --slate-300:  #cbd5e1;
  --slate-400:  #94a3b8;
  --slate-500:  #64748b;
  --slate-600:  #475569;
  --slate-700:  #334155;
  --slate-800:  #1e293b;
  --slate-900:  #0f172a;
  --slate-950:  #020617;

  --rose-50:    #fff1f2;
  --rose-100:   #ffe4e6;
  --rose-500:   #f43f5e;
  --rose-600:   #e11d48;

  --amber-50:   #fffbeb;
  --amber-100:  #fef3c7;
  --amber-500:  #f59e0b;
  --amber-600:  #d97706;

  --emerald-50:  #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  color: var(--slate-800);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}


/* ── Typographie ────────────────────────────────────────────────────────── */

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ── Layout-Primitiven ──────────────────────────────────────────────────── */

.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.ml-auto { margin-left: auto; }

.hidden   { display: none; }
.absolute { position: absolute; }
.inset-0  { top: 0; right: 0; bottom: 0; left: 0; }

.opacity-0 { opacity: 0; }

.show-md { display: none; }


/* ── Top-Bar ────────────────────────────────────────────────────────────── */

.top-bar {
  background: var(--brand-950);
  color: var(--brand-200);
  font-size: 0.75rem;
  padding: 0.625rem 1.5rem;
}

.top-bar-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-est {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 0.14em;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.top-bar-tel {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--brand-300);
  font-weight: 500;
  transition: color 0.15s;
}

.top-bar-tel:hover { color: #fff; }

/* ── Navigation ─────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0);
  transition: background 0.2s, box-shadow 0.2s;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(226,232,240,0.8);
}

.site-nav {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo-name {
  font-size: 2.3em;
  font-weight: 900;
  color: var(--brand-700);
  letter-spacing: 0.1em;
  line-height: 1;
}

.brand-logo-sub {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--brand-700);
  line-height: 1;
}

.mainnav {
  display: none;
  align-items: center;
  gap: 0.125rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.mainnav-item { position: relative; }

.mainnav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  color: var(--slate-600);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.mainnav-link:hover { color: var(--slate-900); background: var(--slate-50); }

.mainnav-chevron {
  flex-shrink: 0;
  color: var(--slate-400);
  transition: transform 0.2s ease, color 0.15s;
}
.mainnav-item:hover .mainnav-chevron,
.mainnav-item:focus-within .mainnav-chevron {
  transform: rotate(180deg);
  color: var(--slate-600);
}

.mainnav-submenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 13rem;
  padding: 0.375rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 0.875rem;
  box-shadow:
    0 16px 40px -12px rgba(15, 23, 42, 0.18),
    0 4px 12px -4px rgba(15, 23, 42, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 60;
}
.mainnav-submenu::before {
  content: '';
  position: absolute;
  top: -0.5rem; left: 0; right: 0; height: 0.5rem;
}
.mainnav-item:hover > .mainnav-submenu,
.mainnav-item:focus-within > .mainnav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mainnav-submenu-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate-700);
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}
.mainnav-submenu-link:hover {
  background: var(--slate-50);
  color: var(--brand-700);
}

.site-nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  color: var(--slate-600);
  border-radius: 0.5rem;
  transition: color 0.15s, background 0.15s;
}

.mobile-menu-btn:hover {
  color: var(--slate-900);
  background: var(--slate-50);
}

.mobile-menu {
  background: #fff;
  border-top: 1px solid var(--slate-100);
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.mobile-menu a {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: 0.5rem;
  transition: background 0.15s;
  margin-bottom: 0.25rem;
}

.mobile-menu a:hover { background: var(--slate-50); }

.mobile-menu-footer {
  padding-top: 0.75rem;
  border-top: 1px solid var(--slate-100);
  margin-top: 0.25rem;
}


/* ── Buttons ────────────────────────────────────────────────────────────── */

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-700);
  color: #fff;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  box-shadow: 0 4px 14px rgba(49,84,120,0.30);
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

.button:hover {
  background: var(--brand-900);
  box-shadow: 0 6px 20px rgba(49,84,120,0.38);
  transform: translateY(-1px);
}

.button:active { transform: translateY(0); }

.button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--slate-800);
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  border: 1.5px solid var(--slate-200);
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

.button-secondary:hover {
  border-color: var(--slate-400);
  background: var(--slate-50);
}

.button-small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.button-block {
  width: 100%;
  justify-content: center;
}

.button-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 1rem 1.75rem;
  font-weight: 600;
  color: #fff;
  border: 1.5px solid var(--brand-700);
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none;
}

.button-outline-light:hover {
  border-color: var(--brand-500);
  background: var(--brand-800);
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--brand-600);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.15s;
  text-decoration: none;
}

.button-link:hover { color: var(--brand-700); }


/* ── Card ───────────────────────────────────────────────────────────────── */

.card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(20,40,80,0.05);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.card:hover {
  border-color: var(--brand-300);
  box-shadow: 0 8px 32px rgba(49,84,120,0.08);
}

.icon-tile {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--brand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-check {
  color: var(--brand-700);
  flex-shrink: 0;
  margin-top: 3px;
  width: 1.25rem;
  height: 1.25rem;
}


/* ── Hero ───────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #fff, #fff, rgba(243,247,251,0.4));
  padding: 5rem 1.5rem 6rem;
  border-bottom: 1px solid var(--slate-100);
}

.hero-bg-deco {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(to left, rgba(243,247,251,0.3), transparent);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-copy { max-width: 36rem; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-eyebrow-year {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  color: var(--brand-500);
  letter-spacing: 0.18em;
  flex-shrink: 0;
}

.hero-eyebrow-line {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--brand-200);
}

.hero-eyebrow-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate-400);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.hero-title-accent { color: var(--brand-500); }

.hero-lead {
  font-size: 1.25rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-500);
}

.hero-trust strong { color: var(--slate-700); font-weight: 600; }

.hero-mockup {
  display: none;
  position: relative;
}

.hero-mockup-inner {
  position: relative;
  isolation: isolate;
}

.hero-mockup-inner::before {
  content: '';
  position: absolute;
  inset: -12%;
  background: radial-gradient(
    ellipse at center,
    rgba(70, 122, 167, 0.38) 0%,
    rgba(70, 122, 167, 0.18) 35%,
    rgba(70, 122, 167, 0) 70%
  );
  filter: blur(48px);
  z-index: -1;
  pointer-events: none;
}

/* ── App-Mockup ─────────────────────────────────────────────────────────── */

.app-mockup {
  border-radius: 1rem;
  border: 1px solid var(--slate-200);
  box-shadow:
    0 30px 70px rgba(20, 40, 80, 0.20),
    0 14px 40px rgba(70, 122, 167, 0.18);
  background: #fff;
  padding: 1.25rem;
}

.app-mockup-image {
  width: 100%;
  height: auto;
  display: block;
}


/* ── Logo-Strip / Marquee ───────────────────────────────────────────────── */

.logo-strip {
  padding: 2.5rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--slate-100);
}

.logo-strip-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate-400);
  text-align: center;
  margin-bottom: 2rem;
}

.logo-marquee {
  overflow: hidden;
  position: relative;
}

.logo-marquee-fade-left,
.logo-marquee-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 4rem;
  z-index: 10;
  pointer-events: none;
}

.logo-marquee-fade-left  { left: 0;  background: linear-gradient(to right, #fff, transparent); }
.logo-marquee-fade-right { right: 0; background: linear-gradient(to left, #fff, transparent); }

.logo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-scroll 45s linear infinite;
}

.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none; }
}

.logo-item {
  flex-shrink: 0;
  height: 3rem;
  width: auto;
  margin-right: 3rem;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.25s, opacity 0.25s;
  display: block;
}

.logo-item:hover { filter: grayscale(0%); opacity: 1; }


/* ── Stats-Band ─────────────────────────────────────────────────────────── */

.stats-band {
  padding: 3rem 1.5rem;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
}

.stats-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--brand-500);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.stat-number-suffix {
  font-size: 2.5rem;
  color: var(--brand-300);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-top: 0.5rem;
  font-weight: 500;
}


/* ── Produkt-Showcase ───────────────────────────────────────────────────── */

.product-showcase {
  padding: 3.5rem 1.5rem;
  border-bottom: 1px solid var(--slate-100);
}

.product-showcase--gray { background: var(--slate-50); }
.product-showcase--white { background: #fff; }

.product-showcase-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.product-image-wrap {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  box-shadow:
    0 30px 70px rgba(20, 40, 80, 0.20),
    0 14px 40px rgba(70, 122, 167, 0.18);
  padding: 1.25rem;
  
}

.product-image {
  width: 100%;
  height: auto;
  displayXX: block;
  Align: top;

}

.product-copy .eyebrow {
  color: var(--brand-600);
  display: block;
  margin-bottom: 1rem;
}

.product-copy h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.product-copy p {
  font-size: 1.125rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-item-text { font-size: 0.9375rem; color: var(--slate-600); line-height: 1.5; }
.feature-item-text strong { color: var(--slate-800); font-weight: 600; }

.demo-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--brand-50);
  border-radius: 0.75rem;
  border: 1px solid var(--brand-100);
  margin-bottom: 2rem;
}

.demo-banner-img {
  width: 4rem;
  height: 2.75rem;
  object-fit: contain;
  flex-shrink: 0;
}

.demo-banner-title { font-size: 0.875rem; font-weight: 600; color: var(--slate-800); }
.demo-banner-meta  { font-size: 0.75rem; color: var(--slate-500); font-family: ui-monospace, monospace; margin-top: 0.125rem; }

.product-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}


/* ── Branchen-Grid ──────────────────────────────────────────────────────── */

.industry-section {
  padding: 3.5rem 1.5rem;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
}

.section-header {
  max-width: 42rem;
  margin-bottom: 4rem;
}

.section-header .eyebrow {
  color: var(--brand-600);
  display: block;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--slate-500);
  line-height: 1.7;
}

.industry-grid {
  display: grid;
  gap: 1.5rem;
}

.industry-card { padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }

.industry-card h3 { font-weight: 700; color: var(--slate-900); margin-bottom: 0.25rem; font-size: 1rem; }
.industry-card p  { font-size: 0.875rem; color: var(--slate-500); line-height: 1.6; }


/* ── Compliance-Bar ─────────────────────────────────────────────────────── */

.compliance-bar {
  padding: 2.5rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--slate-100);
}

.compliance-bar-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.compliance-bar-label {
  font-size: 0.875rem;
  color: var(--slate-400);
  font-weight: 500;
  flex-shrink: 0;
}

.compliance-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.compliance-tag {
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  font-size: 0.75rem;
  font-family: ui-monospace, monospace;
  font-weight: 600;
  color: var(--slate-500);
}


/* ── Presse-Slider ──────────────────────────────────────────────────────── */

.presse-section {
  padding: 3.5rem 1.5rem;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
}

.presse-section .section-header { margin-bottom: 3rem; }

.presse-section .section-header .eyebrow { color: var(--brand-600); display: block; margin-bottom: 1rem; }
.presse-section .section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.presse-slider-wrap {
  max-width: 60rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 1rem;
  align-items: center;
}

.presse-slides {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
  background: var(--slate-50);
  aspect-ratio: 4 / 3;
  max-height: 68vh;
  flex: 1;
  min-width: 0;
}

.presse-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.5s;
}

.presse-nav-btn {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: background 0.15s;
  cursor: pointer;
}

.presse-nav-btn:hover { background: var(--slate-50); }

.presse-dots {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.presse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--slate-300);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  padding: 0;
}

.presse-dot.is-active { background: var(--brand-700); }


/* ── Team ───────────────────────────────────────────────────────────────── */

.team-section {
  padding: 3.5rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--slate-100);
}

.team-section-header {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 4rem;
}

.team-section-header .eyebrow { color: var(--brand-600); display: block; margin-bottom: 1rem; }
.team-section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.team-section-header p { font-size: 1.125rem; color: var(--slate-500); line-height: 1.7; }

.team-grid {
  display: grid;
  gap: 2rem;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-photo-wrap {
  width: 11rem;
  height: 11rem;
  border-radius: 1rem;
  border: 4px solid #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  overflow: hidden;
  margin-bottom: 1rem;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-name { font-weight: 700; color: var(--slate-900); font-size: 0.875rem; }
.team-role { font-size: 0.875rem; color: var(--brand-600); font-weight: 500; margin-top: 0.125rem; }


/* ── Beratung (Services) ────────────────────────────────────────────────── */

.services-section {
  padding: 3.5rem 1.5rem;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  padding: 1.75rem;
}

.service-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--brand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-500);
}

.service-list-dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--brand-400);
  flex-shrink: 0;
}


/* ── Testimonials ───────────────────────────────────────────────────────── */

.testimonials-section {
  padding: 3.5rem 1.5rem;
  background: var(--brand-50);
  border-bottom: 1px solid var(--brand-100);
}

.testimonials-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.testimonials-quote-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--brand-300);
  margin: 0 auto 2rem;
}

.testimonial-track {
  position: relative;
}

.testimonial {
  transition: opacity 0.7s;
}

.testimonial-quote {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--slate-800);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--brand-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testimonial-author-name { font-weight: 600; color: var(--slate-900); text-align: left; }
.testimonial-author-org  { font-size: 0.875rem; color: var(--slate-500); text-align: left; }

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.testimonial-nav-btn {
  color: var(--brand-300);
  padding: 0.25rem;
  transition: color 0.15s;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
}

.testimonial-nav-btn:hover { color: var(--brand-700); }

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  background: var(--brand-200);
  transition: background 0.15s;
}

.testimonial-dot.is-active { background: var(--brand-700); }


/* ── Final CTA ──────────────────────────────────────────────────────────── */

.cta-section {
  padding: 3.5rem 1.5rem;
  background: var(--brand-900);
}

.cta-inner {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.cta-inner .eyebrow { color: var(--brand-400); margin-bottom: 1.25rem; display: block; }

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.cta-lead {
  font-size: 1.125rem;
  color: var(--brand-200);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  border-top: 1px solid var(--brand-800);
  padding-top: 3.5rem;
  max-width: 32rem;
  margin: 0 auto;
}

.contact-item dt {
  font-size: 0.75rem;
  color: var(--brand-400);
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-item dd a {
  color: #fff;
  font-weight: 700;
  font-family: ui-monospace, monospace;
  transition: color 0.15s;
}

.contact-item dd a:hover { color: var(--brand-400); }

.contact-item dd.contact-hours {
  color: var(--brand-100);
  font-weight: 500;
}


/* ── Footer ─────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--slate-950);
  color: var(--slate-400);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  background: var(--brand-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-brand-name { font-size: 0.875rem; font-weight: 600; color: var(--slate-300); }

.footer-brand-desc { font-size: 0.75rem; color: var(--slate-500); line-height: 1.6; }

.footer-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-links a { transition: color 0.15s; }
.footer-links a:hover { color: #fff; }

.footer-address {
  font-style: normal;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-address a { transition: color 0.15s; }
.footer-address a:hover { color: #fff; }

.footer-meta {
  max-width: 80rem;
  margin: 0 auto;
  border-top: 1px solid var(--slate-800);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-meta-copy { font-size: 0.75rem; color: var(--slate-600); }

.footer-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1rem;
  font-size: 0.75rem;
}

.footer-meta-links a { transition: color 0.15s; }
.footer-meta-links a:hover { color: #fff; }


/* ── Download-Modal ─────────────────────────────────────────────────────── */

.download-modal {
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 32.5rem;
  padding: 0;
  margin: auto;
}

.download-modal::backdrop {
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(3px);
}

.modal-inner { padding: 1.5rem 2rem; }

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.modal-title { font-size: 1.25rem; font-weight: 700; color: var(--slate-900); }

.modal-close {
  color: var(--slate-400);
  padding: 0.25rem;
  margin-left: 1rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  transition: color 0.15s;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
}

.modal-close:hover { color: var(--slate-800); }

.modal-desc { font-size: 0.875rem; color: var(--slate-500); margin-bottom: 1.5rem; }

.modal-tiles {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.download-tile {
  border: 1.5px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 1rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-align: left;
  width: 100%;
  background: #fff;
  display: block;
  text-decoration: none;
}

.download-tile:hover {
  border-color: var(--brand-700);
  background: var(--brand-50);
}

.download-tile-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: var(--brand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.download-tile-name { font-weight: 700; color: var(--slate-900); font-size: 0.875rem; margin-bottom: 0.25rem; }
.download-tile-meta { font-size: 0.75rem; color: var(--slate-400); font-family: ui-monospace, monospace; }

.modal-footer {
  border-top: 1px solid var(--slate-100);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.modal-footer-label { color: var(--slate-500); }

.modal-footer-tel {
  color: var(--brand-600);
  font-weight: 700;
  font-family: ui-monospace, monospace;
  transition: color 0.15s;
}

.modal-footer-tel:hover { color: var(--brand-700); }


/* ── Download FAB ───────────────────────────────────────────────────────── */

.download-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
}

.download-fab .button {
  box-shadow: 0 8px 24px rgba(49,84,120,0.40);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
}


/* ── Media Queries ──────────────────────────────────────────────────────── */

@media (min-width: 640px) {
  .logo-marquee-fade-left,
  .logo-marquee-fade-right { width: 6rem; }

  .modal-tiles { grid-template-columns: repeat(2, 1fr); }

  .compliance-bar-inner { flex-direction: row; }

  .footer-meta { flex-direction: row; align-items: center; justify-content: space-between; }
}


@media (min-width: 768px) {
  .show-md { display: inline-flex; }

  .hero { padding: 7rem 1.5rem 9rem; }

  .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }

  .hero-title  { font-size: 3.75rem; }

  .hero-mockup { display: block; }

  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }

  .stat-item {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    border-right: 1px solid var(--slate-200);
  }

  .stat-item:last-child { border-right: none; }

  .stat-number { font-size: 4rem; }

  .product-showcase { padding: 5rem 1.5rem; }

  .product-showcase-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }

  .product-copy h2 { font-size: 2.25rem; }

  .industry-grid { grid-template-columns: repeat(2, 1fr); }

  .top-bar-est { display: inline; }

  .services-section { padding: 5rem 1.5rem; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial-quote { font-size: 1.75rem; }

  .cta-title { font-size: 3rem; }

  .contact-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .presse-section { padding: 5rem 1.5rem; }

  .team-section { padding: 5rem 1.5rem; }
}


@media (min-width: 1024px) {
  .mainnav { display: flex; }

  .mobile-menu-btn { display: none; }

  .mobile-menu { display: none; }

  .industry-grid { grid-template-columns: repeat(3, 1fr); }

  .team-grid { grid-template-columns: repeat(5, 1fr); }

  .footer-grid { grid-template-columns: repeat(4, 1fr); }

  .industry-section { padding: 5rem 1.5rem; }
}




@media (min-width: 1280px) {
  .hero-inner { gap: 4rem; }

  .product-showcase-inner { gap: 5rem; }
}


/* ── Page-Hero ──────────────────────────────────────────────────────────── */

.page-hero {
  padding: 4rem 1.5rem 3rem;
  background: linear-gradient(to bottom, #fff, var(--slate-50));
  border-bottom: 1px solid var(--slate-100);
}

.page-hero-inner {
  max-width: 64rem;
  margin: 0 auto;
}

.page-hero-eyebrow {
  color: var(--brand-600);
  display: block;
  margin-bottom: 1rem;
}

.page-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.page-hero-lead {
  font-size: 1.125rem;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .page-hero { padding: 5.5rem 1.5rem 4rem; }
  .page-hero-title { font-size: 3rem; }
}


/* ── Kontakt-Section (Formular + Box) ───────────────────────────────────── */

.contact-section {
  padding: 3.5rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--slate-100);
}

.contact-section-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.contact-form-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-row {
  display: grid;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-700);
}

.form-label-required::after {
  content: " *";
  color: var(--brand-600);
}

.form-input,
.form-textarea {
  border: 1.5px solid var(--slate-200);
  border-radius: 0.625rem;
  padding: 0.75rem 0.875rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--slate-900);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(70, 122, 167, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-400);
}

.form-textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-consent {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--slate-500);
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--brand-700);
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

.form-consent label { cursor: pointer; }

.form-consent a {
  color: var(--brand-600);
  text-decoration: underline;
  transition: color 0.15s;
}

.form-consent a:hover { color: var(--brand-700); }


.contact-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-self: start;
}

.contact-box-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.contact-box-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: var(--brand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-box-label {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate-400);
  margin-bottom: 0.2rem;
}

.contact-box-value {
  font-size: 0.9375rem;
  color: var(--slate-800);
  font-weight: 500;
  line-height: 1.5;
}

.contact-box-value a {
  color: var(--brand-700);
  transition: color 0.15s;
}

.contact-box-value a:hover { color: var(--brand-900); }

@media (min-width: 640px) {
  .contact-form-row { grid-template-columns: 1fr 1fr; }
  .contact-form-row--zip { grid-template-columns: 1fr 3fr; }
}

.form-checkbox-group {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 1rem 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-checkbox-group-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 0.125rem;
}

.form-checkbox-item {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  font-size: 0.9375rem;
  color: var(--slate-800);
  cursor: pointer;
}

.form-checkbox-item input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  accent-color: var(--brand-700);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .contact-section { padding: 5rem 1.5rem; }
  .contact-section-inner { grid-template-columns: 1.4fr 1fr; gap: 5rem; }
}


/* ── Map-Section ────────────────────────────────────────────────────────── */

.map-section {
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
}

.map-frame {
  width: 100%;
  height: 26rem;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .map-frame { height: 34rem; }
}


/* ── Bestellformular-Section ────────────────────────────────────────────── */

.order-form-section {
  padding: 3.5rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--slate-100);
}

.order-form-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.order-form-eyebrow {
  color: var(--brand-600);
  display: block;
  margin-bottom: 1rem;
}

.order-form-copy h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.order-form-copy p {
  font-size: 1.125rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.order-form-copy p strong {
  color: var(--slate-700);
  font-weight: 600;
}

.order-form-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.order-form-preview {
  max-width: 22rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .order-form-section { padding: 5rem 1.5rem; }
  .order-form-inner { grid-template-columns: auto 1fr; gap: 4rem; }
  .order-form-copy h2 { font-size: 2.25rem; }
  .order-form-preview { margin: 0; }
}


/* ── Intro-Section (Bestellhinweis — schmaler Absatz unter dem Page-Hero) */

.intro-section {
  padding: 1.5rem 1.5rem;
  background: #fff;
}

.intro-section-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.intro-section p {
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.75;
}


/* ── Pricing-Cards ─────────────────────────────────────────────────────── */

.pricing-section {
  padding: 3.5rem 1.5rem;
  background: #fff;
}

.pricing-section-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

.pricing-card {
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  border-color: var(--brand-300);
  box-shadow: 0 12px 28px -16px rgba(49, 84, 120, 0.25);
}

.pricing-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}

.pricing-card-price-block {
  background: var(--brand-50);
  border-radius: 0.875rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pricing-card-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-800);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-card-price-meta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card-price-net {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-top: 0.25rem;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pricing-card-features li {
  font-size: 0.9375rem;
  color: var(--slate-700);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.pricing-card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.875rem;
  height: 0.875rem;
  background: var(--brand-100);
  border-radius: 999px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23315478' stroke-width='2' stroke-linecap='round'><polyline points='3 7 6 10 11 4'/></svg>");
  background-size: 0.625rem;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing-card-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}


/* ── Steps (Bestellprozess 3 Schritte) ─────────────────────────────────── */

.steps-section {
  padding: 4rem 1.5rem;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}

.steps-section-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.step-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--brand-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.step-desc a { color: var(--brand-700); }
.step-desc a:hover { color: var(--brand-900); }

.step-desc code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.875rem;
  background: var(--slate-100);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  color: var(--slate-700);
}

/* ── Benefits (Wartungsvertrag-Vorteile) ───────────────────────────────── */

.benefits-section {
  padding: 4rem 1.5rem;
  background: #fff;
}

.benefits-section-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

.benefit-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 0.875rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.benefit-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: var(--brand-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
}

.benefit-desc {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.55;
}


/* ── Person-Card (Ansprechpartner) ─────────────────────────────────────── */

.person-section {
  padding: 4rem 1.5rem;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
}

.person-section-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.person-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 1.25rem;
  padding: 2rem;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 640px) {
  .person-card {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2.25rem;
  }
}

.person-card-image {
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: var(--brand-50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.person-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-card-initials {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-700);
  letter-spacing: -0.02em;
  display: none;
}

.person-card-image.is-fallback .person-card-initials {
  display: block;
}

.person-card-role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.person-card-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.01em;
  margin-top: 0.25rem;
}

.person-card-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1rem;
}

.person-card-contact-item {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  font-size: 0.9375rem;
  color: var(--slate-700);
}

.person-card-contact-item a { color: var(--brand-700); }
.person-card-contact-item a:hover { color: var(--brand-900); }


/* ── Downloads-Section + Karten ─────────────────────────────────────────── */

.downloads-section {
  padding: 3.5rem 1.5rem;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}

.downloads-section-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.downloads-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .downloads-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.download-card {
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.download-card:hover {
  border-color: var(--brand-300);
  box-shadow: 0 12px 28px -16px rgba(49, 84, 120, 0.25);
}

.download-card-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.download-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--brand-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-card-titles {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.download-card-version {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--brand-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.download-card-name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.download-card-desc {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.download-card-demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.download-card-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.download-price-pill {
  flex: 1 1 9rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 0.625rem;
  padding: 0.75rem 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.download-price-pill-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.download-price-pill-value {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}

.download-price-pill-meta {
  font-size: 0.6875rem;
  color: var(--slate-500);
}

.download-card-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.download-card-cta .button {
  flex: 1 1 auto;
  justify-content: center;
}


/* ── Legacy-Versions Disclosure ─────────────────────────────────────────── */

.legacy-versions {
  border-top: 1px dashed var(--slate-200);
  padding-top: 1rem;
}

.legacy-versions summary {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-700);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.legacy-versions summary::-webkit-details-marker { display: none; }

.legacy-versions summary::after {
  content: "▾";
  color: var(--slate-400);
  transition: transform 0.2s;
}

.legacy-versions[open] summary::after { transform: rotate(180deg); }

.legacy-versions-body {
  margin-top: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legacy-versions-note {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-style: italic;
  margin-bottom: 0.25rem;
}

.legacy-versions-body a {
  font-size: 0.875rem;
  color: var(--brand-700);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.legacy-versions-body a:hover { color: var(--brand-900); }


/* ── Certificate-Section ─────────────────────────────────────────────────── */

.certificate-section {
  padding: 4rem 1.5rem;
  background: #fff;
}

.certificate-section-inner {
  max-width: 64rem;
  margin: 0 auto;
}

.certificate-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 1.25rem;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .certificate-card {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2.25rem;
  }
}

.certificate-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--brand-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.certificate-body h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
}

.certificate-body p {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.65;
}

.certificate-bullets {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.certificate-bullets li {
  font-size: 0.875rem;
  color: var(--slate-700);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.certificate-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.875rem;
  height: 0.875rem;
  background: var(--brand-100);
  border-radius: 999px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23315478' stroke-width='2' stroke-linecap='round'><polyline points='3 7 6 10 11 4'/></svg>");
  background-size: 0.625rem;
  background-position: center;
  background-repeat: no-repeat;
}


/* ── Direkt-Download-Tabelle ─────────────────────────────── */
.download-table-section {
  padding: 4rem 1.5rem;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
}
.download-table-section-inner { max-width: 64rem; margin: 0 auto; }

.download-table-section .section-header-lead {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-top: 0.75rem;
  max-width: 44rem;
}

.download-table-wrap {
  margin-top: 2rem;
  border: 1px solid var(--slate-300);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
}

.download-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.download-table thead th {
  background: var(--slate-50);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-500);
  padding: 0.875rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--slate-300);
}
.download-table tbody td,
.download-table tbody th {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--slate-100);
  vertical-align: middle;
  text-align: left;
  font-weight: normal;
}
.download-table tbody tr:last-child td,
.download-table tbody tr:last-child th { border-bottom: none; }

.download-table-group-start > th,
.download-table-group-start > td { border-top: 2px solid var(--slate-300); }
.download-table tbody tr:first-child > th,
.download-table tbody tr:first-child > td { border-top: none; }

.download-table-product {
  font-weight: 700;
  color: var(--slate-900);
  font-size: 0.9375rem;
  border-right: 1px solid var(--slate-200);
  background: var(--slate-50);
  white-space: nowrap;
}

.download-table-version {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-500);
  font-variant-numeric: tabular-nums;
}
.download-table-version-current { color: var(--brand-700); }

.download-table-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-700);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.download-table-link:hover { color: var(--brand-900); text-decoration: underline; }
.download-table-link-legacy { color: var(--slate-400); font-weight: 500; }
.download-table-link-legacy:hover { color: var(--slate-600); }

.download-table-note {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--slate-500);
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .download-table thead th,
  .download-table tbody td,
  .download-table tbody th { padding: 0.625rem 0.75rem; }
  .download-table-product { font-size: 0.8125rem; }
  .download-table-link { font-size: 0.75rem; }
}


/* ── Mobile-Menu Submenu-Gruppen ─────────────────────────── */
.mobile-menu-group { margin-bottom: 0.25rem; }

.mobile-menu .mobile-menu-parent {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--slate-900);
}
.mobile-menu .mobile-menu-parent:hover { background: var(--slate-50); }

.mobile-menu-sub {
  display: flex;
  flex-direction: column;
  margin: 0.125rem 0 0.5rem 0.75rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--slate-100);
}
.mobile-menu-sub a {
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate-500);
}
.mobile-menu-sub a:hover { background: var(--slate-50); color: var(--slate-800); }
