/* =========================================================================
   Shift Consulting — Homepage-spezifische Styles
   Ergänzt styles.css. Komponenten, die nur auf der Startseite vorkommen.
   ========================================================================= */

/* =========================================================================
   HEADER — scroll-aware (transparent über Hero, weiß nach Scroll)
   ========================================================================= */
body.has-hero { padding-top: 0; }          /* Header overlapped Hero */
body.has-hero .sc-header {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}
body.has-hero .sc-header .sc-nav__item { color: rgba(255,255,255,0.85); }
body.has-hero .sc-header .sc-nav__item:hover { color: #fff; }
body.has-hero .sc-header__logo img.sc-header__logo--dark { display: none; }
body.has-hero .sc-header__logo img.sc-header__logo--light { display: block; }
body.has-hero .sc-header .sc-btn--primary { background: var(--shift-navy); }
body.has-hero .sc-header .sc-btn--primary:hover { background: var(--shift-cyan); }
body.has-hero .sc-header .sc-nav__toggle { color: #fff; }

body.has-hero.is-scrolled .sc-header {
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-header);
}
body.has-hero.is-scrolled .sc-header .sc-nav__item { color: var(--fg-1); }
body.has-hero.is-scrolled .sc-header .sc-nav__item:hover { color: var(--shift-violet); }
body.has-hero.is-scrolled .sc-header__logo img.sc-header__logo--dark { display: block; }
body.has-hero.is-scrolled .sc-header__logo img.sc-header__logo--light { display: none; }
body.has-hero.is-scrolled .sc-header .sc-btn--primary { background: var(--shift-navy); }
body.has-hero.is-scrolled .sc-header .sc-btn--primary:hover { background: var(--shift-cyan); }
body.has-hero.is-scrolled .sc-header .sc-nav__toggle { color: var(--fg-1); }

/* Header logo dual: light variant only loads on home */
.sc-header__logo img.sc-header__logo--light { display: none; }
.sc-header__logo img { height: 64px; }
@media (max-width: 960px) { .sc-header__logo img { height: 44px; } }

/* =========================================================================
   FLOATING RAIL — Phone / Mail / Calendar (rechts fix)
   ========================================================================= */
.sc-rail {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 90;
  display: flex; flex-direction: column; gap: 4px;
}
.sc-rail__btn {
  width: 52px; height: 52px;
  background: var(--shift-navy); color: #fff;
  display: grid; place-items: center;
  border: 0; cursor: pointer; text-decoration: none;
  transition: background var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
  position: relative;
}
.sc-rail__btn::before {
  content: attr(aria-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--shift-navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 8px 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.sc-rail__btn::after {
  content: "";
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  border: 6px solid transparent;
  border-left-color: var(--shift-navy);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.sc-rail__btn:hover::before,
.sc-rail__btn:hover::after,
.sc-rail__btn:focus-visible::before,
.sc-rail__btn:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.sc-rail__btn--accent::before { background: var(--shift-violet); }
.sc-rail__btn--accent::after { border-left-color: var(--shift-violet); }
.sc-rail__btn svg, .sc-rail__btn i { width: 22px; height: 22px; stroke-width: 1.5; }
.sc-rail__btn:hover { background: var(--shift-cyan); color: #fff; transform: translateX(-2px); }
.sc-rail__btn--accent { background: var(--shift-violet); }
.sc-rail__btn--accent:hover { background: var(--shift-cyan); }

@media (max-width: 640px) {
  .sc-rail { display: none; }  /* Bei Mobil im Header / Footer abgedeckt */
}

/* =========================================================================
   HOME HERO — Vollbild-Hintergrund mit Foto, Text überlagert links
   ========================================================================= */
.home-hero {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
  padding: 180px 0 80px;     /* Top-Padding kompensiert den überlappenden Header */
  overflow: hidden;
  /* Foto: kleiner gehalten, anker rechts unten, geht bis unter den Header */
  background-image: url('../img/photos/hero-bg.webp');
  background-size: auto 88%;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.home-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    /* Verlauf links → dunkel, damit Text liest. Rechts transparent, Foto sichtbar. */
    linear-gradient(90deg,
      rgba(10,10,10,0.95) 0%,
      rgba(10,10,10,0.85) 32%,
      rgba(10,10,10,0.3) 58%,
      rgba(10,10,10,0.0) 80%),
    /* leichte Verdunkelung von oben für Header-Lesbarkeit */
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 200px);
  pointer-events: none;
  z-index: 1;
}
.home-hero__inner {
  position: relative; z-index: 3;
  max-width: 1200px; margin: 0 auto;
  padding: 0 var(--container-pad);
}
.home-hero__copy { max-width: 760px; }
.home-hero__tagline {
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px; display: block;
}
.home-hero__tagline span { color: rgba(255,255,255,0.55); margin: 0 6px; font-weight: 400; }
.home-hero__h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(44px, 5.5vw, 76px);
  letter-spacing: 0.005em; line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 32px;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .home-hero__h1 { white-space: normal; }
}
.home-hero__lede {
  font-size: 17px; line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 0 40px;
}
.home-hero__lede strong { color: #fff; font-weight: 600; }
.home-hero__cta {
  display: flex; gap: 14px; flex-wrap: nowrap;
  margin-bottom: 64px;
}
@media (max-width: 640px) {
  .home-hero__cta { flex-wrap: wrap; }
}
.home-hero__cta .sc-btn--secondary {
  background: transparent; border: 1px solid rgba(255,255,255,0.55); color: #fff;
}
.home-hero__cta .sc-btn--secondary:hover {
  background: var(--shift-cyan); border-color: var(--shift-cyan); color: #fff;
}

/* Hero meta row: stats + ProvenExpert badge */
.home-hero__meta {
  display: flex; gap: 36px; align-items: center; flex-wrap: nowrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.home-hero__stat {
  font-family: var(--font-display); font-weight: 100;
  font-size: 48px; letter-spacing: 0.02em; line-height: 1;
  color: #fff;
}
.home-hero__stat-lbl {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-top: 10px;
}

/* ProvenExpert badge */
.pe-badge { display: flex; align-items: center; gap: 12px; }
.pe-badge__seal {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, #1ba1d6 0%, #117399 100%);
  border: 2px solid #fff3;
  display: grid; place-items: center;
  color: #fff;
  text-align: center;
  position: relative;
}
.pe-badge__seal::before {
  content: "✓"; font-size: 22px; line-height: 1; color: #fff;
  text-shadow: 0 0 4px rgba(0,0,0,0.3);
}
.pe-badge__seal-ribbon {
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  background: var(--shift-cyan); color: #fff;
  font-size: 7px; letter-spacing: 0.1em; padding: 2px 4px;
  text-transform: uppercase; white-space: nowrap;
}
.pe-badge__body { display: flex; flex-direction: column; gap: 2px; }
.pe-badge__name {
  font-size: 13px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 6px;
}
.pe-badge__name::before {
  content: "✓"; display: inline-grid; place-items: center;
  width: 14px; height: 14px; border-radius: 50%;
  background: #1ba1d6; color: #fff;
  font-size: 9px;
}
.pe-badge__rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.75); }
.pe-badge__stars { color: #f5c518; letter-spacing: 1px; }
.pe-badge__tagline { font-size: 9px; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); text-transform: uppercase; }

/* Hero portrait — wird nicht mehr als separates <img> benötigt,
   da das Foto jetzt Hintergrund der ganzen Section ist. Wir lassen die
   Klasse für Rückwärtskompatibilität mit dem HTML stehen, blenden sie aber aus. */
.home-hero__portrait { display: none; }

@media (max-width: 1100px) {
  .home-hero__copy { max-width: 560px; }
  .home-hero__meta { flex-wrap: wrap; gap: 28px; }
}
@media (max-width: 900px) {
  .home-hero {
    min-height: auto;
    padding: 140px 0 56px;
    background-position: 75% center;
  }
  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.75) 60%, rgba(10,10,10,0.9) 100%);
  }
  .home-hero__meta { gap: 24px 32px; }
  .home-hero__stat { font-size: 36px; }
  .pe-badge { margin-left: 0; }
}

/* =========================================================================
   SECTION INTRO (zentriert, mit Italic-Sub)
   ========================================================================= */
.sc-intro { text-align: center; max-width: 920px; margin: 0 auto 64px; }
.sc-intro .sc-overline { margin-bottom: 16px; }
.sc-intro h2 { margin-bottom: 32px; }
.sc-intro__quote {
  font-style: italic; font-size: 17px; line-height: 1.7;
  color: var(--fg-3); max-width: 820px; margin: 0 auto;
}

/* =========================================================================
   SERVICE-GRID 2x3 (Homepage)
   ========================================================================= */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
.svc-card {
  background: #fff; padding: 48px 40px;
  display: flex; flex-direction: column; gap: 24px;
  text-decoration: none;
  min-height: 320px;
  transition: background var(--t-fast);
}
.svc-card:hover { background: var(--warm-50); }
.svc-card__icon { color: var(--shift-navy); }
.svc-card__icon svg, .svc-card__icon i { width: 32px; height: 32px; stroke-width: 1.5; }
.svc-card__title {
  font-family: var(--font-display); font-weight: 300;
  text-transform: uppercase; font-size: 19px; letter-spacing: 0.06em;
  line-height: 1.2; color: var(--fg-1);
}
.svc-card__body { color: var(--fg-3); font-size: 14.5px; line-height: 1.65; margin: 0; flex: 1; }
.svc-card__more {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: 14px; color: var(--fg-1);
  margin-top: 4px;
}
.svc-card__more::after { content: " →"; }
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { min-height: 0; padding: 36px 28px; }
}

/* =========================================================================
   USP DARK BAND — Was uns einzigartig macht
   ========================================================================= */
.usp-band { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.usp-band__left { padding-right: 24px; }
.usp-band__quote {
  border-left: 3px solid var(--shift-violet);
  padding: 8px 0 8px 32px;
  margin-top: 40px;
  color: rgba(255,255,255,0.85);
  font-size: 15.5px; line-height: 1.7;
}
.usp-band__quote p { margin: 0 0 16px; }
.usp-band__quote p:last-child { margin: 0; color: #fff; }

.usp-list { margin-bottom: 40px; }
.usp-list:last-child { margin-bottom: 0; }
.usp-list__head {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 12px; margin-bottom: 16px;
}
.usp-list ul { list-style: none; margin: 0; padding: 0; }
.usp-list li {
  color: #fff; font-size: 15px; line-height: 1.6;
  padding: 6px 0 6px 28px; position: relative;
}
.usp-list li::before {
  content: "—";
  position: absolute; left: 0; top: 6px;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) { .usp-band { grid-template-columns: 1fr; gap: 40px; } }

/* =========================================================================
   ÜBER UNS — 2-Spalten mit Foto rechts und Badge-Overlay
   ========================================================================= */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}
.about-grid__copy h2 { margin-bottom: 24px; }
.about-grid__lede {
  color: var(--fg-2); font-size: 15.5px; line-height: 1.7;
  margin: 0 0 24px;
}
.about-grid__lede:last-of-type { margin-bottom: 36px; }
.about-grid__highlight strong { font-weight: 600; color: var(--fg-1); }

.about-grid__check {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}
.about-grid__check li {
  font-size: 14px; color: var(--fg-2);
  padding-left: 24px; position: relative;
  list-style: none;
}
.about-grid__check li::before {
  content: "—"; position: absolute; left: 0; top: 0;
  color: var(--fg-muted);
}

.about-grid__visual { position: relative; }
.about-grid__visual img {
  width: 100%; height: 540px; object-fit: cover; object-position: center top;
  background: var(--warm-100);
}
.about-grid__badges {
  position: absolute; left: 24px; right: 24px; bottom: 28px;
  background: #fff;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  padding: 16px 8px;
  box-shadow: 0 8px 24px rgba(11,37,63,0.12);
  align-items: center;
}
.about-grid__badge {
  display: grid; place-items: center;
  padding: 8px;
  border-right: 1px solid var(--border-soft);
  min-height: 64px;
}
.about-grid__badge:last-child { border-right: 0; }
.about-grid__badge img { max-width: 100%; max-height: 56px; object-fit: contain; }

@media (max-width: 1023px) { .about-grid { grid-template-columns: 1fr; gap: 56px; } }
@media (max-width: 600px) {
  .about-grid__check { grid-template-columns: 1fr; }
  .about-grid__visual img { height: 360px; }
  .about-grid__badges { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .about-grid__badge { border-right: 0; border-bottom: 1px solid var(--border-soft); }
  .about-grid__badge:nth-child(3), .about-grid__badge:nth-child(4) { border-bottom: 0; }
}

/* =========================================================================
   CAROUSEL — generic engine
   ========================================================================= */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track {
  display: flex; gap: 24px;
  transition: transform 400ms var(--ease-out);
  will-change: transform;
}
.carousel__item { flex: 0 0 auto; }
.carousel__nav {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 40px;
}
.carousel__btn {
  background: transparent; border: 1px solid var(--border-strong);
  padding: 10px 14px; cursor: pointer;
  color: var(--fg-1); border-radius: 0;
  display: grid; place-items: center;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.carousel__btn:hover { background: var(--gray-100); border-color: var(--fg-1); }
.carousel__btn svg { width: 16px; height: 16px; }
.carousel__btn[disabled] { opacity: 0.35; cursor: not-allowed; }
.carousel__dots { display: flex; gap: 6px; padding: 0 16px; }
.carousel__dot {
  width: 8px; height: 4px; background: var(--gray-300);
  border: 0; padding: 0; cursor: pointer;
  transition: width var(--t-base), background var(--t-base);
}
.carousel__dot.is-active { width: 24px; background: var(--shift-navy); }

/* Carousel on dark backgrounds */
.sc-section--dark .carousel__btn { color: #fff; border-color: rgba(255,255,255,0.3); background: transparent; }
.sc-section--dark .carousel__btn:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.sc-section--dark .carousel__dot { background: rgba(255,255,255,0.3); }
.sc-section--dark .carousel__dot.is-active { background: #fff; }

/* =========================================================================
   PARTNER CAROUSEL
   ========================================================================= */
.partner-track .carousel__item {
  width: calc((100% - 72px) / 4);   /* 4-up with 3*24px gaps */
  aspect-ratio: 3 / 2;
  background: #fff;
  border: 1px solid var(--border-soft);
  display: grid; place-items: center;
  padding: 24px 32px;
}
.partner-track .carousel__item a {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  text-decoration: none;
  transition: transform var(--t-base) var(--ease-out, ease-out), opacity var(--t-base) var(--ease-out, ease-out);
}
.partner-track .carousel__item a:hover { transform: translateY(-2px); opacity: 0.85; }
.partner-track img { max-width: 100%; max-height: 80%; object-fit: contain; }
@media (max-width: 900px) {
  .partner-track .carousel__item { width: calc((100% - 24px) / 2); }
}
@media (max-width: 540px) {
  .partner-track .carousel__item { width: 100%; }
}

/* =========================================================================
   CASE STUDY / MISSION SPLIT
   ========================================================================= */
.case-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.case-split__copy h2 { margin-bottom: 24px; }
.case-split__kpi-line {
  font-size: 15.5px; line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 24px;
}
.case-split__kpi-line strong { color: var(--fg-1); font-weight: 600; }
.case-split__body {
  font-size: 15.5px; line-height: 1.7; color: var(--fg-3);
  margin: 0 0 40px;
}
.case-split__visual img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 12px 32px rgba(11,37,63,0.15));
}
@media (max-width: 900px) { .case-split { grid-template-columns: 1fr; gap: 48px; } }

/* =========================================================================
   VIDEO CARDS
   ========================================================================= */
.video-track .carousel__item {
  width: calc((100% - 72px) / 4);
}
.video-card {
  display: block; text-decoration: none; color: inherit;
}
.video-card__thumb {
  position: relative; aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1a3556 0%, #0a2540 100%);
  overflow: hidden;
}
.video-card__thumb img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.92;
  transition: opacity var(--t-base), transform var(--t-base);
}
.video-card:hover .video-card__thumb img { opacity: 1; transform: scale(1.03); }
.video-card__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid; place-items: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: transform var(--t-base);
}
.video-card:hover .video-card__play { transform: translate(-50%, -50%) scale(1.08); }
.video-card__play::before {
  content: "";
  width: 0; height: 0;
  border-left: 14px solid var(--shift-navy);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.video-card__duration {
  position: absolute; right: 10px; bottom: 10px;
  background: rgba(0,0,0,0.7); color: #fff;
  font-size: 12px; padding: 4px 8px;
  letter-spacing: 0.04em;
}
.video-card__title {
  font-size: 15px; font-weight: 500; color: #fff;
  margin-top: 16px; text-align: center;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) { .video-track .carousel__item { width: calc((100% - 24px) / 2); } }
@media (max-width: 540px) { .video-track .carousel__item { width: 100%; } }

/* Placeholder thumbnail (when no image yet) */
.video-card__thumb--ph {
  background:
    radial-gradient(circle at 30% 40%, rgba(124,58,237,0.25), transparent 50%),
    linear-gradient(135deg, #1a3556 0%, #0a2540 100%);
}
.video-card__thumb--ph::after {
  content: attr(data-label);
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--font-display); font-weight: 300;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* =========================================================================
   TESTIMONIAL (Kundenstimmen) — größer & zentriert
   ========================================================================= */
.testi-card {
  background: #fff; border: 1px solid var(--border-soft);
  padding: 64px 80px;
  position: relative;
}
.testi-card__quote-mark {
  position: absolute; left: 40px; top: 32px;
  font-family: var(--font-display); font-weight: 100;
  font-size: 64px; line-height: 0.6; color: var(--gray-300);
}
.testi-card__text {
  font-style: italic; font-size: 18px; line-height: 1.7;
  color: var(--fg-2); margin: 0 0 32px;
}
.testi-card__author { display: flex; gap: 16px; align-items: center; }
.testi-card__name { font-size: 15px; font-weight: 600; color: var(--fg-1); }
.testi-card__role { font-size: 13px; color: var(--fg-3); margin-top: 2px; }
@media (max-width: 700px) { .testi-card { padding: 48px 28px; } }

.rating-line {
  text-align: center; font-size: 14px; color: var(--fg-3);
  margin-bottom: 48px;
}
.rating-line strong { color: var(--fg-1); font-weight: 600; }

/* =========================================================================
   METHODIK — Visual links + Text rechts mit Checkmark-Bullets
   ========================================================================= */
.method-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.method-split__visual {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 40%, rgba(124,58,237,0.6) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(10,182,212,0.4) 0%, transparent 50%),
    linear-gradient(135deg, #1a3556 0%, #0a2540 60%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.method-split__visual::before, .method-split__visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(2px);
}
.method-split__visual::before {
  width: 56%; height: 50%; left: 22%; top: 28%;
  transform: skewX(-8deg) rotate(-2deg);
  box-shadow: 0 0 60px rgba(124,58,237,0.4);
}
.method-split__visual::after {
  width: 48%; height: 42%; left: 32%; top: 36%;
  transform: skewX(-8deg) rotate(2deg);
  box-shadow: 0 0 40px rgba(10,182,212,0.35);
}
.method-split__body h2 { margin-bottom: 24px; }
.method-split__body p { color: var(--fg-3); font-size: 15.5px; line-height: 1.7; margin: 0 0 32px; }
.method-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.method-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 16px; color: var(--fg-1);
}
.method-list li svg, .method-list li i { width: 18px; height: 18px; color: var(--shift-navy); flex-shrink: 0; }
@media (max-width: 900px) {
  .method-split { grid-template-columns: 1fr; gap: 48px; }
  .method-split__visual { aspect-ratio: 3 / 2; }
}

/* =========================================================================
   PROCESS USPS — 3-col mit großem Icon-Circle
   ========================================================================= */
.process-usps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; margin-top: 80px; }
.process-usp { text-align: center; }
.process-usp__icon {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  margin: 0 auto 32px;
  display: grid; place-items: center;
  color: var(--shift-navy);
}
.process-usp__icon svg, .process-usp__icon i { width: 28px; height: 28px; stroke-width: 1.5; }
.process-usp h3 {
  font-family: var(--font-display); font-weight: 300;
  text-transform: uppercase; font-size: 17px; letter-spacing: 0.16em;
  margin: 0 0 20px; color: var(--fg-1);
}
.process-usp p { color: var(--fg-3); font-size: 14.5px; line-height: 1.7; margin: 0; }
@media (max-width: 900px) { .process-usps { grid-template-columns: 1fr; gap: 48px; } }

/* =========================================================================
   IMAGE COLLAGE — Großes Hauptbild + 2 gestapelte Bilder rechts
   ========================================================================= */
.collage { display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; }
.collage__main { aspect-ratio: 3 / 4; overflow: hidden; }
.collage__main img { width: 100%; height: 100%; object-fit: cover; }
.collage__side { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.collage__side > div { overflow: hidden; }
.collage__side img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .collage { grid-template-columns: 1fr; }
  .collage__main { aspect-ratio: 4 / 5; }
  .collage__side { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .collage__side > div { aspect-ratio: 4 / 3; }
}

/* =========================================================================
   PHILO / PROMISE — 2-Spalten Text auf hellem Hintergrund
   ========================================================================= */
.philo { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.philo__col h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(26px, 3vw, 36px); letter-spacing: 0.04em;
  text-transform: uppercase; line-height: 1.15;
  margin: 0 0 28px; color: var(--fg-1);
}
.philo__col p { color: var(--fg-3); font-size: 15.5px; line-height: 1.75; margin: 0 0 20px; }
@media (max-width: 900px) { .philo { grid-template-columns: 1fr; gap: 48px; } }

/* =========================================================================
   CTA-PANEL — Bereit für den nächsten Schritt? (dunkler Block)
   ========================================================================= */
.cta-panel {
  background: var(--shift-navy);
  color: #fff;
  display: grid; grid-template-columns: 1.1fr 1.4fr;
  gap: 56px; align-items: start;
  padding: 64px;
}
.cta-panel__head h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(26px, 3vw, 36px); letter-spacing: 0.02em;
  text-transform: uppercase; line-height: 1.1;
  margin: 0 0 24px; color: #fff;
  white-space: nowrap;
}
.cta-panel__lede {
  color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.65;
  margin: 0 0 28px;
}
.cta-panel__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-panel .sc-btn--outline-light { background: transparent; border-color: rgba(255,255,255,0.4); }

.cta-right { display: flex; flex-direction: column; gap: 20px; align-items: stretch; }
.cta-right__btn-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  width: 100%;
}
.cta-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}
.cta-step {
  display: flex; flex-direction: column; justify-content: center;
  min-height: 138px;
}
.cta-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 24px 16px; text-align: center;
}
.cta-step__num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--shift-violet); color: #fff;
  display: grid; place-items: center; margin: 0 auto 16px;
  font-size: 14px; font-weight: 600;
}
.cta-step__title { color: #fff; font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.cta-step__lbl { color: rgba(255,255,255,0.55); font-size: 12px; letter-spacing: 0.04em; }

@media (max-width: 900px) {
  .cta-panel { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }
  .cta-steps { grid-template-columns: 1fr; }
}

/* =========================================================================
   CERT CAROUSEL — Zertifizierungen & Standards
   ========================================================================= */
.cert-track .carousel__item {
  width: calc((100% - 96px) / 5);   /* 5-up */
  aspect-ratio: 3 / 2;
  background: transparent;
  display: grid; place-items: center;
}
.cert-track img { max-width: 90%; max-height: 90%; object-fit: contain; }
.cert-track__placeholder {
  width: 100%; height: 100%;
  background: #fff;
  border: 1px solid var(--border-soft);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 300;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray-500);
  text-align: center; padding: 16px;
}
@media (max-width: 900px) { .cert-track .carousel__item { width: calc((100% - 48px) / 3); } }
@media (max-width: 540px) { .cert-track .carousel__item { width: calc((100% - 24px) / 2); } }

/* =========================================================================
   FAQ — White-Card-Style (Homepage)
   ========================================================================= */
.faq-cards { display: flex; flex-direction: column; gap: 12px; }
.faq-card {
  background: #fff;
  border: 1px solid var(--border-soft);
}
.faq-card__head {
  width: 100%; background: transparent; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  font-size: 16px; color: var(--fg-1); font-weight: 500; text-align: left;
}
.faq-card__head svg { color: var(--fg-2); transition: transform 200ms var(--ease-out); width: 18px; height: 18px; flex-shrink: 0; }
.faq-card.is-open .faq-card__head svg { transform: rotate(180deg); }
.faq-card__body { padding: 0 28px 24px; color: var(--fg-3); font-size: 15px; line-height: 1.7; display: none; max-width: 800px; }
.faq-card.is-open .faq-card__body { display: block; }

/* =========================================================================
   CONTACT (dunkel, mit Portrait links + Form rechts)
   ========================================================================= */
.contact-split {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}
.contact-split__photo { overflow: hidden; }
.contact-split__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.contact-form-wrap { padding: 32px 0; }
.contact-form-wrap .sc-overline { color: rgba(255,255,255,0.55); }
.contact-form-wrap h2 { color: #fff; margin-bottom: 16px; font-size: clamp(30px, 4vw, 48px); }
.contact-form-wrap .sc-lede { color: rgba(255,255,255,0.78); margin: 0 0 32px; max-width: 540px; }
.contact-icons {
  display: flex; gap: 8px; margin: 24px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 32px;
}
.contact-icons__btn {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  color: #fff; cursor: pointer; text-decoration: none;
  transition: background var(--t-fast);
}
.contact-icons__btn:hover { background: var(--shift-cyan); color: #fff; border-color: var(--shift-cyan); }
.contact-icons__btn--active { background: var(--shift-violet); border-color: var(--shift-violet); }
.contact-icons__btn--active:hover { background: var(--shift-cyan); border-color: var(--shift-cyan); }
.contact-icons__btn svg, .contact-icons__btn i { width: 22px; height: 22px; stroke-width: 1.5; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.contact-form .sc-field { display: flex; flex-direction: column; gap: 6px; }
.contact-form .sc-field--full { grid-column: 1 / -1; }
.contact-form label {
  font-size: 13px; color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 12px 14px;
  font-family: var(--font-body); font-size: 15px;
  border-radius: 0; outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--shift-cyan); background: rgba(255,255,255,0.08);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .sc-check { color: rgba(255,255,255,0.7); font-size: 13px; }
.contact-form .sc-check a { color: var(--shift-cyan); border-bottom: 1px solid currentColor; }
.contact-form button[type="submit"] {
  width: 100%;
}
.contact-form__sent {
  display: none; grid-column: 1 / -1;
  padding: 24px; background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3); color: #fff;
}
@media (max-width: 1023px) { .contact-split { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .contact-form { grid-template-columns: 1fr; } }

/* =========================================================================
   FOOTER variant — 4-Spalten mit LinkedIn-Link rechts
   ========================================================================= */
.home-footer .sc-footer__inner { grid-template-columns: 1fr; gap: 48px; padding-bottom: 48px; }
.home-footer__top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.home-footer__top a {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75); font-size: 14px;
  text-decoration: none;
}
.home-footer__top a:hover { color: #fff; }
.home-footer__top svg { width: 18px; height: 18px; }
.home-footer__cols-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.home-footer__cols-4 .sc-overline { margin-bottom: 18px; }
.home-footer__cols-4 a {
  display: block; color: rgba(255,255,255,0.75); font-size: 14px;
  padding: 5px 0; text-decoration: none;
}
.home-footer__cols-4 a:hover { color: #fff; }
.home-footer__contact { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.7; }
.home-footer__contact-row { display: flex; gap: 10px; align-items: flex-start; padding: 5px 0; }
.home-footer__contact-row svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 4px; color: rgba(255,255,255,0.5); }
.home-footer__contact-row a { color: rgba(255,255,255,0.75); text-decoration: none; }
.home-footer__contact-row a:hover { color: #fff; }

@media (max-width: 900px) { .home-footer__cols-4 { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .home-footer__cols-4 { grid-template-columns: 1fr; } }

/* =========================================================================
   PULL-QUOTE (Home, größer & schlichter)
   ========================================================================= */
.home-quote {
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--shift-violet);
  background: #fff;
  padding: 64px 80px;
  max-width: 1080px; margin: 0 auto;
}
.home-quote__text {
  font-family: var(--font-body); font-style: normal;
  font-size: 22px; line-height: 1.65;
  color: var(--fg-3); margin: 0 0 24px;
}
.home-quote__author { font-size: 15px; color: var(--fg-1); font-weight: 600; }
@media (max-width: 700px) { .home-quote { padding: 40px 28px; } .home-quote__text { font-size: 18px; } }
