/* =========================================================================
   SolCore GmbH – style.css
   Design system, components, responsive layout, dark mode.
   ========================================================================= */

/* -------------------- Fonts (lokal) ------------------------------------- */
@font-face {
  font-family: 'Orbitron';
  src: url('../assets/fonts/orbitron/orbitron-regular.woff2') format('woff2'),
       url('../assets/fonts/orbitron/orbitron-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Orbitron';
  src: url('../assets/fonts/orbitron/orbitron-bold.woff2') format('woff2'),
       url('../assets/fonts/orbitron/orbitron-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/open-sans/open-sans-400.woff2') format('woff2'),
       url('../assets/fonts/open-sans/open-sans-400.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/open-sans/open-sans-600.woff2') format('woff2'),
       url('../assets/fonts/open-sans/open-sans-600.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/open-sans/open-sans-700.woff2') format('woff2'),
       url('../assets/fonts/open-sans/open-sans-700.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* -------------------- Design tokens ------------------------------------- */
:root {
  /* Markenfarben */
  --sc-dark-blue: #1E3740;
  --sc-light-blue: #4089A6;
  --sc-green: #53855D;
  --sc-orange: #DB7552;
  --sc-gray: #8E959B; /* 5. Brandfarbe — kühles Neutralgrau, ergänzend zur Broschüre */

  /* Light Mode */
  --bg: #F5F3EF;
  --bg-alt: #EAE8E3;
  --card-bg: #FFFFFF;
  --text: #1E3740;
  --text-muted: #4A6572;
  --border: #D9DCDF; /* hellere Variante des SC-Gray, fürs Kartenrahmen-Feeling */
  --divider: rgba(142, 149, 155, 0.30);
  --shadow-sm: 0 1px 3px rgba(30, 55, 64, 0.08);
  --shadow-md: 0 4px 12px rgba(30, 55, 64, 0.10);
  --shadow-lg: 0 12px 28px rgba(30, 55, 64, 0.14);

  /* Header — Light-Mode hell, Dark-Mode dunkel (wird unten überschrieben) */
  --header-bg: #F5F3EF;
  --header-text: #1E3740;
  --header-border: rgba(30, 55, 64, 0.10);
  --header-hover-bg: rgba(30, 55, 64, 0.05);
  --header-action-color: #1E3740;
  --footer-bg: #12242B;
  --footer-text: #FFFFFF;
  --footer-muted: #8E959B; /* SC-Gray statt warmem A8B5BB für klareren Footer-Subtext */

  /* Hero / Kontakt — Variablen, damit Dark-Mode entkoppelt werden kann */
  --hero-bg: #1E3740;
  --hero-glow-a: rgba(64, 137, 166, 0.08);
  --hero-glow-b: rgba(219, 117, 82, 0.06);
  --contact-bg: #1E3740;
  --contact-glow: rgba(219, 117, 82, 0.05);

  /* Semantik */
  --link: var(--sc-light-blue);
  --link-hover: var(--sc-orange);
  --cta-bg: var(--sc-orange);
  --cta-bg-hover: #C2603F;
  --cta-text: #FFFFFF;

  /* Typografie */
  --font-display: 'Orbitron', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Layout */
  --container: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --header-h: 72px;

  --transition: 200ms cubic-bezier(.4,.0,.2,1);
}

/* Dark mode via Systempräferenz */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --bg: #12242B;
    --bg-alt: #1E3740;
    --card-bg: #1E3740;
    --text: #E8E8E6;
    --text-muted: #A8B5BB;
    --border: #2C4853;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.5);
    --link: #6FB1CC;

    /* Header im Dark-Mode wieder dunkelblau */
    --header-bg: #1E3740;
    --header-text: #FFFFFF;
    --header-border: rgba(255, 255, 255, 0.06);
    --header-hover-bg: rgba(255, 255, 255, 0.08);
    --header-action-color: #FFFFFF;

    /* Hero & Kontakt im Dark-Mode entkoppeln */
    --hero-bg: #0D1B22;
    --hero-glow-a: rgba(64, 137, 166, 0.16);
    --hero-glow-b: rgba(219, 117, 82, 0.10);
    --contact-bg: #1E3740;
    --contact-glow: rgba(64, 137, 166, 0.10);
  }
}
/* Manuelle Theme-Override */
:root[data-theme='dark'] {
  --bg: #12242B;
  --bg-alt: #1E3740;
  --card-bg: #1E3740;
  --text: #E8E8E6;
  --text-muted: #A8B5BB;
  --border: #2C4853;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.5);
  --link: #6FB1CC;

  --header-bg: #1E3740;
  --header-text: #FFFFFF;
  --header-border: rgba(255, 255, 255, 0.06);
  --header-hover-bg: rgba(255, 255, 255, 0.08);
  --header-action-color: #FFFFFF;

  --hero-bg: #0D1B22;
  --hero-glow-a: rgba(64, 137, 166, 0.16);
  --hero-glow-b: rgba(219, 117, 82, 0.10);
  --contact-bg: #1E3740;
  --contact-glow: rgba(64, 137, 166, 0.10);
}

/* -------------------- Reset --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: var(--link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--link-hover); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; margin: 0 0 var(--space-4); }
h1 { font-size: 2.5rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 var(--space-4); }
:focus-visible {
  outline: 3px solid var(--sc-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--sc-orange);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  z-index: 10000;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* -------------------- Layout helpers ------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
.section {
  padding: var(--space-9) 0;
}
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--sc-dark-blue); color: #fff; }
.section--dark .section-title,
.section--dark .section-subtitle { color: #fff; }

.section-header { text-align: center; margin-bottom: var(--space-8); }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 var(--space-3);
}
.section-subtitle {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sc-orange);
  margin-bottom: var(--space-3);
}

/* -------------------- Buttons ------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn--primary { background: var(--cta-bg); color: var(--cta-text); border-color: var(--cta-bg); }
.btn--primary:hover { background: var(--cta-bg-hover); border-color: var(--cta-bg-hover); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); color: #fff; transform: translateY(-2px); }
.btn--ghost-dark { background: transparent; color: var(--text); border-color: var(--text); }
.btn--ghost-dark:hover { background: var(--text); color: var(--bg); }
.btn--lg { padding: 1rem 2rem; font-size: 1.1rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--sc-orange);
  letter-spacing: 0.02em;
}
.link-arrow:hover { color: var(--cta-bg-hover); transform: translateX(2px); }
.link-arrow::after {
  content: '→';
  transition: transform var(--transition);
}
.link-arrow:hover::after { transform: translateX(4px); }

/* -------------------- Header / Navigation ------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  color: var(--header-text);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition), background var(--transition);
  border-bottom: 1px solid var(--header-border);
}
.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(30, 55, 64, 0.10);
}
:root[data-theme='dark'] .site-header.is-scrolled { box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .site-header.is-scrolled { box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
}

/* Logo-Swap je nach Theme */
.site-header__logo .logo-dark { display: none; }
:root[data-theme='dark'] .site-header__logo .logo-light { display: none; }
:root[data-theme='dark'] .site-header__logo .logo-dark { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .site-header__logo .logo-light { display: none; }
  :root:not([data-theme='light']) .site-header__logo .logo-dark { display: block; }
}
.site-header__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-5);
  justify-content: space-between;
}
.site-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.site-header__logo img { height: 32px; width: auto; }

.main-nav { display: flex; align-items: center; gap: var(--space-5); flex: 1; justify-content: center; }
.main-nav > a,
.main-nav .nav-item--has-sub > a {
  color: var(--header-text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.25rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition);
}
.main-nav > a::after,
.main-nav .nav-item--has-sub > a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--sc-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.main-nav > a:hover::after,
.main-nav > a.is-active::after,
.main-nav .nav-item--has-sub > a:hover::after,
.main-nav .nav-item--has-sub > a.is-active::after { transform: scaleX(1); }

/* Submenu (Produkte) */
.main-nav .nav-item--has-sub {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.nav-item--has-sub:hover .nav-chevron,
.nav-item--has-sub:focus-within .nav-chevron { transform: rotate(180deg); }
.nav-submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: -16px;
  background: var(--header-bg);
  border: 1px solid var(--header-border);
  min-width: 240px;
  padding: 0.4rem 0;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(30, 55, 64, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1100;
}
:root[data-theme='dark'] .nav-submenu { box-shadow: 0 12px 28px rgba(0,0,0,0.45); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .nav-submenu { box-shadow: 0 12px 28px rgba(0,0,0,0.45); }
}
.nav-item--has-sub:hover .nav-submenu,
.nav-item--has-sub:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-submenu a {
  display: block;
  padding: 0.65rem 1.1rem;
  color: var(--header-text);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 500;
  white-space: nowrap;
  position: relative;
}
.nav-submenu a::after { display: none !important; }
.nav-submenu a:hover { background: var(--header-hover-bg); color: var(--sc-orange); }

.header-actions { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  color: var(--header-action-color);
  transition: background var(--transition), color var(--transition);
}
.icon-btn:hover { background: var(--header-hover-bg); }
.icon-btn svg { width: 20px; height: 20px; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme='dark'] .theme-toggle .icon-moon { display: none; }
:root[data-theme='dark'] .theme-toggle .icon-sun { display: inline-block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .theme-toggle .icon-moon { display: none; }
  :root:not([data-theme='light']) .theme-toggle .icon-sun  { display: inline-block; }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--header-action-color);
  opacity: 0.85;
}
.lang-switch button {
  padding: 0.4rem 0.5rem;
  color: var(--header-action-color);
  opacity: 0.7;
  font-weight: 700;
  transition: color var(--transition), opacity var(--transition);
}
.lang-switch button:hover { opacity: 1; }
.lang-switch button.is-active { color: var(--sc-orange); opacity: 1; }
.lang-switch__sep { color: var(--header-action-color); opacity: 0.4; padding: 0 0.1rem; }

/* Mobile-Menü und Mobile-Lang-Switch bleiben auf dunklem Hintergrund — Buttons weiß lassen */
.mobile-menu .lang-switch,
.mobile-menu .lang-switch button,
.mobile-menu .lang-switch__sep { color: #fff; opacity: 1; }
.mobile-menu .lang-switch button { opacity: 0.85; }
.mobile-menu .lang-switch button:hover { opacity: 1; }
.mobile-menu .lang-switch button.is-active { color: var(--sc-orange); opacity: 1; }

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--header-action-color);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.hamburger[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------- Hero --------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  background: var(--hero-bg);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--space-8) var(--space-5);
  transition: background var(--transition);
}
/* Subtiler Brand-Glow — entzerrt insbesondere im Dark-Mode die monotone Fläche */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(60% 60% at 18% 22%, var(--hero-glow-a) 0%, transparent 65%),
    radial-gradient(55% 55% at 82% 78%, var(--hero-glow-b) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.07;
  z-index: 0;
}
.hero__bg img {
  width: min(85vw, 800px);
  max-height: 90vh;
  object-fit: contain;
}
.hero__content {
  position: relative;
  max-width: 920px;
  width: 100%;
  z-index: 2;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.005em;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin: 0 0 var(--space-5);
}
.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto var(--space-7);
  line-height: 1.55;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: chev-bounce 2s infinite;
}
.scroll-indicator svg { width: 28px; height: 28px; }
@keyframes chev-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* -------------------- Über uns ----------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.about-text p { font-size: 1.05rem; }
.about-signoff { font-style: italic; color: var(--text-muted); }
.value-badges { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }
.value-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.value-badge--orange { background: var(--sc-orange); }
.value-badge--blue   { background: var(--sc-light-blue); }
.value-badge--green  { background: var(--sc-green); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.team-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto var(--space-4);
  background: var(--bg-alt);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin: 0 0 var(--space-1); font-family: var(--font-display); font-size: 1.1rem; }
.team-card__role { color: var(--sc-orange); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-3); }
.team-card__quote { font-style: italic; color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; }

/* -------------------- Karten / Grids ----------------------------------- */
.card-grid {
  display: grid;
  gap: var(--space-5);
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--5 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sc-light-blue); }
.card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(64, 137, 166, 0.12);
  color: var(--sc-light-blue);
  margin-bottom: var(--space-4);
}
.card__icon svg { width: 28px; height: 28px; }
/* Service-Karten-Grid: alternierende Icon-Akzente — nur für Nicht-Produktkarten, damit Produkte ihre Orange-Identität behalten */
.card-grid--3 > .card:not(.card--product):nth-child(3n+2) .card__icon { background: rgba(83,133,93,0.16);  color: var(--sc-green); }
.card-grid--3 > .card:not(.card--product):nth-child(3n+3) .card__icon { background: rgba(219,117,82,0.16); color: var(--sc-orange); }
.card h3 { margin-bottom: var(--space-3); }
.card p { color: var(--text-muted); font-size: 0.97rem; flex: 1; }
.card__link { margin-top: var(--space-4); }

/* Produkt-Karten – Akzent in SC Orange */
.card--product .card__icon { background: rgba(219, 117, 82, 0.14); color: var(--sc-orange); }
.card--product h3 { font-family: var(--font-display); text-transform: none; }
.card--product .product-tagline {
  font-style: italic;
  color: var(--sc-orange);
  font-weight: 600;
  margin-bottom: var(--space-3);
  font-size: 0.95rem;
}
.card--product ul {
  margin: 0 0 var(--space-4);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.card--product li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.93rem;
}
.card--product li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sc-orange);
}

/* -------------------- USP / Highlights --------------------------------- */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.highlight {
  text-align: center;
  padding: var(--space-5);
}
.highlight__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: rgba(64, 137, 166, 0.14);
  color: var(--sc-light-blue);
  transition: transform var(--transition);
}
.highlight:hover .highlight__icon { transform: scale(1.05); }
.highlight__icon svg { width: 36px; height: 36px; }
/* Drei Highlights rotieren durch die Markenfarben */
.highlight:nth-child(1) .highlight__icon { background: rgba(64,137,166,0.14); color: var(--sc-light-blue); }
.highlight:nth-child(2) .highlight__icon { background: rgba(83,133,93,0.16);  color: var(--sc-green); }
.highlight:nth-child(3) .highlight__icon { background: rgba(219,117,82,0.16); color: var(--sc-orange); }
.highlight h3 { margin-bottom: var(--space-3); }
.highlight p { color: var(--text-muted); }

.big-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--sc-orange);
  text-align: center;
  max-width: 880px;
  margin: var(--space-8) auto 0;
  line-height: 1.3;
  font-style: italic;
}
.big-quote::before { content: '\201E'; }
.big-quote::after  { content: '\201C'; }

/* -------------------- Testimonials ------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.testimonial {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--sc-orange);
  margin-bottom: var(--space-2);
}
.testimonial__text {
  font-style: italic;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: var(--space-5);
}
.testimonial__author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sc-dark-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 700; line-height: 1.2; }
.testimonial__meta { color: var(--text-muted); font-size: 0.85rem; }
.testimonial__company {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--sc-light-blue);
  font-weight: 600;
  text-decoration: none;
}
.testimonial__company:hover { color: var(--sc-orange); }
.testimonial__company::after {
  content: '↗';
  font-size: 0.8em;
  opacity: 0.7;
}

/* -------------------- Partner-Logos ------------------------------------ */
.partners {
  text-align: center;
}
.partners__title {
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-5);
}
.partner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
}
.partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter var(--transition), opacity var(--transition), color var(--transition);
  padding: var(--space-2) var(--space-3);
}
.partner:hover { filter: grayscale(0); opacity: 1; color: var(--text); }
.partner img { max-height: 36px; width: auto; }

/* -------------------- Kontakt ------------------------------------------ */
.contact {
  background: var(--contact-bg);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
/* Akzent-Glow auf der Kontaktseite – unterscheidet sie optisch vom Hero, gerade im Dark-Mode */
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(70% 50% at 75% 30%, var(--contact-glow) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 30%);
  pointer-events: none;
  z-index: 0;
}
.contact > .container { position: relative; z-index: 1; }
.contact .section-title { color: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: stretch;
}
.contact-grid > * { min-width: 0; height: 100%; }

/* Adresse als zentrierter Block ÜBER dem Grid – Tel/Mail im Fließtext, keine eigenen Karten mehr */
.contact-info-block {
  text-align: center;
  margin-bottom: var(--space-7);
  color: rgba(255,255,255,0.92);
}
.contact-info-block h3 {
  color: #fff;
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: 1.4rem;
}
.contact-info-block p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}
.contact-info-block a {
  color: var(--sc-orange);
  font-weight: 700;
}
.contact-info-block a:hover { color: #fff; }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  height: 100%;
}
.contact-form button[type='submit'] { margin-top: auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  transition: border-color var(--transition), background var(--transition);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sc-orange);
  background: rgba(255,255,255,0.08);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.form-check input { margin-top: 4px; accent-color: var(--sc-orange); }
.form-check a { color: var(--sc-orange); text-decoration: underline; }

.contact-direct {
  text-align: center;
  margin-top: var(--space-7);
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}
.contact-direct a { color: var(--sc-orange); font-weight: 700; }

/* Map – im Kontakt-Grid gleich hoch wie das Formular daneben */
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 420px;
}
.contact-map iframe {
  width: 100%;
  flex: 1 1 auto;
  min-height: 360px;
  border: 0;
  display: block;
  filter: saturate(0.9);
}
.contact-map__footer {
  padding: 0.6rem 1rem;
  background: rgba(0,0,0,0.25);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.contact-map__footer a { color: var(--sc-orange); font-weight: 600; }

/* Direct-Contact Karten (ersetzen das Formular) */
.contact-direct-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  text-align: left;
  color: #fff;
}
.contact-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--sc-orange);
  transform: translateY(-2px);
  color: #fff;
}
.contact-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(219,117,82,0.18);
  color: var(--sc-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
}
.contact-card__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  word-break: break-word;
}
@media (max-width: 768px) {
  .contact-direct-cards { grid-template-columns: 1fr; }
}

/* -------------------- Footer ------------------------------------------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: var(--space-9) 0 var(--space-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
}
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
  color: #fff;
}
.site-footer p, .site-footer li {
  color: var(--footer-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.site-footer a {
  color: var(--footer-muted);
}
.site-footer a:hover { color: #fff; }
.footer-logo img { height: 30px; margin-bottom: var(--space-4); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-4);
  text-align: center;
  font-size: 0.85rem;
  color: var(--footer-muted);
}

/* -------------------- Produktseite-Spezifika --------------------------- */
.product-hero {
  background: var(--sc-dark-blue);
  color: #fff;
  padding: var(--space-9) 0 var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(64,137,166,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(219,117,82,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.product-hero__content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 0 var(--space-5); }
.product-hero h1 {
  font-family: var(--font-display);
  letter-spacing: 0.005em;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin: 0 0 var(--space-4);
}
.product-hero__tagline {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: var(--sc-orange);
  margin: 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-4);
  justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.5; }

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Pakete / Stufen */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: stretch;
}
.tier-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1280px) {
  .tier-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
.tier {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier--featured {
  border: 2px solid var(--sc-orange);
  box-shadow: var(--shadow-md);
}
.tier__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sc-orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
}
.tier h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: var(--space-2);
  letter-spacing: 0.005em;
}
.tier__sub { color: var(--text-muted); margin-bottom: var(--space-4); font-size: 0.9rem; }
.tier ul { display: flex; flex-direction: column; gap: 0.6rem; }
.tier li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--text);
}
.tier li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--sc-green);
  border-bottom: 2px solid var(--sc-green);
  transform: rotate(-45deg);
}

/* Feature-Liste (Icon + Text) */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: var(--card-bg);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(64,137,166,0.12);
  color: var(--sc-light-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feature__icon svg { width: 24px; height: 24px; }
/* Feature-Listen: Icons rotieren durch Markenfarben für mehr Farbtiefe */
.feature-list .feature:nth-child(3n+2) .feature__icon { background: rgba(83,133,93,0.16);  color: var(--sc-green); }
.feature-list .feature:nth-child(3n+3) .feature__icon { background: rgba(219,117,82,0.16); color: var(--sc-orange); }
.feature h3 { margin-bottom: var(--space-2); font-size: 1.05rem; font-family: var(--font-display); }
.feature p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* 3-2-1 Diagramm (Vault) */
.three-two-one {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin: var(--space-7) 0;
}
.tto {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.tto:hover { transform: translateY(-4px); }
.tto__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--sc-orange);
  margin-bottom: var(--space-2);
}
.tto h3 { font-family: var(--font-display); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--space-2); }
.tto p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* Anwendungsbeispiele */
.use-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
}
.use-case {
  padding: var(--space-5);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  color: var(--text);
}
.use-case strong { display: block; font-family: var(--font-display); margin-bottom: var(--space-2); color: var(--sc-light-blue); }

/* Produkt-Zitat */
.product-quote {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sc-orange);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.4;
}
.product-quote::before { content: '\201E'; }
.product-quote::after  { content: '\201C'; }

/* CTA-Banner */
.cta-banner {
  background: var(--sc-orange);
  color: #fff;
  text-align: center;
  padding: var(--space-8) var(--space-5);
}
.cta-banner h2 {
  font-family: var(--font-display);
  letter-spacing: 0.005em;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: var(--space-4);
}
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto var(--space-5); }
.cta-banner .btn {
  background: #fff;
  color: var(--sc-orange);
  border-color: #fff;
}
.cta-banner .btn:hover {
  background: var(--sc-dark-blue);
  border-color: var(--sc-dark-blue);
  color: #fff;
}

/* Ideal für */
.ideal-for {
  background: var(--card-bg);
  border-left: 4px solid var(--sc-light-blue);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-md);
  max-width: 800px;
  margin: 0 auto;
}
.ideal-for h3 { font-family: var(--font-display); margin-bottom: var(--space-2); }

/* -------------------- Legal Pages -------------------------------------- */
.legal-content {
  padding: var(--space-9) 0;
  max-width: 820px;
  margin: 0 auto;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}
.legal-text {
  font-size: 1rem;
  color: var(--text);
}
.legal-text h2 { margin-top: var(--space-7); }
.legal-text h3 { margin-top: var(--space-6); }

/* -------------------- Mobile Menu Overlay ------------------------------ */
.mobile-menu {
  display: none;
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .site-header > .site-header__inner > .header-actions > .lang-switch,
  .header-actions > .lang-switch { display: none; }
  .hamburger { display: inline-flex; }

  .mobile-menu {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--sc-dark-blue);
    color: #fff;
    padding: var(--space-7) var(--space-5);
    transform: translateX(100%);
    transition: transform 300ms cubic-bezier(.4,.0,.2,1);
    z-index: 999;
    overflow-y: auto;
  }
  .mobile-menu.is-open { transform: translateX(0); }
  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }
  .mobile-menu nav > a {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.4rem;
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block;
  }
  .mobile-submenu {
    display: flex;
    flex-direction: column;
    padding: 0.25rem 0 0.25rem 1rem;
    margin-bottom: var(--space-2);
    border-left: 2px solid rgba(255,255,255,0.18);
  }
  .mobile-submenu a {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.55rem 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .mobile-submenu a:last-child { border-bottom: 0; }

  /* Lang-Switch im Mobile-Menü oben angepinnt – immer sofort sichtbar */
  .mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding-bottom: var(--space-4);
    margin-bottom: var(--space-5);
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .mobile-menu__lang-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sc-gray);
  }
  .mobile-menu .lang-switch {
    display: inline-flex !important;
    font-size: 1rem;
  }
  .mobile-menu .lang-switch button { padding: 0.5rem 0.9rem; }
}

/* -------------------- Responsive --------------------------------------- */
@media (max-width: 1024px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .tier-grid    { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .three-two-one { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .team-grid  { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
  .form-row     { grid-template-columns: 1fr; }
  .section      { padding: var(--space-8) 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .card-grid--3 { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .hero__cta    { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .container    { padding: 0 var(--space-4); }
}

/* Body lock when mobile menu open */
body.menu-open { overflow: hidden; }

/* -------------------- Stats Strip --------------------------------------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid var(--divider);
}
.stat {
  text-align: center;
  padding: var(--space-3);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--sc-orange);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}
.stat__label {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .stats-bar { grid-template-columns: 1fr; gap: var(--space-3); }
}

/* -------------------- Mid-Page CTA -------------------------------------- */
.mid-cta {
  background: var(--bg-alt);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: var(--space-7) 0;
}
.mid-cta__inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: var(--space-6);
  align-items: center;
}
.mid-cta__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sc-orange);
  margin-bottom: var(--space-2);
}
.mid-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin: 0 0 var(--space-2);
  color: var(--text);
  line-height: 1.25;
}
.mid-cta__sub {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.98rem;
}
@media (max-width: 768px) {
  .mid-cta__inner { grid-template-columns: 1fr; gap: var(--space-4); }
  .mid-cta__inner .btn { justify-self: start; }
}

/* -------------------- FAQ Akkordeon ------------------------------------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
  border-color: var(--sc-light-blue);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-4) var(--space-5);
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  color: var(--text);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--sc-orange);
  border-bottom: 2px solid var(--sc-orange);
  transform: rotate(45deg);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-right: 6px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-bottom: -4px; }
.faq-item__answer {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-item__answer p { margin: 0 0 var(--space-3); }
.faq-item__answer p:last-child { margin-bottom: 0; }

/* -------------------- Single Testimonial (Pilotkunden-Hinweis) ---------- */
.single-testimonial {
  max-width: 820px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--sc-orange);
  border-radius: var(--radius-md);
  padding: var(--space-7);
  text-align: center;
}
.single-testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--sc-orange);
  margin-bottom: var(--space-3);
}
.single-testimonial__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 var(--space-4);
}
.single-testimonial__sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 var(--space-4);
}

/* -------------------- Product Price Badge ------------------------------- */
/* Kompakte Pille NUR um die Zahl, Einheit fließt daneben/darunter */
.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
  margin: 0 0 var(--space-3);
}
.product-price__badge {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(83, 133, 93, 0.12);
  color: var(--sc-green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.product-price__unit {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
}

/* Pricing-Strip auf den Produkt-Detailseiten */
.pricing-strip {
  background: linear-gradient(135deg, rgba(83,133,93,0.10) 0%, rgba(64,137,166,0.08) 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--sc-green);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
  max-width: 920px;
  margin: 0 auto;
}
.pricing-strip__main {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.pricing-strip__main em {
  font-style: normal;
  color: var(--sc-green);
}
.pricing-strip__sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  max-width: 480px;
}

/* -------------------- Form-Banner (Erfolg/Fehler) ----------------------- */
.form-banner {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid var(--sc-green);
  color: #fff;
}
.form-banner--error { border-left-color: var(--sc-orange); }
.form-banner strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #fff;
}
.form-banner p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

/* -------------------- Honeypot (versteckt für Menschen, Bots fallen rein) -- */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* -------------------- Service-Journey ("Roter Faden") ------------------- */

/* Intro-Quote über den Leistungs-Karten */
.services-intro {
  max-width: 760px;
  margin: 0 auto var(--space-7);
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  position: relative;
}
.services-intro::before {
  content: '\201E';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--sc-orange);
  display: block;
  line-height: 0.5;
  margin-bottom: var(--space-3);
}

/* Story-Eyebrow oberhalb der Section-Title in leistungen.html */
.story-headline {
  text-align: center;
  margin-bottom: var(--space-8);
}
.story-headline .eyebrow {
  color: var(--sc-light-blue);
  margin-bottom: var(--space-3);
}
.story-headline h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 var(--space-3);
}
.story-headline p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-style: italic;
}

/* Phasen-Label auf den Service-Cards (z.B. "01 · Der Einstieg") */
.card__phase {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sc-orange);
  margin-bottom: var(--space-2);
}
.card__phase__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-pill);
  background: rgba(219,117,82,0.14);
  color: var(--sc-orange);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Journey-Stages auf leistungen.html: nummerierte Sections mit großer Zahl */
.journey-stage {
  position: relative;
  padding: var(--space-7) 0;
}
.journey-stage + .journey-stage { border-top: 1px solid var(--divider); }
.journey-stage__grid {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--space-6);
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}
.journey-stage__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--sc-orange);
  opacity: 0.85;
}
.journey-stage__body { min-width: 0; }
.journey-stage__phase {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sc-light-blue);
  margin-bottom: var(--space-2);
}
.journey-stage h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 0 0 var(--space-4);
  line-height: 1.2;
}
.journey-stage__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(64, 137, 166, 0.12);
  color: var(--sc-light-blue);
  margin-bottom: var(--space-4);
}
.journey-stage__icon svg { width: 30px; height: 30px; }
.journey-stage__desc {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 var(--space-5);
  font-style: italic;
}
.journey-stage__customer {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--sc-green);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin: 0 0 var(--space-5);
}
.journey-stage__customer__arrow {
  color: var(--sc-green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 2px;
}
.journey-stage__customer__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sc-green);
  display: block;
  margin-bottom: 0.25rem;
}
.journey-stage__customer p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

/* Alternate journey stages — leichter Hintergrundwechsel für visuelle Rhythmik */
.journey-stage:nth-child(even) .journey-stage__icon {
  background: rgba(83, 133, 93, 0.14);
  color: var(--sc-green);
}
.journey-stage:nth-child(3n) .journey-stage__icon {
  background: rgba(219, 117, 82, 0.16);
  color: var(--sc-orange);
}

@media (max-width: 640px) {
  .journey-stage__grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .journey-stage__num  { font-size: 2.4rem; opacity: 0.6; }
}

/* -------------------- Service Detail Pages ------------------------------ */

/* Wrapper für den langen Story-Inhalt, lesefreundliche Breite */
.detail-page {
  max-width: 760px;
  margin: 0 auto;
}
.detail-page > * + * { margin-top: var(--space-5); }

/* H2 als ruhige Section-Trenner */
.detail-page h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: 0.005em;
  margin: var(--space-8) 0 var(--space-3);
  line-height: 1.25;
}
.detail-page h2:first-child { margin-top: 0; }
.detail-page p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
}
.detail-page p strong { font-weight: 700; }

/* Story-Lead: hervorgehobene erste Absätze nach dem Sub-Header */
.story-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text);
}
.story-lead em {
  font-style: italic;
  color: var(--text-muted);
}

/* Akzent-Block für den "Pull Quote" / Schlüsselsatz nach dem Lead */
.story-emph {
  background: var(--card-bg);
  border-left: 4px solid var(--sc-orange);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  margin: var(--space-5) 0;
}
.story-emph strong { color: var(--sc-orange); }

/* Liste mit Heading + Beschreibung (Unser Ansatz / Was bedeutet das …) */
.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.feature-bullets li {
  position: relative;
  padding: 0 0 0 1.6rem;
  line-height: 1.55;
  color: var(--text);
}
.feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sc-orange);
}
.feature-bullets li strong { font-weight: 700; color: var(--text); }

/* Zwei-Spalter "Wann brauchen Sie uns?" — Ja-/Nein-Block nebeneinander */
.fit-check {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin: var(--space-5) 0;
}
.fit-check__col {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.fit-check__col--no  { border-left: 4px solid var(--sc-gray); }
.fit-check__col--yes { border-left: 4px solid var(--sc-green); }
.fit-check__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 var(--space-3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.3;
}
.fit-check__col--no  .fit-check__title { color: var(--text-muted); }
.fit-check__col--yes .fit-check__title { color: var(--sc-green); }
.fit-check__title::before {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.fit-check__col--no  .fit-check__title::before { content: '–'; background: rgba(142,149,155,0.18); color: var(--sc-gray); }
.fit-check__col--yes .fit-check__title::before { content: '✓'; background: rgba(83,133,93,0.18);  color: var(--sc-green); }
.fit-check__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.fit-check__list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}
.fit-check__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.fit-check__col--no  .fit-check__list li::before { background: var(--sc-gray); opacity: 0.6; }
.fit-check__col--yes .fit-check__list li::before { background: var(--sc-green); }
@media (max-width: 680px) {
  .fit-check { grid-template-columns: 1fr; }
}

/* Schluss-Block: "Wollen Sie wissen…?" + persönlicher Tonfall */
.detail-closer {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-6);
  text-align: center;
  margin-top: var(--space-7);
}
.detail-closer p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 var(--space-3);
  color: var(--text);
}
.detail-closer__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-4);
  display: block;
}
.detail-closer .btn { margin-top: 0; }
