/* ============================================================
   TOBA SCHRIFTEN — Service-Page Components
   Lädt NACH style.css → nutzt dieselben :root Tokens.
   Marke: League Spartan + Gold/Petrol (OKLCH).
   Niveau: Aurora-Tiefe, Float-Cards, Timeline, Conversion-Funnel.
   ============================================================ */

/* ============================================================
   SUB-PAGE HEADER (sticky, mit Zurück-Link)
   ============================================================ */
.sub-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(0.07 0 0 / 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
  padding: 0.75rem var(--container-px);
}
.sub-header-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sub-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-muted);
  transition: color 0.18s, transform 0.18s var(--ease-out);
  white-space: nowrap;
}
.sub-back svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform 0.18s var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .sub-back:hover { color: var(--gold); }
  .sub-back:hover svg { transform: translateX(-3px); }
}
.sub-header .site-logo { font-size: var(--text-base); }
.sub-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.sub-phone {
  display: none;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  align-items: center;
  gap: 0.4rem;
}
.sub-phone svg { width: 15px; height: 15px; color: var(--gold); }
@media (hover: hover) and (pointer: fine) {
  .sub-phone:hover { color: var(--gold); }
}
@media (min-width: 720px) { .sub-phone { display: inline-flex; } }
.sub-header .btn { padding: 0.5625rem 1.25rem; font-size: var(--text-sm); min-height: 44px; }
@media (max-width: 460px) {
  .sub-header .site-logo span { display: none; }
}

/* ============================================================
   SERVICE HERO — zweispaltig: Copy links, Visual rechts
   ============================================================ */
.svc-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}
.svc-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, oklch(0.73 0.12 27 / 0.4), transparent);
}

/* Aurora glow layer (reuse hero-glow keyframes from style.css) */
.svc-hero .hero-glows { z-index: 0; }

.svc-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 920px) {
  .svc-hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

.svc-hero-copy { max-width: 620px; }

.svc-hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.75rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.svc-hero h1 .gold { color: var(--gold); }

.svc-hero-lead {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 540px;
}

.svc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.svc-hero-trust {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: var(--text-sm);
  color: var(--ink-muted);
  font-weight: 500;
  line-height: 1.45;
}
.svc-hero-trust .av {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: oklch(0.73 0.12 27 / 0.14);
  border: 1px solid oklch(0.73 0.12 27 / 0.35);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.03em;
  flex-shrink: 0;
}

/* ----- Hero visual: gerahmtes Foto + Float-Cards ----- */
.svc-hero-visual {
  position: relative;
}
.svc-hero-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid oklch(0.73 0.12 27 / 0.20);
  box-shadow: var(--shadow-lg);
}
.svc-hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    oklch(0.07 0 0 / 0.55) 0%,
    transparent 45%);
  pointer-events: none;
}
.svc-hero-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
@media (min-width: 920px) {
  .svc-hero-frame img { aspect-ratio: 5 / 6; }
}
@media (hover: hover) and (pointer: fine) {
  .svc-hero-visual:hover .svc-hero-frame img { transform: scale(1.04); }
}

/* Float cards */
.svc-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: oklch(0.12 0 0 / 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid oklch(0.73 0.12 27 / 0.28);
  border-radius: var(--r-md);
  padding: 0.875rem 1.125rem;
  box-shadow: var(--shadow-md);
  animation: svc-float-bob 6s ease-in-out infinite;
  will-change: transform;
}
.svc-float--tl { top: 6%; left: -6%; animation-delay: -1s; }
.svc-float--br { bottom: 8%; right: -5%; animation-delay: -3.5s; }
@media (max-width: 560px) {
  .svc-float--tl { left: 2%; }
  .svc-float--br { right: 2%; }
}
.svc-float .ico {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  background: oklch(0.73 0.12 27 / 0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-float .ico svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }
.svc-float .num {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.svc-float .lbl {
  font-size: var(--text-xs);
  color: var(--ink-muted);
  line-height: 1.3;
  margin-top: 2px;
}
@keyframes svc-float-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) {
  .svc-float { animation: none; }
}

/* ============================================================
   SERVICE INTRO STATS (Counter row, reuse .stat-num counters)
   ============================================================ */
.svc-statbar {
  background: var(--surface-1);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding-block: clamp(2.25rem, 4vw, 3rem);
}
.svc-statbar-grid {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}
@media (min-width: 720px) { .svc-statbar-grid { grid-template-columns: repeat(4, 1fr); } }
.svc-stat { text-align: center; position: relative; }
.svc-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.5rem; top: 15%; height: 70%;
  width: 1px;
  background: var(--border-dark);
}
@media (max-width: 719px) {
  .svc-stat:nth-child(2)::after { display: none; }
}
.svc-stat .v {
  display: flex; align-items: baseline; justify-content: center; gap: 0.05rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  font-feature-settings: 'tnum';
  margin-bottom: 0.4rem;
}
.svc-stat .v .sfx { font-size: 0.65em; color: oklch(0.73 0.12 27 / 0.6); }
.svc-stat .k {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.4;
}

/* ============================================================
   FEATURE GRID — Leistungs-Detail (Karten mit Icon)
   ============================================================ */
.svc-section { padding-block: var(--section-py); position: relative; overflow: hidden; }
.svc-section--dark  { background: var(--bg); border-top: 1px solid var(--border-dark); }
.svc-section--panel { background: var(--surface-1); border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); }

.svc-section::before {
  content: '';
  position: absolute;
  top: -15%; right: -12%;
  width: 50%; height: 70%;
  background: radial-gradient(ellipse at center, oklch(0.55 0.12 27 / 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.svc-head {
  position: relative;
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.svc-head--center { margin-inline: auto; text-align: center; }
.svc-head h2 { color: var(--ink); margin-bottom: 1rem; }
.svc-head h2 .gold { color: var(--gold); }
.svc-head p { font-size: var(--text-lg); color: var(--ink-muted); line-height: 1.7; }

.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  --mx: 50%; --my: 50%;
  --glow-h: 27;          /* Rot-Ton pro Karte (OKLCH hue) */
  background: var(--surface-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
  transition: border-color 0.28s var(--ease-out), transform 0.24s var(--ease-out), box-shadow 0.28s var(--ease-out);
}
/* Cursor-folgender Farb-Spotlight */
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(300px circle at var(--mx) var(--my),
    oklch(0.72 0.15 var(--glow-h) / 0.30) 0%,
    oklch(0.55 0.11 var(--glow-h) / 0.10) 38%,
    transparent 66%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}
.feature-card > * { position: relative; z-index: 1; }

/* Pro Karte eigener Farbton — warm → kühl */
.feature-card:nth-child(6n+1) { --glow-h: 14; }   /* Rot */
.feature-card:nth-child(6n+2) { --glow-h: 20; }   /* Rot */
.feature-card:nth-child(6n+3) { --glow-h: 27; }   /* Rot */
.feature-card:nth-child(6n+4) { --glow-h: 32; }   /* Rot-Orange */
.feature-card:nth-child(6n+5) { --glow-h: 22; }   /* Rot */
.feature-card:nth-child(6n+6) { --glow-h: 30; }   /* Rot-Orange */

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover::before { opacity: 1; }
  .feature-card:hover {
    border-color: oklch(0.70 0.14 var(--glow-h) / 0.65);
    transform: translateY(-5px);
    box-shadow:
      0 14px 44px oklch(0.55 0.12 var(--glow-h) / 0.20),
      0 10px 30px oklch(0 0 0 / 0.30);
  }
  .feature-card:hover .f-ico {
    border-color: oklch(0.70 0.14 var(--glow-h) / 0.5);
    background: oklch(0.72 0.15 var(--glow-h) / 0.16);
    transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
  }
  .feature-card:hover .f-ico svg {
    stroke: oklch(0.82 0.13 var(--glow-h));
    transition: stroke 0.3s var(--ease-out);
  }
}
@media (prefers-reduced-motion: reduce) {
  .feature-card::before { transition: none; }
}
.feature-card .f-ico {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: oklch(0.73 0.12 27 / 0.12);
  border: 1px solid oklch(0.73 0.12 27 / 0.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.125rem;
}
.feature-card .f-ico svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: var(--text-lg); color: var(--ink); font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.feature-card p { font-size: var(--text-sm); color: var(--ink-muted); line-height: 1.65; margin: 0; }

/* ============================================================
   PROCESS TIMELINE — nummerierte Schritte (echte Sequenz)
   ============================================================ */
.proc-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: proc;
}
@media (min-width: 760px) {
  .proc-timeline { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.proc-step {
  --mx: 50%; --my: 50%;
  --glow-h: 27;
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  overflow: hidden;
  transition: border-color 0.28s var(--ease-out), transform 0.24s var(--ease-out);
}
.proc-step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(240px circle at var(--mx) var(--my),
    oklch(0.72 0.15 var(--glow-h) / 0.26) 0%,
    transparent 62%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}
.proc-step > * { position: relative; z-index: 1; }
.proc-step:nth-child(4n+1) { --glow-h: 18; }
.proc-step:nth-child(4n+2) { --glow-h: 27; }
.proc-step:nth-child(4n+3) { --glow-h: 33; }
.proc-step:nth-child(4n+4) { --glow-h: 22; }
@media (hover: hover) and (pointer: fine) {
  .proc-step:hover::before { opacity: 1; }
  .proc-step:hover {
    border-color: oklch(0.70 0.14 var(--glow-h) / 0.55);
    transform: translateY(-3px);
  }
  .proc-step:hover .no {
    background: oklch(0.74 0.15 var(--glow-h));
    transition: background 0.3s var(--ease-out);
  }
}
.proc-step .no {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red-btn);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-base);
  font-weight: 800;
  margin-bottom: 1rem;
}
.proc-step h3 { font-size: var(--text-base); color: var(--ink); font-weight: 700; margin-bottom: 0.4rem; }
.proc-step p { font-size: var(--text-sm); color: var(--ink-muted); line-height: 1.6; margin: 0; }
/* connecting line on desktop */
@media (min-width: 760px) {
  .proc-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px; right: -0.75rem;
    width: 1.5rem; height: 1px;
    background: linear-gradient(90deg, oklch(0.73 0.12 27 / 0.5), transparent);
    z-index: 1;
  }
}

/* ============================================================
   SPLIT BAND — Bild + Argument (Desire / Material)
   ============================================================ */
.svc-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 820px) { .svc-split { grid-template-columns: 1.1fr 1fr; } }
.svc-split--rev .svc-split-visual { order: -1; }
@media (max-width: 819px) { .svc-split--rev .svc-split-visual { order: 0; } }

.svc-split-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid oklch(0.73 0.12 27 / 0.18);
}
.svc-split-visual img {
  width: 100%; height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .svc-split-visual:hover img { transform: scale(1.04); }
}

.svc-checklist { display: flex; flex-direction: column; gap: 0.875rem; margin-top: 1.75rem; }
.svc-check {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: var(--text-base);
  color: var(--ink-soft, var(--ink-muted));
  line-height: 1.5;
}
.svc-check svg {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  color: var(--gold);
}

/* ============================================================
   BIG CTA BAND (Conversion-Abschluss vor Formular)
   ============================================================ */
.svc-ctaband {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding-block: clamp(3.5rem, 7vw, 6rem);
  text-align: center;
}
.svc-ctaband::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 0%, oklch(0.55 0.12 27 / 0.14) 0%, transparent 60%);
  pointer-events: none;
}
.svc-ctaband-inner { position: relative; max-width: 680px; margin-inline: auto; }
.svc-ctaband h2 { color: var(--ink); margin-bottom: 1rem; }
.svc-ctaband h2 .gold { color: var(--gold); }
.svc-ctaband p { font-size: var(--text-lg); color: var(--ink-muted); line-height: 1.65; margin-bottom: 2rem; }
.svc-ctaband .btn { margin-inline: auto; }
.svc-assurances {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem 1.75rem;
  margin-top: 1.75rem;
}
.svc-assurances li {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: var(--text-sm);
  color: var(--ink-muted);
}
.svc-assurances svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   ROT / SCHWARZ / WEISS — eigene Art-Direction-Welt
   (FC-Thun-Meisterbus + Wertekreis). Brand-Permission:
   Art direction per section. Bewusst vom Gold abgesetzt.
   ============================================================ */
.rbw {
  --rot:      oklch(0.55 0.205 27);
  --rot-hell: oklch(0.66 0.205 27);
  --schwarz:  oklch(0.09 0 0);
  --weiss:    oklch(0.98 0 0);
  position: relative;
  background: var(--schwarz);
  color: var(--weiss);
  padding-block: var(--section-py);
  border-top: 1px solid oklch(0.55 0.205 27 / 0.28);
  border-bottom: 1px solid oklch(0.55 0.205 27 / 0.28);
}
.rbw-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rot-hell); margin-bottom: 1.25rem;
}
.rbw-kicker::before { content: ''; width: 22px; height: 1.5px; background: var(--rot); flex-shrink: 0; }
.rbw .rot { color: var(--rot-hell); }

/* ---------- FC THUN MEISTERBUS ---------- */
.fcthun-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
@media (min-width: 880px) { .fcthun-grid { grid-template-columns: 1.05fr 0.95fr; } }

.fcthun-visual {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid oklch(0.55 0.205 27 / 0.45);
  box-shadow: 0 24px 70px oklch(0.55 0.205 27 / 0.30);
}
.fcthun-visual img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 1600 / 968; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .fcthun-visual:hover img { transform: scale(1.04); } }
.fcthun-visual::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px oklch(0.98 0 0 / 0.06);
  border-radius: var(--r-lg);
}

.fcthun-copy h2 {
  font-size: var(--text-3xl); color: var(--weiss);
  margin-bottom: 1.25rem; letter-spacing: -0.025em; line-height: 1.05;
}
.fcthun-copy p { color: oklch(0.84 0 0); font-size: var(--text-lg); line-height: 1.65; margin-bottom: 1.5rem; }
.fcthun-chips { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 1.25rem; }
.fcthun-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: oklch(0.55 0.205 27 / 0.14);
  border: 1px solid oklch(0.55 0.205 27 / 0.5);
  color: var(--weiss);
  font-size: var(--text-sm); font-weight: 600;
  padding: 0.4rem 0.9rem; border-radius: 100px;
}
.fcthun-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rot-hell); }
.fcthun-note { font-size: var(--text-sm); color: oklch(0.62 0 0); }

/* ---------- WERTEKREIS ---------- */
.werte-section { overflow: hidden; }
.werte-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 50% 52%, oklch(0.55 0.205 27 / 0.16) 0%, transparent 62%);
}
.werte-head { position: relative; text-align: center; max-width: 620px; margin-inline: auto; }
.werte-head h2 { color: var(--weiss); margin-bottom: 1rem; }
.werte-head p { color: oklch(0.82 0 0); font-size: var(--text-lg); line-height: 1.65; }

.kreis {
  position: relative;
  width: min(580px, 90vw);
  aspect-ratio: 1;
  margin: clamp(2.5rem, 6vw, 4.5rem) auto 0;
}

/* rotierender gestrichelter Orbit */
.kreis-ring {
  position: absolute; inset: 4%;
  border: 2px dashed oklch(0.98 0 0 / 0.22);
  border-radius: 50%;
  animation: kreis-spin 55s linear infinite;
}
.kreis-ring::after {
  content: ''; position: absolute; inset: 9%;
  border: 1px solid oklch(0.55 0.205 27 / 0.30);
  border-radius: 50%;
}
@keyframes kreis-spin { to { transform: rotate(360deg); } }

/* Zentrum: Kunde im Mittelpunkt */
.kreis-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 45%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, oklch(0.61 0.205 27) 0%, oklch(0.51 0.20 27) 74%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1rem;
  box-shadow: 0 0 0 12px oklch(0.55 0.205 27 / 0.10), 0 24px 60px oklch(0.55 0.205 27 / 0.45);
  animation: kreis-breathe 5.5s ease-in-out infinite;
  z-index: 2;
}
.kreis-center b { font-size: clamp(2.25rem, 8vw, 4.25rem); font-weight: 900; color: var(--weiss); line-height: 0.9; letter-spacing: -0.03em; }
.kreis-center small { font-size: var(--text-sm); color: var(--weiss); font-weight: 600; margin-top: 0.45rem; max-width: 15ch; line-height: 1.25; }
@keyframes kreis-breathe {
  0%, 100% { box-shadow: 0 0 0 12px oklch(0.55 0.205 27 / 0.10), 0 24px 60px oklch(0.55 0.205 27 / 0.45); }
  50%      { box-shadow: 0 0 0 20px oklch(0.55 0.205 27 / 0.06), 0 24px 70px oklch(0.55 0.205 27 / 0.55); }
}

/* Werte-Nodes auf dem Orbit */
.kreis-node {
  position: absolute; width: 158px; transform: translate(-50%, -50%) scale(0.85);
  text-align: center; opacity: 0;
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  z-index: 1;
}
.kreis-node b { display: block; font-size: var(--text-2xl); font-weight: 800; color: var(--rot-hell); line-height: 1; letter-spacing: -0.02em; }
.kreis-node span { display: block; font-size: var(--text-xs); color: oklch(0.84 0 0); line-height: 1.3; margin-top: 0.3rem; }
.kreis-node.n1 { top: 2%;  left: 50%; }
.kreis-node.n2 { top: 35%; left: 95%; }
.kreis-node.n3 { top: 89%; left: 77%; }
.kreis-node.n4 { top: 89%; left: 23%; }
.kreis-node.n5 { top: 35%; left: 5%; }

.kreis.visible .kreis-node { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.kreis.visible .n1 { transition-delay: 0.10s; }
.kreis.visible .n2 { transition-delay: 0.22s; }
.kreis.visible .n3 { transition-delay: 0.34s; }
.kreis.visible .n4 { transition-delay: 0.46s; }
.kreis.visible .n5 { transition-delay: 0.58s; }
@media (hover: hover) and (pointer: fine) {
  .kreis.visible .kreis-node:hover { transform: translate(-50%, -50%) scale(1.09); }
  .kreis-node:hover b { color: var(--weiss); }
}

/* Mobile: Kreis → saubere Liste (kein Overlap) */
@media (max-width: 719px) {
  .kreis { width: 100%; aspect-ratio: auto; display: flex; flex-direction: column; margin-top: 2.5rem; }
  .kreis-ring { display: none; }
  .kreis-center {
    position: static; transform: none; width: min(220px, 62vw);
    margin: 0 auto 2rem; animation: none;
  }
  .kreis-node {
    position: static; transform: none; width: 100%; opacity: 1;
    text-align: left; display: flex; align-items: baseline; gap: 0.75rem;
    padding: 0.95rem 0; border-top: 1px solid oklch(0.98 0 0 / 0.1);
  }
  .kreis-node b { min-width: 5rem; font-size: var(--text-xl); }
  .kreis-node span { margin-top: 0; }
  .kreis.visible .kreis-node { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .kreis-ring { animation: none; }
  .kreis-center { animation: none; }
  .kreis-node { opacity: 1; transform: translate(-50%, -50%) scale(1); transition: none; }
  @media (max-width: 719px) { .kreis-node { transform: none; } }
}

/* ============================================================
   SERVICE-SWITCHER (Tabs: Fahrzeug ⇄ Textil) + Video
   Eine Landingpage: Hero & Leistungen teilen denselben State.
   ============================================================ */

/* Pills */
.svc-switch {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.35rem;
  background: oklch(0.12 0 0 / 0.65);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.svc-switch button {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 44px; padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-family: var(--font); font-size: var(--text-sm); font-weight: 700;
  color: var(--ink-muted); cursor: pointer; white-space: nowrap;
  touch-action: manipulation;
  transition: color 0.2s, background 0.28s var(--ease-out);
}
.svc-switch button svg { width: 15px; height: 15px; flex-shrink: 0; }
@media (hover: hover) and (pointer: fine) {
  .svc-switch button:not([aria-pressed="true"]):hover { color: var(--ink); }
}
.svc-switch button[aria-pressed="true"] { background: var(--red-btn); color: var(--ink); }

/* Umschaltbare Panels (Copy / Leistungen) */
.world-panel { display: none; }
.world-panel.is-active { display: block; animation: world-in 0.45s var(--ease-out); }
@keyframes world-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .world-panel.is-active { animation: none; }
}

/* Hero-Visual: zwei Bilder gestapelt, Crossfade */
.svc-hero-visual.world-stack { position: relative; }
.world-stack .world-visual {
  transition: opacity 0.5s var(--ease-out);
}
.world-stack .world-visual:not(.is-active) {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
}
.world-stack .world-visual.is-active { position: relative; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .world-stack .world-visual { transition: none; }
}

/* ---------- HERO-LOOP-VIDEO (Hintergrund) ---------- */
.svc-hero .hero-video {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  pointer-events: none;
}
.svc-hero .hero-video video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0.45;
}
.svc-hero .hero-video::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, oklch(0.07 0 0 / 0.92) 0%, oklch(0.07 0 0 / 0.62) 55%, oklch(0.07 0 0 / 0.40) 100%),
    linear-gradient(to top, oklch(0.07 0 0 / 0.85) 0%, transparent 55%);
}
.svc-hero .hero-glows { z-index: 1; }   /* Glows über Video */

/* ---------- REFERENZ-VIDEO-BLOCK (16:9, click-to-play) ---------- */
.video-feature {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid oklch(0.73 0.12 27 / 0.22);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
}
.video-feature video,
.video-feature .video-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.video-feature .video-poster::after {
  content: ''; position: absolute; inset: 0;
  background: oklch(0.07 0 0 / 0.35);
}
.video-play {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: transparent; cursor: pointer;
  transition: background 0.3s var(--ease-out);
}
.video-play .pbtn {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--red-btn);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px oklch(0.55 0.205 27 / 0.45);
  transition: transform 0.18s var(--ease-out);
}
.video-play .pbtn svg { width: 26px; height: 26px; fill: var(--ink); margin-left: 4px; }
@media (hover: hover) and (pointer: fine) {
  .video-play:hover { background: oklch(0.07 0 0 / 0.15); }
  .video-play:hover .pbtn { transform: scale(1.08); }
}
.video-play:active .pbtn { transform: scale(0.96); }
.video-feature.is-playing .video-play,
.video-feature.is-playing .video-poster { display: none; }
.video-feature .video-caption {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 3;
  font-size: var(--text-sm); font-weight: 600; color: var(--ink);
  background: oklch(0.07 0 0 / 0.6); padding: 0.4rem 0.85rem; border-radius: 100px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.video-feature.is-playing .video-caption { display: none; }

/* ============================================================
   HERO WORT-SWIPE (hochswipen + Blur beim Weltwechsel)
   ============================================================ */
.hero-swap {
  display: inline-block;
  will-change: transform, opacity, filter;
}
.hero-swap.is-leaving  { animation: hero-swap-out 0.32s var(--ease-in-out) forwards; }
.hero-swap.is-entering { animation: hero-swap-in  0.45s var(--ease-out) forwards; }
@keyframes hero-swap-out {
  to { opacity: 0; transform: translateY(-0.5em); filter: blur(10px); }
}
@keyframes hero-swap-in {
  from { opacity: 0; transform: translateY(0.6em); filter: blur(10px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-swap.is-leaving, .hero-swap.is-entering { animation: none; opacity: 1; filter: none; transform: none; }
}

/* ============================================================
   VORHER / NACHHER SLIDER (clip-path, ziehbar + Tastatur)
   ============================================================ */
.ba-slider {
  --pos: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid oklch(0.73 0.12 27 / 0.32);
  box-shadow: var(--shadow-lg);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;        /* vertikales Scrollen bleibt, horizontal = Slider */
  cursor: ew-resize;
}
.ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  pointer-events: none;
}
.ba-after  { z-index: 1; }                                        /* Nachher (unten) */
.ba-before { z-index: 2; clip-path: inset(0 calc(100% - var(--pos)) 0 0); } /* Vorher (oben, links sichtbar) */

.ba-divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 2px; background: var(--gold); z-index: 3;
  transform: translateX(-1px); pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: var(--pos); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--red-btn); border: 2px solid var(--ink);
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px oklch(0 0 0 / 0.45);
  pointer-events: none;
}
.ba-handle svg { width: 22px; height: 22px; fill: var(--ink); }

.ba-label {
  position: absolute; top: 0.85rem; z-index: 3;
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink);
  padding: 0.3rem 0.7rem; border-radius: 100px;
  background: oklch(0.07 0 0 / 0.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba-label-before { left: 0.85rem; }
.ba-label-after  { right: 0.85rem; }

/* Unsichtbarer Range-Input für Tastatur / Screenreader */
.ba-range {
  position: absolute; inset: 0; z-index: 5;
  width: 100%; height: 100%; margin: 0;
  opacity: 0;
  pointer-events: none;   /* Pointer-Drag macht der Slider; Range nur Tastatur/A11y */
}
.ba-range:focus-visible { outline: none; }
.ba-slider:focus-within .ba-handle { box-shadow: 0 0 0 4px oklch(0.62 0.19 27 / 0.5), 0 6px 22px oklch(0 0 0 / 0.45); }

/* ============================================================
   GOOGLE-BEWERTUNGEN (statische Karten)
   ============================================================ */
.reviews-head { text-align: center; max-width: 580px; margin: 0 auto clamp(2.25rem, 4vw, 3rem); }
.reviews-badge {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: var(--surface-2); border: 1px solid var(--border-dark);
  border-radius: 100px; padding: 0.55rem 1.1rem; margin-bottom: 1.25rem;
}
.reviews-badge .g-logo { width: 22px; height: 22px; flex-shrink: 0; }
.reviews-badge .reviews-score { font-size: var(--text-lg); font-weight: 800; color: var(--ink); }
.stars { display: inline-flex; gap: 2px; vertical-align: middle; }
.stars svg { width: 17px; height: 17px; fill: var(--gold); }      /* Marken-rote Sterne */
.reviews-head .reviews-count { font-size: var(--text-sm); color: var(--ink-muted); }

.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 760px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--surface-1); border: 1px solid var(--border-dark);
  border-radius: var(--r-md); padding: 1.5rem;
  display: flex; flex-direction: column;
}
.review-card .stars { margin-bottom: 0.85rem; }
.review-text { font-size: var(--text-sm); color: oklch(0.86 0 0); line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red-btn); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: var(--text-sm); flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: var(--text-sm); color: var(--ink); }
.review-date { font-size: 0.8125rem; color: var(--ink-muted); }
.reviews-cta { text-align: center; margin-top: 2.25rem; }

/* ============================================================
   TEAM / FAMILIE — Cut-out-Portraits auf roter Nische
   Platzhalter: <div class="team-ph">, später durch freigestelltes
   PNG ersetzen: <img class="team-photo" src="img/team-NAME.png">
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  max-width: 940px;
  margin-inline: auto;
}
@media (min-width: 680px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card { text-align: center; }

.team-portrait {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.32s var(--ease-out);
}
/* rote Portrait-Nische (Bogen) */
.team-portrait::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 92%; height: 80%;
  border-radius: 150px 150px var(--r-lg) var(--r-lg);
  background: linear-gradient(165deg, oklch(0.56 0.21 27) 0%, oklch(0.29 0.14 27) 100%);
  box-shadow: inset 0 0 0 1px oklch(0.98 0 0 / 0.07), 0 20px 44px oklch(0.55 0.21 27 / 0.28);
}
@media (hover: hover) and (pointer: fine) {
  .team-card:hover .team-portrait { transform: translateY(-6px); }
}

/* echtes Cut-out (ragt über die Nische hinaus) */
.team-photo {
  position: relative;
  z-index: 1;
  height: 98%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 16px 24px oklch(0 0 0 / 0.5));
}

/* Platzhalter-Silhouette */
.team-ph {
  position: relative;
  z-index: 1;
  height: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  padding-bottom: 1.4rem;
}
.team-ph svg { width: 92px; height: 92px; fill: oklch(0.98 0 0 / 0.72); }
.team-ph span {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: oklch(0.98 0 0 / 0.72);
}

.team-name {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.team-role {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  margin-top: 0.15rem;
}

/* ============================================================
   JOURNEY — visualisierter Zeitstrahl + durchgehende Ansprechperson
   ============================================================ */
.journey { position: relative; margin-top: clamp(2.5rem, 5vw, 3.5rem); }

.journey-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
/* Verbindungslinie hinter den Nodes (Node-Mitte = 27px) */
.journey-rail::before {
  content: '';
  position: absolute;
  top: 27px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg,
    oklch(0.56 0.21 27 / 0.30) 0%, var(--gold) 50%, oklch(0.56 0.21 27 / 0.30) 100%);
  z-index: 0;
}
.journey-step { position: relative; z-index: 1; text-align: center; padding: 0 0.25rem; }
.journey-node {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--red-btn); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-lg); font-weight: 800;
  margin: 0 auto 1.1rem;
  border: 4px solid var(--surface-1);
  box-shadow: 0 0 0 4px oklch(0.56 0.21 27 / 0.16), 0 8px 20px oklch(0 0 0 / 0.30);
}
.journey-step h3 { font-size: var(--text-base); color: var(--ink); font-weight: 700; margin-bottom: 0.4rem; }
.journey-step p  { font-size: var(--text-sm); color: var(--ink-muted); line-height: 1.55; margin: 0; }

/* Persistente Ansprechperson — überspannt den ganzen Weg */
.journey-person {
  display: flex; align-items: center; gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(120deg, oklch(0.56 0.21 27 / 0.14), oklch(0.30 0.12 27 / 0.08));
  border: 1px solid oklch(0.56 0.21 27 / 0.40);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.5rem;
}
.journey-person .jp-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red-btn); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.journey-person .jp-avatar svg { width: 26px; height: 26px; fill: var(--ink); }
.journey-person .jp-text strong { display: block; font-size: var(--text-base); color: var(--ink); font-weight: 800; }
.journey-person .jp-text > span { font-size: var(--text-sm); color: var(--ink-muted); line-height: 1.5; }

/* Mobile: vertikaler Zeitstrahl */
@media (max-width: 700px) {
  .journey-rail { grid-template-columns: 1fr; gap: 0; }
  .journey-rail::before {
    top: 0; bottom: 0; left: 27px; right: auto;
    width: 2px; height: auto;
    background: linear-gradient(180deg,
      oklch(0.56 0.21 27 / 0.30) 0%, var(--gold) 50%, oklch(0.56 0.21 27 / 0.30) 100%);
  }
  .journey-step {
    display: grid; grid-template-columns: 54px 1fr; column-gap: 1rem; row-gap: 0;
    text-align: left;
    padding: 0 0 1.75rem 0;
  }
  .journey-step:last-child { padding-bottom: 0; }
  .journey-node { margin: 0; grid-column: 1; grid-row: 1 / 3; align-self: start; }
  .journey-step h3 { grid-column: 2; grid-row: 1; margin-top: 0.65rem; }
  .journey-step p  { grid-column: 2; grid-row: 2; }
}
