﻿/* ═══════════════════════════════════════════════════════════
   Saliger-Gruppe — Precision Design System (Light)
   Version: 2.0 Light — same layout, white/light palette
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────── */
:root {
    --navy:        #1b2754;
    --navy-mid:    #1b2754;
    --navy-light:  #2d3a7c;
    --logo-blue:   #3b558d;
    --accent:      #4f6ef7;
    --white:       #ffffff;
    --off-white:   #f8f9fc;
    --gray-50:     #f8f9fc;
    --gray-100:    #f1f5f9;
    --gray-200:    #e2e8f0;
    --gray-600:    #64748b;
    --gray-800:    #1e293b;
    --text:        #0f172a;
    --text-muted:  #64748b;

    --font:        'Inter', system-ui, -apple-system, sans-serif;
    --ease:        cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1); /* ease-out-expo — Linear/Apple dropdown feel */

    --radius:      12px;
    --container:   1200px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ── Container ──────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.72rem 1.5rem;
    transition: all 0.18s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(120deg, var(--logo-blue) 0%, var(--navy) 100%);
    color: var(--white);
}
.btn-primary:hover {
    background: linear-gradient(120deg, #4a6aad 0%, var(--navy-light) 100%);
    box-shadow: 0 4px 20px rgba(59, 85, 141, 0.35);
    transform: translateY(-1px);
}

.btn-ghost {
    color: var(--navy);
    border: 1.5px solid rgba(27, 39, 84, 0.30);
    background: rgba(27, 39, 84, 0.03);
}
.btn-ghost:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: rgba(27, 39, 84, 0.08);
    box-shadow: 0 2px 12px rgba(27,39,84,0.10);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   DARK HERO BUTTONS — unified for .ml-hero and .vo-hero
   ═══════════════════════════════════════════════════════════ */

.btn-dark-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.72rem 1.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s var(--ease-out);
    white-space: nowrap;
    background: #fff;
    color: var(--navy);
    border: none;
}
.btn-dark-primary:hover {
    background: rgba(255,255,255,0.92);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.btn-dark-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.72rem 1.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s var(--ease-out);
    white-space: nowrap;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.75);
    border: 1.5px solid rgba(255,255,255,0.22);
}
.btn-dark-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.36);
    color: #fff;
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR — always white
   ═══════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s var(--ease);
}

.navbar.scrolled {
    box-shadow: 0 1px 24px rgba(0,0,0,0.07);
}

.nav-inner {
    display: flex;
    align-items: center;
    height: 72px;
}

.nav-logo {
    flex-shrink: 0;
    margin-right: auto;
}

.nav-logo img {
    height: 44px;
    width: auto;
    margin-top: 1px; /* optical vertical centering — text logos sit visually low */
    image-rendering: -webkit-optimize-contrast; /* sharper downscaling in Safari */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    margin: 0 1.5rem;
}

.nav-item {
    position: relative;
}

/* Invisible bridge covering the gap so dropdown stays open while moving mouse down */
.nav-item:has(.nav-drop)::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -0.5rem;
    right: -0.5rem;
    height: 0.9rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.45rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    border-radius: 6px;
    transition: color 0.15s var(--ease), background 0.15s var(--ease);
    /* button reset */
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: inherit;
    text-align: left;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--navy-mid);
    background: var(--gray-100);
}

.nav-caret {
    flex-shrink: 0;
    opacity: 0.3;
    transition: opacity 0.15s var(--ease), transform 0.2s var(--ease);
    stroke: currentColor;
}

.nav-item:hover .nav-caret,
.nav-item.open .nav-caret {
    opacity: 1;
    transform: rotate(180deg);
}

.nav-login {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    background: linear-gradient(120deg, var(--navy) 0%, var(--logo-blue) 100%);
    color: var(--white);
    transition: all 0.18s var(--ease);
}

.nav-login:hover {
    background: linear-gradient(120deg, var(--navy-light) 0%, var(--logo-blue) 100%);
    box-shadow: 0 4px 20px rgba(79,110,247,0.4);
}

/* Active nav link (current page) */
.nav-link--active {
    color: var(--navy-mid) !important;
    background: rgba(79,110,247,0.07) !important;
}

/* ── Focus-visible rings (keyboard navigation) ──────────── */
.nav-link:focus-visible,
.nav-login:focus-visible,
.nav-hamburger:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.drop-item:focus-visible,
.drop-all:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
    border-radius: 6px;
}
/* Remove default outline for mouse users */
.nav-link:focus:not(:focus-visible),
.nav-login:focus:not(:focus-visible),
.nav-hamburger:focus:not(:focus-visible),
.drop-item:focus:not(:focus-visible),
.drop-all:focus:not(:focus-visible) {
    outline: none;
}

/* ── Dropdown ───────────────────────────────────────────── */
.nav-drop {
    position: absolute;
    top: calc(100% + 0.6rem);
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    border-top: 2.5px solid var(--accent);
    box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 10px 24px rgba(0,0,0,0.08), 0 24px 48px rgba(0,0,0,0.06);
    padding: 0.5rem 0.5rem 0.6rem;
    min-width: 340px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.14s var(--ease-out), transform 0.14s var(--ease-out), visibility 0.14s 0.12s;
    z-index: 200;
}

.nav-drop.drop-left  { left: 0; }
.nav-drop.drop-right { right: 0; left: auto; }

.nav-item:hover .nav-drop,
.nav-item.open .nav-drop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.14s var(--ease-out), transform 0.14s var(--ease-out), visibility 0s;
}

.drop-label {
    padding: 0.35rem 0.85rem 0.55rem;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.9;
}

.drop-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border-left: 2px solid transparent;
    transition: background 0.13s var(--ease), border-color 0.13s var(--ease);
}

.drop-item:hover {
    background: rgba(79,110,247,0.05);
    border-left-color: var(--accent);
}

.drop-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--gray-100);
}
.drop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.22s var(--ease);
    display: block;
}
.drop-item:hover .drop-thumb img {
    transform: scale(1.05);
}

/* Text-only dropdown (Unternehmen) — narrower */
.drop-text-only { min-width: 240px; }
.drop-text-only .drop-item { padding: 0.7rem 0.85rem; }

.drop-text { display: flex; flex-direction: column; min-width: 0; }

.drop-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.drop-desc {
    font-size: 0.775rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 0.2rem;
}

.drop-item:hover .drop-title { color: var(--navy-mid); }

.drop-divider { height: 1px; background: var(--gray-100); margin: 0.35rem 0.85rem; }

.drop-all {
    display: flex;
    align-items: center;
    padding: 0.55rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    border-radius: 6px;
    margin-top: 0.1rem;
    transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.drop-all:hover {
    color: var(--navy);
    background: rgba(79,110,247,0.05);
}

/* ── Hamburger ──────────────────────────────────────────── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.4rem;
    margin-left: 0.75rem;
}
.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
    transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
    .nav-hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 0.75rem;
        gap: 0.15rem;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
        box-shadow: 0 16px 48px rgba(0,0,0,0.10);
    }
    .nav-menu.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
    .nav-link { color: var(--gray-800); padding: 0.85rem 1rem; justify-content: space-between; width: 100%; border-radius: 8px; }
    .nav-link:hover { background: var(--gray-100); }
    .nav-caret { opacity: 1 !important; transform: none !important; }
    .nav-item.open .nav-caret { transform: rotate(180deg) !important; }
    .drop-thumb { display: none; }
    .nav-drop {
        position: static;
        opacity: 1 !important;
        visibility: hidden;
        pointer-events: none;
        box-shadow: none; border: none;
        background: var(--gray-100);
        border-radius: 8px;
        margin: 0.2rem 0 0.4rem;
        max-height: 0;
        overflow: hidden;
        transform: none !important;
        transition: max-height 0.28s var(--ease), visibility 0s 0.28s;
        padding: 0.25rem;
    }
    .nav-item.open .nav-drop {
        visibility: visible;
        pointer-events: auto;
        max-height: 600px;
        transition: max-height 0.28s var(--ease), visibility 0s;
    }
    .nav-drop .drop-item { padding: 0.75rem 1rem; border-left: none; border-radius: 6px; }
    .nav-drop .drop-item:hover { background: rgba(79,110,247,0.07); }
    .nav-drop .drop-all { padding: 0.65rem 1rem; border-top: 1px solid var(--gray-200); margin-top: 0.15rem; border-radius: 0 0 6px 6px; }
    /* Mobile stagger animation off — layout change is enough feedback */
    .nav-item:hover .drop-item, .nav-item.open .drop-item { animation: none; }
    .nav-login { margin-top: 0.5rem; text-align: center; justify-content: center; display: flex !important; padding: 0.75rem 1.2rem; border-radius: 8px; }
}

/* Dropdown item stagger fade-in */
@keyframes dropItemIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nav-item:hover .drop-item,
.nav-item.open .drop-item {
    animation: dropItemIn 0.18s var(--ease) both;
}
.nav-item:hover .drop-item:nth-child(1),
.nav-item.open .drop-item:nth-child(1) { animation-delay: 0.04s; }
.nav-item:hover .drop-item:nth-child(2),
.nav-item.open .drop-item:nth-child(2) { animation-delay: 0.08s; }
.nav-item:hover .drop-item:nth-child(3),
.nav-item.open .drop-item:nth-child(3) { animation-delay: 0.12s; }
.nav-item:hover .drop-item:nth-child(4),
.nav-item.open .drop-item:nth-child(4) { animation-delay: 0.16s; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100svh;
    max-height: 100svh;
    display: flex;
    align-items: center;
    background: var(--off-white);
    overflow: hidden;
    padding-top: 72px;
}

/* Calibration grid */
.hero-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-grid line {
    stroke: rgba(27, 39, 84, 0.05);
    stroke-width: 1;
    stroke-dasharray: 4000;
    stroke-dashoffset: 4000;
    animation: draw-line 2.4s var(--ease) forwards;
}
.hero-grid line:nth-child(2)  { animation-delay: 0.1s; }
.hero-grid line:nth-child(3)  { animation-delay: 0.18s; }
.hero-grid line:nth-child(4)  { animation-delay: 0.24s; }
.hero-grid line:nth-child(5)  { animation-delay: 0.3s; }
.hero-grid line:nth-child(6)  { animation-delay: 0.1s; }
.hero-grid line:nth-child(7)  { animation-delay: 0.2s; }
.hero-grid line:nth-child(8)  { animation-delay: 0.28s; }
.hero-grid line:nth-child(9)  { animation-delay: 0.36s; }
.hero-grid line:nth-child(10) { animation-delay: 0.42s; }

@keyframes draw-line {
    to { stroke-dashoffset: 0; }
}

/* Glow — light blue, top right */
.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 65vw;
    height: 65vw;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(59,85,141,0.07) 0%,
        rgba(59,85,141,0.025) 45%,
        transparent 70%
    );
    z-index: 1;
    pointer-events: none;
}

/* 50/50 split */
.hero-split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0;
    height: calc(100svh - 72px);
    width: 100%;
}

@media (max-width: 820px) {
    .hero-split { grid-template-columns: 1fr; min-height: auto; }
    .hero-photo  { display: none; }
    .hero-body   { padding-right: clamp(1.25rem, 4vw, 2.5rem); }
}

/* Half-bleed: container goes full-width, image bleeds to right viewport edge */
.hero > .container {
    max-width: 100%;
    padding-right: 0;
}

.hero-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 3rem) clamp(3rem, 5vw, 5rem);
    padding-left: max(clamp(1.25rem, 4vw, 2.5rem), calc((100vw - 1200px) / 2 + 2.5rem));
    padding-top: clamp(4rem, 6vw, 6rem);
}

.hero-eyebrow {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--logo-blue);
    background: rgba(59, 85, 141, 0.08);
    border: 1px solid rgba(59, 85, 141, 0.18);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fade-up 0.7s var(--ease) 0.5s forwards;
}

.hero-eyebrow::before {
    display: none;
}

/* ─── Unified Hero Pill — works in any dark-hero context ─── */

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    width: fit-content;
}

.hero-pill--dark {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.65);
}

.hero-pill__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #4ade80;
}

.hero-h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-wrap: balance;
    opacity: 0;
    animation: fade-up 0.7s var(--ease) 0.65s forwards;
}

.hero-h1 em {
    font-style: normal;
    color: var(--logo-blue);
}

.hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fade-up 0.7s var(--ease) 0.8s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0;
    animation: fade-up 0.7s var(--ease) 0.95s forwards;
}

/* Right: hero photo — fills full right half edge-to-edge */
.hero-photo {
    position: relative;
    z-index: 4;
    opacity: 0;
    animation: fade-in 1.1s var(--ease-out) 0.4s forwards;
    border-left: 1px solid rgba(27, 39, 84, 0.10);
    margin-top: -72px;
    height: calc(100% + 72px);
}

@keyframes fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Harter editorischer Schnitt — kein Gradient */
.hero-photo::before {
    display: none;
}

/* Leichter Navy Brand-Tint — Bild gehört zur Marke */
.hero-photo::after {
    display: none;
}

.hero-photo__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% center;
    border-radius: 0;
    display: block;
    image-rendering: high-quality;
    vertical-align: bottom;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--navy);
    opacity: 0.32;
    transition: opacity 0.4s var(--ease);
    z-index: 4;
    pointer-events: none;
    animation: bounce-down 2s var(--ease-out) infinite;
}
@keyframes bounce-down {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Intersection Observer reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ═══════════════════════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════════════════════ */
.stats {
    background: var(--navy);
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    overflow: hidden;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(79,110,247,0.06) 0%, transparent 60%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px);
    pointer-events: none;
}

.stats-eyebrow {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.5rem;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
}

.stat-item {
    padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-item:last-child { border-right: none; }
@media (max-width: 480px) {
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:last-child { border-bottom: none; }
}

.stat-num {
    display: block;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.05em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-num span {
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 500;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES — Sticky-scroll selector
   ═══════════════════════════════════════════════════════════ */
.services {
    padding: clamp(4.5rem, 8vw, 8rem) 0;
    background: #ffffff;
    border-top: 1px solid #e8eaf0;
    border-bottom: 1px solid var(--gray-200);
}

.section-heading {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.12;
    max-width: 680px;
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.services .section-heading {
    margin-bottom: 2rem;
}

/* ─── BENTO GRID ──────────────────────────────────────────── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr) auto;
    gap: 1rem;
    min-height: 540px;
}

.bento-card {
    background: var(--white);
    border: 1px solid rgba(27,39,84,0.08);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 85, 141, 0.22);
    box-shadow: 0 8px 32px rgba(59,85,141,0.12), 0 2px 8px rgba(0,0,0,0.06);
}

/* Featured card: 2 cols × 2 rows */
.bento-card--featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    background: #1b2754;
    border: none;
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(27,39,84,0.18);
}

.bento-card--hero-bg {
    background-image: url('images/SaligerGruppe/SG026.jpg');
}

.bento-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,39,84,0.90) 0%, rgba(27,39,84,0.55) 50%, rgba(27,39,84,0.15) 100%);
    border-radius: inherit;
}

.bento-card__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bento-card__label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.50);
    margin: 0;
}

.bento-card--featured .bento-card__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.bento-card--featured .bento-card__desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    max-width: 44ch;
}

/* Featured card: text + stats side-by-side */
.bento-card--featured {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
}
.bento-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bento-card__stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(255,255,255,0.12);
    min-width: 170px;
}
.bento-stat__num {
    display: block;
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
}
.bento-stat__label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.4;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bento-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    width: fit-content;
    border-bottom: 1px solid rgba(255,255,255,0.30);
    padding-bottom: 1px;
    transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.bento-card__cta:hover {
    color: white;
    border-color: rgba(255,255,255,0.70);
}

/* Column 3 — standard small cards */
.bento-card:nth-child(2) { grid-column: 3; grid-row: 1; }
.bento-card:nth-child(3) { grid-column: 3; grid-row: 2; }

/* Bottom row — asymmetric: 1 col + 2 cols */
.bento-card:nth-child(4) { grid-column: 1;     grid-row: 3; }
.bento-card:nth-child(5) { grid-column: 2 / 4; grid-row: 3; }

.bento-card__title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.bento-card__desc {
    font-size: 0.875rem;
    color: #5a5a5a;
    line-height: 1.65;
    flex: 1;
}

.bento-card__desc a {
    color: inherit;
    text-decoration: none;
}

.bento-card__arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    opacity: 0.45;
    transform: translateY(0);
    transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
    margin-top: auto;
    padding-top: 0.5rem;
}

.bento-card:hover .bento-card__arrow {
    opacity: 1;
}

@media (hover: none) {
    .bento-card .bento-card__arrow { opacity: 0.6; }
}

/* Accent card (VAME) */
.bento-card--accent {
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(59,85,141,0.06) 100%);
    border-color: rgba(59,85,141,0.15);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        min-height: unset;
    }
    .bento-card--featured    { grid-column: 1 / 3; grid-row: 1; min-height: 300px; }
    .bento-card:nth-child(2) { grid-column: 1; grid-row: 2; }
    .bento-card:nth-child(3) { grid-column: 2; grid-row: 2; }
    .bento-card:nth-child(4) { grid-column: 1; grid-row: 3; }
    .bento-card:nth-child(5) { grid-column: 2; grid-row: 3; }
}

@media (max-width: 560px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card--featured,
    .bento-card:nth-child(n) { grid-column: 1 !important; grid-row: auto !important; }
    .bento-card--featured { min-height: auto; flex-direction: column; }
    .bento-card__stats { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; flex-direction: row; flex-wrap: wrap; gap: 1rem; }
    .bento-stat { flex: 1; min-width: 80px; }
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
/* Hero stats row */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.75rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    opacity: 0;
    animation: fade-up 0.7s var(--ease) 1.1s forwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-stat strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-stat span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* Trust bar — flows as visual extension of hero */
.trust-bar {
    background: var(--off-white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 2.5rem 0;
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 2.5vw, 3.25rem);
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 1rem;
}
.trust-inner::-webkit-scrollbar { display: none; }

@media (max-width: 680px) {
    .trust-inner {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.75rem 1.5rem;
        overflow-x: visible;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
}

.trust-sep {
    width: 1px;
    height: 14px;
    background: var(--gray-300);
    flex-shrink: 0;
}

@media (max-width: 680px) {
    .trust-sep { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   KALIBRIERUNGSBEREICHE — Dark Row Layout
   ═══════════════════════════════════════════════════════════ */
.bereiche {
    background: var(--navy);
}

.bereiche-header {
    padding: clamp(3.5rem, 5vw, 5rem) 0 clamp(2rem, 3vw, 3rem);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bereiche-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.75rem;
}

.bereiche-heading {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.bereiche-list {
    display: flex;
    flex-direction: column;
}

.bereich-row {
    display: grid;
    grid-template-columns: 3rem 1fr 2fr auto;
    align-items: center;
    gap: 2rem;
    padding: 0.95rem max(clamp(1.25rem,4vw,2.5rem), calc((100vw - 1200px) / 2 + 2.5rem));
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-left: 2px solid transparent;
    text-decoration: none;
    opacity: 0;
    transform: translateX(-16px);
    transition: background 0.2s var(--ease-out), border-left-color 0.2s var(--ease-out), opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.bereich-row:hover {
    background: rgba(255,255,255,0.04);
    border-left-color: var(--logo-blue);
}

.bereich-row:hover .bereich-row__arrow {
    opacity: 1;
    transform: translateX(3px);
}

.bereich-row__num {
    font-size: 0.7rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.05em;
    font-family: ui-monospace, 'SF Mono', monospace;
}

.bereich-row__name {
    font-size: 1.02rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.bereich-row__desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.bereich-row__arrow {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    opacity: 0.5;
    transition: opacity 0.2s var(--ease-out), transform 0.25s var(--ease-out);
    justify-self: end;
}

/* Last row — CTA highlight */
.bereich-row--cta {
    border-bottom: none;
    padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.bereich-row--cta .bereich-row__name {
    color: rgba(255,255,255,0.55);
}

.bereich-row--cta .bereich-row__num {
    color: rgba(255,255,255,0.12);
}

.bereich-row.visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .bereich-row {
        grid-template-columns: 2.5rem 1fr auto;
        gap: 1rem;
    }
    .bereich-row__desc { display: none; }
}

@media (max-width: 480px) {
    .bereich-row {
        grid-template-columns: 2rem 1fr auto;
        gap: 0.75rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact {
    padding: clamp(5rem, 8vw, 9rem) 0;
    background: #f8f9fc;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: start;
}

@media (max-width: 820px) {
    .contact-layout { grid-template-columns: 1fr; }
}

.contact-info__sup {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.contact-info__heading {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 1.25rem;
}

.contact-info__body {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text);
}

.contact-detail a {
    color: var(--text);
    transition: color 0.15s var(--ease);
}
.contact-detail a:hover {
    color: var(--accent);
}

.contact-detail__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    opacity: 0.45;
}

/* Honeypot — Anti-Spam, für Menschen unsichtbar */
.hp-field {
    display: none !important;
}

/* Form */
.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 4px 32px rgba(27,39,84,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-800);
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.72rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font: 0.9rem/1.5 var(--font);
    color: var(--text);
    background: var(--white);
    transition: border-color 0.18s var(--ease-out), box-shadow 0.25s var(--ease-out);
    -webkit-appearance: none;
    appearance: none;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234f6ef7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 14px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27,39,84,0.10);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-label-hint {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.form-file-label {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1rem;
    border: 1.5px dashed var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: border-color 0.15s var(--ease), background 0.15s var(--ease), color 0.15s var(--ease);
}
.form-file-label:hover {
    border-color: var(--accent);
    background: rgba(79,110,247,0.03);
    color: var(--accent);
}
.form-file-label.has-file {
    border-color: var(--accent);
    border-style: solid;
    color: var(--text);
}
.form-file-label svg {
    flex-shrink: 0;
    color: var(--accent);
}

.form-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.form-hint {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    display: block;
}
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.form-submit {
    width: 100%;
    padding: 0.85rem 1.5rem;
    margin-top: 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--navy);
    color: var(--white);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), transform 0.15s var(--ease-out);
    letter-spacing: 0.01em;
}
.form-submit:hover {
    background: var(--navy-light);
    box-shadow: 0 8px 24px rgba(27,39,84,0.25);
    transform: translateY(-1px);
}
.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-response {
    margin-top: 1.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.contact-response::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ecc71;
    flex-shrink: 0;
}

.form-error-msg {
    font-size: 0.85rem;
    color: #c0392b;
    background: #fdf0ee;
    border: 1px solid #f5c6c1;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    margin-bottom: 0.5rem;
}

.form-input--error,
.form-select--error {
    border-color: #c0392b !important;
    background: #fdf0ee;
}

.form-field-error {
    display: block;
    font-size: 0.8rem;
    color: #c0392b;
    margin-top: 0.3rem;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 2.5rem 1.5rem;
    color: var(--navy);
}
.form-success svg {
    color: var(--accent);
}
.form-success h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}
.form-success p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 34ch;
    margin: 0;
    line-height: 1.6;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.65);
    padding: clamp(3.5rem, 6vw, 6rem) 0 2rem;
}
.footer--dark { background: #0f172a; }

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: clamp(2.5rem, 4vw, 4rem);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 2rem;
}

.footer-brand {
    padding-right: clamp(1rem, 3vw, 2.5rem);
    border-right: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 900px) { .footer-brand { border-right: none; padding-right: 0; } }

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .footer-top { grid-template-columns: 1fr; } }

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 280px;
    margin-top: 1rem;
}

.footer-brand img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-dakks {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.68rem;
    font-family: monospace;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 0.2rem 0.55rem;
}

/* Sticky Pills
   ═══════════════════════════════════════════════════════ */
.sticky-pills {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) translateX(calc(100% + 2rem));
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 900;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}
.sticky-pills.visible {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.sticky-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(27, 39, 84, 0.10);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
    box-shadow: 0 2px 16px rgba(27, 39, 84, 0.10);
    transition: background 0.15s var(--ease),
                border-color 0.15s var(--ease),
                box-shadow 0.15s var(--ease),
                transform 0.15s var(--ease);
    text-decoration: none;
}
.sticky-pill svg {
    flex-shrink: 0;
    opacity: 0.6;
}
.sticky-pill:hover {
    background: var(--white);
    border-color: rgba(27, 39, 84, 0.2);
    box-shadow: 0 4px 24px rgba(27, 39, 84, 0.15);
    transform: translateX(-3px);
}
@media (max-width: 480px) {
    .sticky-pills { display: none; }
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.15s var(--ease);
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.45);
    transition: color 0.15s var(--ease);
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════════════════════════ */
.section-kicker {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--logo-blue);
    background: rgba(59, 85, 141, 0.08);
    border: 1px solid rgba(59, 85, 141, 0.18);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.25rem;
}
.section-kicker::before {
    display: none;
}

/* ═══════════════════════════════════════════════════════════
   PREFERS-REDUCED-MOTION
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
    .bereich-row {
        opacity: 1;
        transform: none;
    }
    .hero-eyebrow,
    .hero-h1,
    .hero-sub,
    .hero-actions,
    .hero-photo {
        opacity: 1;
        transform: none;
    }
    .hero-grid line {
        stroke-dashoffset: 0;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ═══════════════════════════════════════════════════════════
   SUB-PAGE HERO (compact hero for inner pages)
   ═══════════════════════════════════════════════════════════ */
.subpage-hero {
    position: relative;
    background: var(--off-white);
    overflow: hidden;
    padding: clamp(64px, 9vw, 88px) 0 clamp(4rem, 7vw, 6rem);
}

/* Ensure text content sits above the SVG grid and glow (z-index:1) */
.subpage-hero > .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(27,39,84,0.38);
    margin-bottom: 1rem;
}
.breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s;
}
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb > span:last-child { color: var(--navy); font-weight: 600; }

.subpage-hero__body {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    align-items: center;
}

.subpage-hero__h1 {
    font-size: clamp(2.9rem, 5vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.06;
    color: var(--navy);
    margin: 0.75rem 0 1.25rem;
}
.subpage-hero__h1 em {
    color: var(--logo-blue);
    font-style: normal;
}

.subpage-hero__sub {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.72;
    max-width: 54ch;
    margin-bottom: 2rem;
}

/* ── Subpage hero: eyebrow + actions always visible (no CSS animation risk) ── */
.subpage-hero .hero-eyebrow,
.subpage-hero .hero-actions {
    opacity: 1;
    animation: none;
    transform: none;
}

/* ── Hero Search Preview (Option B) ───────────────────────── */
.subpage-hero__right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
/* Glow halo behind the card */
.subpage-hero__right::before {
    content: '';
    position: absolute;
    inset: -80px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(59,85,141,0.18) 0%,
        rgba(59,85,141,0.09) 38%,
        rgba(100,140,220,0.04) 60%,
        transparent 75%
    );
    pointer-events: none;
    z-index: 0;
    filter: blur(8px);
}
.hero-search-preview {
    position: relative;
    z-index: 1;
    width: 340px;
    height: 380px;
    background: var(--white);
    border-radius: 16px;
    box-shadow:
        0 0 0 1px rgba(27,39,84,0.06),
        0 20px 60px rgba(27,39,84,0.22),
        0 40px 100px rgba(27,39,84,0.12);
    overflow: hidden;
    user-select: none;
    animation: hspEntry 0.85s cubic-bezier(0.23,1,0.32,1) 0.9s both,
               hspFloat 4s ease-in-out 2s infinite;
}
@keyframes hspEntry {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hspFloat {
    0%, 100% { transform: translateY(0);    }
    50%       { transform: translateY(-8px); }
}

.hsp__bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #ecedf2;
    color: var(--navy);
}
.hsp__query {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    flex: 1;
}
.hsp__bar svg { color: #aab0c0; flex-shrink: 0; }
.hsp__cursor {
    display: inline-block;
    width: 1.5px;
    height: 0.82em;
    background: var(--navy);
    vertical-align: middle;
    margin-left: 1px;
    border-radius: 1px;
    animation: hspBlink 0.85s step-end infinite;
}
@keyframes hspBlink { 50% { opacity: 0; } }

.hsp__results {
    padding: 0.4rem 0.5rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hsp__card {
    padding: 0.7rem 0.6rem;
    border-radius: 8px;
    transition: background 0.15s;
}
.hsp__card + .hsp__card { border-top: 1px solid #f0f1f5; }
.hsp__card--active { background: #f4f5fa; }
.hsp__card--muted { opacity: 0.45; }

.hsp__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}
.hsp__name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
}
.hsp__badges { display: flex; gap: 0.25rem; }
.hsp__badge {
    font-size: 0.62rem;
    font-weight: 500;
    padding: 0.1rem 0.45rem;
    border-radius: 100px;
}
.hsp__badge--werks { background: #fef3c7; color: #b45309; }
.hsp__badge--dakks { background: #dbeafe; color: #1d4ed8; }

.hsp__meta {
    font-size: 0.68rem;
    color: #b0b5c0;
    margin: 0 0 0.45rem;
}

.hsp__niveaux { display: flex; flex-direction: column; gap: 0.2rem; }
.hsp__niveau {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.2rem 0.4rem;
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
    font-size: 0.68rem;
    border-left: 2px solid transparent;
}
.hsp__niveau--werks { border-left-color: #f59e0b; }
.hsp__niveau--dakks { border-left-color: #3b82f6; }
.hsp__niveau > span:first-child {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    min-width: 2.8rem;
}
.hsp__niveau--werks > span:first-child { color: #d97706; }
.hsp__niveau--dakks > span:first-child { color: #2563eb; }
.hsp__niveau > span:nth-child(2) { font-weight: 600; color: #374151; }

.hsp__locs {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    width: 100%;
    color: #9ca3af;
    font-size: 0.66rem;
    margin-top: 0.1rem;
    padding-top: 0.15rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.hsp__dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}
.hsp__dot--perm { background: #10b981; }
.hsp__dot--vor  { background: #f59e0b; }
.hsp__dot--mob  { background: #3b82f6; }

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .hero-search-preview { background: #1a2035; box-shadow: 0 0 0 1px rgba(255,255,255,0.07), 0 24px 60px rgba(0,0,0,0.45); }
    .hsp__bar { border-bottom-color: rgba(255,255,255,0.07); color: rgba(255,255,255,0.9); }
    .hsp__query { color: rgba(255,255,255,0.9); }
    .hsp__card--active { background: rgba(255,255,255,0.05); }
    .hsp__card + .hsp__card { border-top-color: rgba(255,255,255,0.05); }
    .hsp__name { color: rgba(255,255,255,0.9); }
    .hsp__meta { color: rgba(255,255,255,0.28); }
    .hsp__badge--werks { background: rgba(245,158,11,0.15); color: #fbbf24; }
    .hsp__badge--dakks { background: rgba(59,130,246,0.15); color: #60a5fa; }
    .hsp__niveau > span:nth-child(2) { color: rgba(255,255,255,0.75); }
    .hsp__locs { color: rgba(255,255,255,0.35); border-top-color: rgba(255,255,255,0.06); }
    .hsp__cursor { background: rgba(255,255,255,0.8); }
}

/* ═══════════════════════════════════════════════════════════
   KOMPETENZ GRID (uniform 3×2 grid, no featured-card spans)
   ═══════════════════════════════════════════════════════════ */
.kompetenz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.kompetenz-card {
    text-decoration: none;
    color: inherit;
}
/* Reset the nth-child column spans from .bento-grid for uniform layout */
.kompetenz-grid .bento-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
}

.kompetenz-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(59,85,141,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

/* ── Utility ─────────────────────────────────────────────── */
.services--light { background: var(--white); }

/* ═══════════════════════════════════════════════════════════
   FEATURE ROWS (alternating image + text)
   ═══════════════════════════════════════════════════════════ */
.feature-section {
    padding: clamp(4.5rem, 8vw, 8rem) 0;
    background: var(--white);
}
/* section-heading margin-bottom conflicts with feature-rows margin-top —
   remove the default margin so feature-rows margin-top controls the gap */
.feature-section .section-heading { margin-bottom: 0; }

/* section-heading child elements */
.section-h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin: 0.35rem 0 0;
}
.section-sub {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 680px;
    margin: 1rem 0 0;
    letter-spacing: normal;
}

.feature-rows {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 3.5rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.feature-row--flip {
    direction: rtl;
}
.feature-row--flip > * {
    direction: ltr;
}

.feature-row__img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 32px rgba(27,39,84,0.10);
}
.feature-row__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}
.feature-row:hover .feature-row__img img {
    transform: scale(1.03);
}

.feature-row__body h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--navy);
    line-height: 1.2;
    margin: 0.5rem 0 1rem;
}
.feature-row__body p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.75;
    max-width: 52ch;
    margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   OPTIONS SECTION — Three Ways (kalibrierungen.html)
   ═══════════════════════════════════════════════════════════ */
.options-section {
    padding: clamp(4.5rem, 8vw, 8rem) 0;
    background: var(--off-white);
}
.options-section > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.options-section .section-heading {
    text-align: center;
}

.option-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    width: 100%;
    text-align: left;
}

.option-card__img {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.75rem;
}
.option-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}
.option-card:hover .option-card__img img {
    transform: scale(1.04);
}

.option-card__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--logo-blue);
    margin: 0 0 0.65rem;
}

.option-card__title {
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--navy);
    margin: 0 0 1rem;
}

.option-card__desc {
    font-size: 0.92rem;
    color: #5a5a5a;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.option-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid rgba(27, 39, 84, 0.25);
    padding-bottom: 2px;
    width: fit-content;
    transition: gap 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.option-card__cta:hover {
    gap: 0.65rem;
    border-color: var(--navy);
}

@media (max-width: 900px) {
    .option-cards { grid-template-columns: 1fr; gap: 3rem; }
}
@media (min-width: 560px) and (max-width: 900px) {
    .option-cards { grid-template-columns: repeat(2, 1fr); }
    .option-card:last-child { grid-column: 1 / -1; max-width: 420px; }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .options-section { background: #111827; }
    .option-card__title { color: rgba(255,255,255,0.92); }
    .option-card__desc { color: rgba(255,255,255,0.55); }
    .option-card__cta { color: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.22); }
    .option-card__cta:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
}

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION (details / summary)
   ═══════════════════════════════════════════════════════════ */
.faq-list {
    max-width: 800px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item[open] {
    border-color: rgba(59,85,141,0.25);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    gap: 1rem;
    transition: background 0.2s;
    user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }

.faq-q::after {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231b2754' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s var(--ease-out);
}
.faq-item[open] > .faq-q::after {
    transform: rotate(45deg);
}
.faq-item[open] > .faq-q {
    background: rgba(59,85,141,0.04);
}

.faq-a {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: #5a5a5a;
    line-height: 1.75;
}
.faq-a p { margin: 0; }

/* ═══════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════ */
.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--logo-blue) 100%);
    padding: clamp(4rem, 6vw, 6rem) 0;
    text-align: center;
}
.cta-band__h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}
.cta-band__sub {
    color: rgba(255,255,255,0.70);
    font-size: 1rem;
    max-width: 38ch;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.cta-band__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ffffff;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.8rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.btn-cta-primary:hover {
    background: rgba(255,255,255,0.92);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}
.btn-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: rgba(255,255,255,0.80);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.8rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-cta-ghost:hover {
    border-color: rgba(255,255,255,0.65);
    color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════
   SEARCH MODAL
   ═══════════════════════════════════════════════════════════ */
.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.50);
    z-index: 9000;
    align-items: flex-start;
    justify-content: center;
    padding: 6vh 1rem 1rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.search-overlay.open { display: flex; }

.search-dialog {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 660px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.22), 0 0 0 1px rgba(0,0,0,0.06);
    animation: dialogIn 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes dialogIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0)     scale(1); }
}

/* ── Search bar (top, no coloured header) ── */
.search-dialog__bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid var(--gray-200);
}
.search-dialog__icon {
    flex-shrink: 0;
    color: #9ca3af;
}
.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-family: inherit;
    color: var(--navy);
    background: transparent;
    min-width: 0;
}
.search-input::placeholder { color: #9ca3af; }
.search-dialog__kbd {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-family: inherit;
    color: #9ca3af;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    padding: 0.15rem 0.45rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.search-dialog__close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: none;
    background: #f3f4f6;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
}
.search-dialog__close:hover { background: #e5e7eb; color: var(--navy); }

.search-stats {
    padding: 0.3rem 1.1rem 0.15rem;
    font-size: 0.71rem;
    color: #c0c4cf;
    min-height: 0;
    text-align: right;
    letter-spacing: 0.01em;
}

.search-results {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0.75rem 1rem;
    min-height: 180px;
    scrollbar-width: thin;
    scrollbar-color: #e2e4ea transparent;
}
.search-results::-webkit-scrollbar { width: 4px; }
.search-results::-webkit-scrollbar-track { background: transparent; }
.search-results::-webkit-scrollbar-thumb { background: #dde0e8; border-radius: 2px; }
.search-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    color: #d1d5db;
    text-align: center;
    gap: 0.6rem;
}
.search-empty p { margin: 0; font-size: 0.9rem; font-weight: 500; color: #9ca3af; }
.search-empty__sub { font-size: 0.8rem !important; font-weight: 400 !important; color: #c4c9d4 !important; }

/* ── Search result cards ────────────────────────────────────── */
.sc-list { display: flex; flex-direction: column; gap: 0; }
.sc-list .sc-card + .sc-card { border-top: 1px solid #f1f2f5; border-radius: 0; }
.sc-list .sc-card:first-child { border-radius: 10px 10px 0 0; }
.sc-list .sc-card:last-child  { border-radius: 0 0 10px 10px; border-bottom: none; }
.sc-list .sc-card:only-child  { border-radius: 10px; }

.sc-card {
    border-radius: 10px;
    padding: 0.85rem 1rem;
    cursor: default;
    transition: background 0.12s, box-shadow 0.15s;
    border: 1px solid transparent;
    outline: none;
}
.sc-card:hover { background: #f4f5fa; box-shadow: inset 3px 0 0 var(--logo-blue); }
.sc-card:focus { background: #f4f5fa; box-shadow: inset 3px 0 0 var(--accent); outline: none; }

.sc-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.45rem;
}
.sc-card__name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}
.sc-card__badges { display: flex; gap: 0.3rem; flex-shrink: 0; }

/* Niveau badges */
.sc-badge {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}
.sc-badge--werks { background: #fef3c7; color: #b45309; }
.sc-badge--dakks { background: #dbeafe; color: #1d4ed8; }

/* Meta row — eine schlichte gedimmte Zeile, kein Bürokratie-Style */
.sc-meta {
    font-size: 0.76rem;
    color: #b0b5c0;
    margin: 0 0 0.55rem;
    letter-spacing: 0.01em;
}

/* Niveau rows — ultra slim, just a left accent line */
.sc-niveaux { display: flex; flex-direction: column; gap: 0.3rem; }
.sc-niveau {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.6rem;
    padding: 0.45rem 0.7rem;
    border-radius: 7px;
    font-size: 0.78rem;
    border-left: 2.5px solid transparent;
}
.sc-niveau--werks { background: transparent; border-left-color: #f59e0b; }
.sc-niveau--dakks { background: transparent; border-left-color: #3b82f6; }

.sc-niveau__label {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    min-width: 3.5rem;
}
.sc-niveau--werks .sc-niveau__label { color: #d97706; }
.sc-niveau--dakks .sc-niveau__label { color: #2563eb; }

.sc-niveau__range {
    font-weight: 500;
    color: #374151;
    font-size: 0.82rem;
}
.sc-niveau__locs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15rem 0.5rem;
    width: 100%;
    margin-top: 0.25rem;
    padding-top: 0.2rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}
/* Inline variant: Dots sitzen in derselben Zeile wie Range */
.sc-niveau__locs--inline {
    width: auto;
    flex: 1;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    margin-left: 0.25rem;
}
.sc-loc {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    font-size: 0.73rem;
    color: #6b7280;
}
.sc-loc__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}
.sc-loc__dot--perm { background: #10b981; }
.sc-loc__dot--vor  { background: #f59e0b; }
.sc-loc__dot--mob  { background: #3b82f6; }
.sc-loc__range { font-weight: 600; color: #374151; font-size: 0.72rem; }

.sc-overflow {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* ── Card link cursor + arrow icon ───────────────────────── */
.sc-card--link { cursor: pointer; }
.sc-card__arrow {
    flex-shrink: 0;
    color: #c0c4d0;
    opacity: 0;
    transition: opacity 0.12s, transform 0.12s;
    margin-left: 0.1rem;
}
.sc-card--link:hover .sc-card__arrow,
.sc-card--link:focus .sc-card__arrow { opacity: 1; transform: translate(1px, -1px); }

/* ── Keyboard footer ──────────────────────────────────────── */
.search-dialog__footer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.55rem 1.1rem;
    border-top: 1px solid #ecedf2;
    font-size: 0.72rem;
    color: #b0b5c0;
    flex-shrink: 0;
    user-select: none;
}
.search-dialog__hint { display: flex; align-items: center; gap: 0.22rem; }
.search-dialog__hint kbd {
    font-family: inherit;
    font-size: 0.7rem;
    line-height: 1;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 0.15rem 0.4rem;
    color: #6b7280;
}

/* ── Sub-page responsive ──────────────────────────────────── */
@media (max-width: 900px) {
    .kompetenz-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .subpage-hero__body { grid-template-columns: 1fr; }
    .subpage-hero__right { display: none; }
    .feature-row,
    .feature-row--flip { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
    .feature-rows { gap: 3.5rem; }
    .faq-list { margin-top: 2rem; }
}

@media (max-width: 560px) {
    .kompetenz-grid { grid-template-columns: 1fr; }
    .subpage-hero { padding-bottom: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   DARK MODE — must be last to win cascade
   ═══════════════════════════════════════════════════════════ */
@media (prefers-color-scheme: dark) {

    body { background: #0c1018; color: rgba(255,255,255,0.88); }

    /* Buttons */
    .btn-ghost { color: rgba(255,255,255,0.80); border-color: rgba(255,255,255,0.20); }
    .btn-ghost:hover { color: #ffffff; border-color: rgba(255,255,255,0.40); background: rgba(255,255,255,0.07); }

    /* Navigation */
    .navbar { background: rgba(12,16,24,0.96); border-bottom-color: rgba(255,255,255,0.07); }
    .navbar.scrolled { box-shadow: 0 1px 24px rgba(0,0,0,0.5); }
    .nav-link { color: rgba(255,255,255,0.78); }
    .nav-link:hover { color: #ffffff; background: rgba(255,255,255,0.07); }
    .nav-item.open > .nav-link { color: #ffffff; background: rgba(255,255,255,0.08); }
    .nav-login { background: rgba(59,85,141,0.3); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.90); }
    .nav-login:hover { background: rgba(59,85,141,0.5); color: #ffffff; }
    .nav-drop { background: #161c2d; border-color: rgba(255,255,255,0.08); border-top-color: var(--accent); box-shadow: 0 4px 6px rgba(0,0,0,0.4), 0 10px 24px rgba(0,0,0,0.35), 0 24px 48px rgba(0,0,0,0.3); }
    .drop-title { color: rgba(255,255,255,0.9); }
    .drop-desc  { color: rgba(255,255,255,0.45); }
    .drop-item:hover { background: rgba(79,110,247,0.12); }
    .drop-item:hover .drop-title { color: #ffffff; }
    .drop-label { opacity: 0.7; }
    .drop-all { color: var(--accent); }
    .drop-all:hover { background: rgba(79,110,247,0.1); color: #ffffff; }
    .drop-divider { background: rgba(255,255,255,0.07); }
    .drop-thumb { background: rgba(255,255,255,0.06); }
    .nav-hamburger span { background: rgba(255,255,255,0.85); }

    /* Hero */
    .hero { background: #0c1018; }
    .hero-grid line { stroke: rgba(255,255,255,0.04); }
    .hero-eyebrow { color: rgba(255,255,255,0.70); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.10); }
    .hero-h1 { color: rgba(255,255,255,0.95); }
    .hero-h1 em { color: #7b9cf4; }
    .hero-sub { color: rgba(255,255,255,0.55); }
    .hero-scroll { color: rgba(255,255,255,0.35); }
    .hero-photo { border-left-color: rgba(255,255,255,0.06); }
    .hero-stats { border-top-color: rgba(255,255,255,0.08); }
    .hero-stat strong { color: rgba(255,255,255,0.95); }
    .hero-stat span   { color: rgba(255,255,255,0.45); }

    /* Trust Bar */
    .trust-bar { background: #111827; border-top-color: rgba(255,255,255,0.06); border-bottom-color: rgba(255,255,255,0.06); }
    .trust-item { color: rgba(255,255,255,0.50); }
    .trust-sep  { background: rgba(255,255,255,0.10); }

    /* Services / Bento */
    .services { background: #111827; border-bottom-color: rgba(255,255,255,0.06); }
    .section-heading { color: rgba(255,255,255,0.95); }
    .section-kicker { color: rgba(255,255,255,0.45); border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); }
    .bento-card { background: #161c2d; border-color: rgba(255,255,255,0.08); }
    .bento-card:hover { border-color: rgba(123,156,244,0.30); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
    .bento-card__label { color: rgba(255,255,255,0.35); border-color: rgba(255,255,255,0.10); background: rgba(255,255,255,0.05); }
    .bento-card__title { color: rgba(255,255,255,0.92); }
    .bento-card__desc  { color: rgba(255,255,255,0.50); }
    .bento-card__desc a { color: inherit; }
    .bento-card__arrow { color: rgba(255,255,255,0.55); }
    .bento-card--accent { background: linear-gradient(135deg, #161c2d 0%, rgba(59,85,141,0.18) 100%); border-color: rgba(59,85,141,0.25); }

    /* Contact */
    .contact { background: #0c1018; }
    .contact-info__sup     { color: rgba(255,255,255,0.42); }
    .contact-info__heading { color: rgba(255,255,255,0.95); }
    .contact-info__body    { color: rgba(255,255,255,0.55); }
    .contact-detail a      { color: rgba(255,255,255,0.75); }
    .contact-detail a:hover { color: #ffffff; }
    .contact-detail__icon  { color: rgba(255,255,255,0.50); opacity: 1; }
    .contact-response      { color: rgba(255,255,255,0.40); }
    .contact-form { background: #161c2d; border-color: rgba(255,255,255,0.08); box-shadow: 0 4px 32px rgba(0,0,0,0.35); }
    .form-label      { color: rgba(255,255,255,0.75); }
    .form-label-hint { color: rgba(255,255,255,0.35); }
    .form-input, .form-select, .form-textarea { background: #0c1018; border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.88); }
    .form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.28); }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(123,156,244,0.6); box-shadow: 0 0 0 3px rgba(123,156,244,0.12); }
    .form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237b9cf4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); }
    .form-file-label { background: #0c1018; border-color: rgba(255,255,255,0.10); color: rgba(255,255,255,0.40); }
    .form-file-label:hover { border-color: rgba(123,156,244,0.5); color: #7b9cf4; background: rgba(123,156,244,0.05); }
    .form-file-label svg { color: #7b9cf4; }

    /* Sticky Pills */
    .sticky-pill { background: rgba(22,28,45,0.92); border-color: rgba(255,255,255,0.10); color: rgba(255,255,255,0.80); box-shadow: 0 2px 16px rgba(0,0,0,0.4); }
    .sticky-pill:hover { background: #1e2640; border-color: rgba(255,255,255,0.18); box-shadow: 0 4px 24px rgba(0,0,0,0.5); color: #ffffff; }

    /* Sub-page Hero */
    .subpage-hero { background: #0c1018; }
    .breadcrumb { color: rgba(255,255,255,0.38); }
    .breadcrumb > span:last-child { color: rgba(255,255,255,0.88); }
    .subpage-hero__h1 { color: rgba(255,255,255,0.95); }
    .subpage-hero__h1 em { color: #7b9cf4; }
    .subpage-hero__sub { color: rgba(255,255,255,0.55); }
    .subpage-hero__right::before { background: radial-gradient(ellipse at center, rgba(123,156,244,0.12) 0%, rgba(123,156,244,0.04) 50%, transparent 75%); }
    .subpage-stat { background: #161c2d; border-color: rgba(255,255,255,0.08); }
    .subpage-stat strong { color: rgba(255,255,255,0.95); }
    .subpage-stat span { color: rgba(255,255,255,0.40); }

    /* Kompetenz Grid */
    .kompetenz-card__icon { background: rgba(123,156,244,0.10); color: #7b9cf4; }

    /* Feature Rows */
    .feature-section { background: #111827; }
    .feature-row__body h3 { color: rgba(255,255,255,0.92); }
    .feature-row__body p { color: rgba(255,255,255,0.55); }

    /* Services utility */
    .services--light { background: #111827; }

    /* FAQ */
    .faq-item { background: #161c2d; border-color: rgba(255,255,255,0.08); }
    .faq-item[open] { border-color: rgba(123,156,244,0.25); }
    .faq-q { color: rgba(255,255,255,0.88); }
    .faq-q::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%237b9cf4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E"); }
    .faq-item[open] > .faq-q { background: rgba(123,156,244,0.06); }
    .faq-a { color: rgba(255,255,255,0.55); }

    /* Search Modal */
    .search-dialog { background: #1a2035; box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06); }
    .search-dialog__bar { border-bottom-color: rgba(255,255,255,0.08); }
    .search-dialog__icon { color: rgba(255,255,255,0.35); }
    .search-input { color: rgba(255,255,255,0.90); }
    .search-input::placeholder { color: rgba(255,255,255,0.28); }
    .search-dialog__kbd { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.10); color: rgba(255,255,255,0.35); }
    .search-dialog__close { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.50); }
    .search-dialog__close:hover { background: rgba(255,255,255,0.12); color: #ffffff; }
    .search-stats { color: rgba(255,255,255,0.30); }
    .search-empty svg { color: rgba(255,255,255,0.15); }
    .search-empty p { color: rgba(255,255,255,0.38); }
    .search-empty__sub { color: rgba(255,255,255,0.22) !important; }
    /* Cards */
    .sc-card:hover { background: rgba(255,255,255,0.05); box-shadow: inset 3px 0 0 rgba(79,110,247,0.6); }
    .sc-card:focus { background: rgba(255,255,255,0.05); box-shadow: inset 3px 0 0 var(--accent); }
    .sc-card__name { color: rgba(255,255,255,0.92); }
    .sc-badge--werks { background: rgba(245,158,11,0.15); color: #fbbf24; }
    .sc-badge--dakks { background: rgba(59,130,246,0.15); color: #60a5fa; }
    .sc-meta { color: rgba(255,255,255,0.32); }
    .sc-niveau--werks { background: transparent; }
    .sc-niveau--dakks { background: transparent; }
    .sc-niveau--werks .sc-niveau__label { color: #fbbf24; }
    .sc-niveau--dakks .sc-niveau__label { color: #60a5fa; }
    .sc-niveau__range { color: rgba(255,255,255,0.75); }
    .sc-loc { color: rgba(255,255,255,0.45); }
    .sc-loc__range { color: rgba(255,255,255,0.82); font-weight: 600; }
    .sc-overflow { color: rgba(255,255,255,0.30); }
    .sc-card__arrow { color: rgba(255,255,255,0.25); }
    .search-dialog__footer { border-top-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.25); }
    .search-dialog__hint kbd { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.10); color: rgba(255,255,255,0.35); }
}

@media (prefers-color-scheme: dark) and (max-width: 820px) {
    .nav-menu { background: #161c2d; border-bottom-color: rgba(255,255,255,0.07); }
    .nav-link  { color: rgba(255,255,255,0.78); }
    .nav-drop  { background: rgba(255,255,255,0.04); }
}

/* ═══════════════════════════════════════════════════════════
   LAB SPECS CARD (permanentes-labor.html hero)
   ═══════════════════════════════════════════════════════════ */
.lab-specs-card {
    position: relative;
    z-index: 1;
    width: 340px;
    background: var(--white);
    border-radius: 16px;
    box-shadow:
        0 0 0 1px rgba(27,39,84,0.06),
        0 20px 60px rgba(27,39,84,0.22),
        0 40px 100px rgba(27,39,84,0.12);
    overflow: hidden;
    animation: hspEntry 0.85s cubic-bezier(0.23,1,0.32,1) 0.9s both,
               hspFloat 4s ease-in-out 2s infinite;
}

.lab-specs-card__header {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(27,39,84,0.38);
    padding: 0.9rem 1.1rem 0.75rem;
    border-bottom: 1px solid #ecedf2;
    margin: 0;
}

.lab-specs-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.lab-specs-card__item {
    padding: 0.85rem 1.1rem;
    border-right: 1px solid #ecedf2;
    border-bottom: 1px solid #ecedf2;
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}
.lab-specs-card__item:nth-child(even) {
    border-right: none;
}
.lab-specs-card__item:nth-last-child(-n+2) {
    border-bottom: none;
}

.lab-specs-card__val {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--navy);
    line-height: 1;
}

.lab-specs-card__unit {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--logo-blue);
    letter-spacing: 0.04em;
    margin-top: 0.1rem;
}

.lab-specs-card__label {
    font-size: 0.65rem;
    color: rgba(27,39,84,0.45);
    margin-top: 0.25rem;
    line-height: 1.3;
}

.lab-specs-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1.1rem;
    background: #f8f9fc;
    border-top: 1px solid #ecedf2;
    gap: 0.5rem;
}

.lab-specs-card__badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #1d4ed8;
    background: #dbeafe;
    border-radius: 100px;
    padding: 0.2rem 0.6rem;
}

.lab-specs-card__norm {
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(27,39,84,0.35);
    letter-spacing: 0.04em;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .lab-specs-card {
        background: #1a2035;
        box-shadow: 0 0 0 1px rgba(255,255,255,0.07), 0 24px 60px rgba(0,0,0,0.45);
    }
    .lab-specs-card__header { border-bottom-color: rgba(255,255,255,0.07); color: rgba(255,255,255,0.28); }
    .lab-specs-card__item { border-color: rgba(255,255,255,0.07); }
    .lab-specs-card__val { color: rgba(255,255,255,0.92); }
    .lab-specs-card__unit { color: #7b9cf4; }
    .lab-specs-card__label { color: rgba(255,255,255,0.32); }
    .lab-specs-card__footer { background: rgba(255,255,255,0.03); border-top-color: rgba(255,255,255,0.07); }
    .lab-specs-card__badge { background: rgba(59,130,246,0.15); color: #60a5fa; }
    .lab-specs-card__norm { color: rgba(255,255,255,0.22); }
}

/* ═══════════════════════════════════════════════════════════
   KONZEPT D HERO — pl-hero (permanentes-labor.html)
   ═══════════════════════════════════════════════════════════ */

.pl-hero {
    min-height: 92svh;
    padding-top: clamp(5rem, 9vw, 7rem);
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

/* Foto — blutet bis zur rechten Viewport-Kante */
.pl-hero__photo {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 44%;
    z-index: 1;
    overflow: hidden;
}
.pl-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    opacity: 0.6;
}
/* Gradient-Fade nach links — nahtloser Übergang zum Hintergrund */
.pl-hero__photo::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to right,
        var(--off-white) 0%,
        rgba(245,246,249,0.85) 20%,
        rgba(245,246,249,0.4) 50%,
        transparent 80%
    );
}

/* Riesige transparente Hintergrundszahl */
.hero-watermark {
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(12rem, 26vw, 22rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.85;
    color: var(--navy);
    opacity: 0.07;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    font-variant-numeric: tabular-nums;
    clip-path: inset(0 44% 0 0);
}
.hero-watermark__unit {
    font-size: 0.2em;
    font-weight: 700;
    vertical-align: super;
    letter-spacing: -0.02em;
    opacity: 0.75;
}

/* Inhaltsspalte — bleibt links, lässt Platz für Foto */
.pl-hero__content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

/* Stats — sauberes 3×2-Grid */
.pl-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: 1.5rem 2.75rem;
    border-top: 1px solid rgba(27,39,84,0.1);
    padding-top: 1.75rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    cursor: default;
    opacity: 0.38;
    transition: opacity 0.35s ease;
    position: relative;
    padding-left: 0.85rem;
}
.stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--logo-blue);
    border-radius: 2px;
    opacity: 0;
    transform: scaleY(0.25);
    transform-origin: top;
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.stat.active {
    opacity: 1;
}
.stat.active::before {
    opacity: 1;
    transform: scaleY(1);
}
.stat__val {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--navy);
    line-height: 1;
}
.stat__label {
    font-size: 0.68rem;
    color: rgba(27,39,84,0.48);
    font-weight: 500;
    margin-top: 0.2rem;
}

/* DAkkS-Badge unten rechts */
.pl-hero__badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid rgba(27,39,84,0.1);
    border-radius: 100px;
    padding: 0.4rem 0.9rem 0.4rem 0.5rem;
    font-size: 0.68rem;
    color: rgba(27,39,84,0.55);
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(27,39,84,0.08);
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 960px) {
    .pl-hero__photo { width: 38%; }
    .pl-hero__stats { grid-template-columns: repeat(3, auto); gap: 1.25rem 2rem; }
}
@media (max-width: 720px) {
    .pl-hero__photo { display: none; }
    .hero-watermark { font-size: 10rem; right: -1rem; opacity: 0.04; }
    .pl-hero__stats { grid-template-columns: repeat(2, auto); gap: 1.25rem 2rem; }
    .pl-hero__badge { bottom: 1rem; right: 1rem; font-size: 0.62rem; }
}
@media (max-width: 500px) {
    .hero-watermark { display: none; }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .hero-watermark { color: var(--white); opacity: 0.04; }
    .pl-hero__photo img { opacity: 0.35; }
    .pl-hero__photo::before {
        background: linear-gradient(to right, #111827 0%, rgba(17,24,39,0.85) 20%, rgba(17,24,39,0.4) 50%, transparent 80%);
    }
    .pl-hero__badge { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.45); }
    .stat__val { color: rgba(255,255,255,0.88); }
    .stat__label { color: rgba(255,255,255,0.32); }
    .pl-hero__stats { border-top-color: rgba(255,255,255,0.08); }
}

/* ═══════════════════════════════════════════════════════════
   MEASURE-CARD (permanentes-labor.html hero — Konzept 5)
   ═══════════════════════════════════════════════════════════ */

/* Die Karte selbst */
.measure-card {
    position: relative;
    z-index: 1;
    width: 340px;
    background: var(--white);
    border-radius: 16px;
    box-shadow:
        0 0 0 1px rgba(27,39,84,0.06),
        0 20px 60px rgba(27,39,84,0.22),
        0 40px 100px rgba(27,39,84,0.10);
    overflow: hidden;
    animation: cardEntry 0.85s var(--ease-out) 0.9s both,
               cardFloat 4s ease-in-out 2s infinite;
}
@keyframes cardEntry {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Karten-Header */
.mc__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.1rem;
    background: #f8f9fc;
    border-bottom: 1px solid rgba(27,39,84,0.07);
}
.mc__title {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(27,39,84,0.38);
}
.mc__live {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #16a34a;
}
.mc__live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

/* Aktiver Messwert */
.mc__display {
    padding: 1.4rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(27,39,84,0.07);
}
.mc__display-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(27,39,84,0.35);
    margin-bottom: 0.4rem;
}
.mc__display-value {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--navy);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}
.mc__display-unit {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--logo-blue);
    letter-spacing: -0.02em;
}

/* Fortschrittsbalken */
.mc__progress-wrap {
    padding: 0.75rem 1.25rem 0.9rem;
    border-bottom: 1px solid rgba(27,39,84,0.07);
}
.mc__progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: rgba(27,39,84,0.35);
    font-weight: 500;
    margin-bottom: 0.4rem;
}
.mc__progress-track {
    height: 4px;
    background: rgba(27,39,84,0.07);
    border-radius: 100px;
    overflow: hidden;
}
.mc__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--logo-blue), #6b8fd4);
    border-radius: 100px;
    width: 0%;
    transition: width 1.4s var(--ease-out);
}

/* Kategorie-Liste */
.mc__list-wrap {
    position: relative;
    height: 152px;
    overflow: hidden;
}
.mc__list-wrap::before,
.mc__list-wrap::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 36px;
    z-index: 2;
    pointer-events: none;
}
.mc__list-wrap::before { top: 0;    background: linear-gradient(to bottom, var(--white), transparent); }
.mc__list-wrap::after  { bottom: 0; background: linear-gradient(to top,   var(--white), transparent); }
.mc__list {
    /* position managed by JS translateY */
}

/* Karten-Footer */
.mc__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.1rem;
    background: #f8f9fc;
    border-top: 1px solid rgba(27,39,84,0.07);
    font-size: 0.6rem;
    color: rgba(27,39,84,0.3);
    font-weight: 500;
    letter-spacing: 0.04em;
    gap: 0.35rem;
}
.mc__footer-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(27,39,84,0.2);
}

/* ═══════════════════════════════════════════════════════════
   SECTION A — DARK FEATURE (permanentes-labor.html)
   ═══════════════════════════════════════════════════════════ */
.pl-dark-feature {
    background: var(--navy);
    overflow: hidden;
    position: relative;
}
.pl-df__inner {
    display: grid;
    grid-template-columns: 1fr 46%;
    min-height: 540px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left column */
.pl-df__left {
    padding: clamp(4rem, 7vw, 6.5rem) clamp(2rem, 5vw, 5rem) clamp(4rem, 7vw, 6.5rem) clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 2;
}
.pl-df__pill {
    display: inline-flex;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    margin-bottom: 2rem;
    width: fit-content;
}
.pl-df__intro {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 2.5rem;
}
.pl-df__stat {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pl-df__stat-num {
    font-size: clamp(5rem, 9vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}
.pl-df__stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}
.pl-df__sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.75;
    max-width: 48ch;
    margin: 0;
}

/* Right column — photo bleeding to edge */
.pl-df__right {
    position: relative;
    overflow: hidden;
}
.pl-df__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    opacity: 0.55;
}
.pl-df__right::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        var(--navy) 0%,
        rgba(27,39,84,0.7) 25%,
        rgba(27,39,84,0.2) 60%,
        transparent 100%
    );
}

@media (max-width: 900px) {
    .pl-df__inner { grid-template-columns: 1fr; }
    .pl-df__right { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION B — BENTO GRID (permanentes-labor.html)
   ═══════════════════════════════════════════════════════════ */
.pl-bento {
    background: var(--off-white);
    padding: clamp(4.5rem, 8vw, 8rem) 0;
}
.pl-bento__h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--navy);
    margin: 0.5rem 0 3rem;
}
.pl-bento__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1rem;
}
/* Featured cards span 2 columns */
.pl-bento__grid .pl-bento__card:nth-child(4) { grid-column: span 2; }
.pl-bento__grid .pl-bento__card:nth-child(7) { grid-column: span 2; }

.pl-bento__card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem 1.5rem 1.5rem;
    border: 1px solid rgba(27,39,84,0.07);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}
.pl-bento__card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--logo-blue);
    border-radius: 0 2px 2px 0;
}
.pl-bento__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(27,39,84,0.12);
}
.pl-bento__card--featured {
    background: linear-gradient(135deg, #f8f9ff 0%, var(--white) 100%);
}
.pl-bento__card--featured::before {
    background: linear-gradient(to bottom, var(--logo-blue), #6b8fd4);
    width: 4px;
}
.pl-bento__cat {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(27,39,84,0.38);
}
.pl-bento__val {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--navy);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    flex-wrap: wrap;
}
.pl-bento__val em {
    font-size: 0.4em;
    font-weight: 700;
    font-style: normal;
    color: var(--logo-blue);
    letter-spacing: 0.02em;
}
.pl-bento__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
    margin-top: auto;
}
.pl-bento__badge--dakks {
    color: #166534;
    background: #dcfce7;
}
.pl-bento__badge--werks {
    color: #92400e;
    background: #fef3c7;
}
.pl-bento__link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--logo-blue);
    text-decoration: none;
    margin-top: 0.25rem;
    transition: color 0.15s;
}
.pl-bento__link:hover { color: var(--navy); }

@media (max-width: 720px) {
    .pl-bento__grid { grid-template-columns: 1fr 1fr; }
    .pl-bento__grid .pl-bento__card:nth-child(4),
    .pl-bento__grid .pl-bento__card:nth-child(7) { grid-column: span 2; }
}
@media (max-width: 480px) {
    .pl-bento__grid { grid-template-columns: 1fr; }
    .pl-bento__grid .pl-bento__card:nth-child(4),
    .pl-bento__grid .pl-bento__card:nth-child(7) { grid-column: span 1; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION C — PROCESS STRIP (permanentes-labor.html)
   ═══════════════════════════════════════════════════════════ */
.pl-process {
    background: var(--white);
    padding: clamp(4.5rem, 8vw, 8rem) 0;
}
.pl-process__h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--navy);
    margin: 0.5rem 0 3.5rem;
}
.pl-process__steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 4rem;
}
.pl-process__step {
    flex: 1;
    position: relative;
    padding: 0.25rem 1.5rem 0 0;
}
.pl-process__bg-num {
    position: absolute;
    top: -0.5rem;
    left: -0.25rem;
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--navy);
    opacity: 0.04;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    font-variant-numeric: tabular-nums;
}
.pl-process__overline {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--logo-blue);
    margin-bottom: 0.65rem;
    position: relative;
}
.pl-process__title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin: 0 0 0.5rem;
    position: relative;
}
.pl-process__desc {
    font-size: 0.85rem;
    color: rgba(27,39,84,0.52);
    line-height: 1.65;
    margin: 0;
    position: relative;
}
/* Dotted connector line between steps */
.pl-process__connector {
    flex-shrink: 0;
    width: 2rem;
    height: 1px;
    margin-top: 2rem;
    border-top: 2px dashed rgba(27,39,84,0.15);
}

/* Callout stat */
.pl-process__callout {
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(27,39,84,0.08);
    max-width: 420px;
}
.pl-process__callout-num {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    color: var(--navy);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.pl-process__callout-avg {
    font-size: 0.46em;
    font-weight: 700;
    letter-spacing: 0;
    vertical-align: 0.18em;
    margin-right: 0.04em;
    opacity: 0.55;
}
.pl-process__callout-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(27,39,84,0.45);
    line-height: 1.4;
}

/* Delivery / pickup option links inside a step */
.pl-process__links {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    margin-top: 0.7rem;
}
.pl-process__link-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(27,39,84,0.3);
    margin-bottom: 0.1rem;
}
.pl-process__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--logo-blue);
    text-decoration: none;
    transition: opacity 0.15s ease;
}
.pl-process__link::before {
    content: '\2192';
    font-size: 0.68rem;
    opacity: 0.6;
}
.pl-process__link:hover { opacity: 0.65; }
/* Optional step (Reparatur) */
.pl-process__step--optional { opacity: 0.82; }
.pl-process__step--optional .pl-process__overline { color: rgba(59,85,141,0.5); }
.pl-process__step--optional .pl-process__title { color: rgba(27,39,84,0.65); }
.pl-process__step--optional .pl-process__bg-num { opacity: 0.025; }
/* Loop-back hint */
.pl-process__loop-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.7rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--logo-blue);
    opacity: 0.7;
}
.pl-process__loop-hint::before {
    content: '\21BA';
    font-size: 0.75rem;
}

@media (max-width: 760px) {
    .pl-process__steps {
        flex-direction: column;
        gap: 2.5rem;
    }
    .pl-process__connector {
        width: 1px;
        height: 1.5rem;
        margin: 0 0 0 0.25rem;
        border-top: none;
        border-left: 2px dashed rgba(27,39,84,0.15);
    }
    .pl-process__step { padding: 0; }
}

/* ═══════════════════════════════════════════════════════════
   FRAMELESS DISPLAY (permanentes-labor.html hero — Konzept 1)
   ═══════════════════════════════════════════════════════════ */

.fl-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-left: 2.5rem;
    animation: flEntry 0.95s cubic-bezier(0.16,1,0.3,1) 0.85s both;
}

@keyframes flEntry {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.fl-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(27,39,84,0.15) 15%,
        rgba(27,39,84,0.15) 85%,
        transparent 100%
    );
}

.fl-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.fl-overline {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(27,39,84,0.3);
}

.fl-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.fl-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    animation: flPulse 1.8s ease-in-out infinite;
}

@keyframes flPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.fl-cat {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(27,39,84,0.4);
    margin-bottom: 0.2rem;
    transition: opacity 0.15s ease, transform 0.15s ease;
    min-height: 1em;
}

.fl-cat.is-changing {
    opacity: 0;
    transform: translateY(-4px);
}

.fl-value {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    line-height: 1;
    margin-bottom: 0.85rem;
}

.fl-num {
    font-size: clamp(4rem, 6vw, 5.6rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--navy);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.fl-unit {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--logo-blue);
    letter-spacing: -0.02em;
}

.fl-progress-track {
    height: 2px;
    background: rgba(27,39,84,0.08);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 1.4rem;
}

.fl-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--logo-blue) 0%, #7b9cf4 100%);
    border-radius: 100px;
    width: 0%;
    transition: width 1.35s cubic-bezier(0.16,1,0.3,1);
}

.fl-table {
    display: flex;
    flex-direction: column;
}

.fl-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.38rem 0 0.38rem 0.6rem;
    border-left: 2px solid transparent;
    border-radius: 0 3px 3px 0;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.fl-row.is-active {
    border-left-color: var(--logo-blue);
    background: rgba(59,85,141,0.055);
}

.fl-row-name {
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(27,39,84,0.4);
    transition: color 0.25s ease, font-weight 0.25s ease;
}

.fl-row.is-active .fl-row-name {
    color: var(--navy);
    font-weight: 700;
}

.fl-row-right {
    display: flex;
    align-items: baseline;
    gap: 0.22rem;
}

.fl-row-num {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--navy);
    font-variant-numeric: tabular-nums;
}

.fl-row-unit {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--logo-blue);
    min-width: 24px;
    text-align: right;
}

/* ═══════════════════════════════════════════════════════════
   MOBILES LABOR — FEATURES (Linear Dark Numbered)
   ═══════════════════════════════════════════════════════════ */

.ml-features {
    background: var(--navy);
    padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(4rem, 7vw, 6.5rem);
}

.ml-features__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* Header */
.ml-features__header {
    margin-bottom: 3.5rem;
}

.ml-features__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.25rem;
}

.ml-features__badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
}

.ml-features__h2 {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.ml-features__h2 em {
    font-style: normal;
    color: rgba(255,255,255,0.35);
}

/* Divider */
.ml-features__rule {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 0 0 3.5rem;
}

/* 4-column grid */
.ml-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.ml-features__item {
    padding: 0 2.5rem 0 0;
    border-right: 1px solid rgba(255,255,255,0.08);
    margin-right: 2.5rem;
}

.ml-features__item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.ml-features__num {
    font-size: clamp(3.5rem, 5vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    opacity: 0.1;
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0 0 1.25rem;
    font-variant-numeric: tabular-nums;
}

.ml-features__title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin: 0 0 0.75rem;
}

.ml-features__body {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    margin: 0;
}

/* Stats bar */
.ml-features__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 4rem;
    padding-top: 2.5rem;
}

.ml-features__stat {
    padding-right: 2rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.ml-features__stat:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 2rem;
}

.ml-features__stat:nth-child(2) {
    padding-left: 2rem;
}

.ml-features__stat-num {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0 0 0.4rem;
}

.ml-features__stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .ml-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ml-features__item {
        padding: 0 2rem 2.5rem 0;
        margin-right: 2rem;
    }
    .ml-features__item:nth-child(2) {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }
    .ml-features__item:nth-child(3) {
        border-right: 1px solid rgba(255,255,255,0.08);
        margin-right: 2rem;
        padding-right: 2rem;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding-top: 2.5rem;
    }
    .ml-features__item:nth-child(4) {
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding-top: 2.5rem;
    }
}

@media (max-width: 560px) {
    .ml-features__grid {
        grid-template-columns: 1fr;
    }
    .ml-features__item,
    .ml-features__item:nth-child(2),
    .ml-features__item:nth-child(3),
    .ml-features__item:nth-child(4) {
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 2rem 0 0;
        margin: 0;
    }
    .ml-features__item:first-child {
        border-top: none;
        padding-top: 0;
    }
    .ml-features__stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .ml-features__stat,
    .ml-features__stat:nth-child(2),
    .ml-features__stat:last-child {
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 1.5rem 0 0;
    }
    .ml-features__stat:first-child {
        border-top: none;
        padding-top: 0;
    }
}

/* ═══════════════════════════════════════════════════════════
   MOBILES LABOR — BENEFITS GRID (Section B — legacy, replaced)
   ═══════════════════════════════════════════════════════════ */

.ml-benefits {
    background: var(--off-white);
    padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.ml-benefits__header {
    max-width: 640px;
    margin-bottom: 3rem;
}

.ml-benefits__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--logo-blue);
    margin-bottom: 0.75rem;
}

.ml-benefits__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.ml-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.ml-benefits__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 2rem 2.25rem;
    border: 1px solid rgba(27, 39, 84, 0.07);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ml-benefits__card:hover {
    box-shadow: 0 8px 32px rgba(27, 39, 84, 0.1);
    transform: translateY(-3px);
}

.ml-benefits__icon {
    width: 44px;
    height: 44px;
    background: rgba(59, 85, 141, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logo-blue);
    margin-bottom: 1.25rem;
}

.ml-benefits__card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.ml-benefits__card p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 640px) {
    .ml-benefits__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILES LABOR — CHECKLIST / ADVANTAGES (Section C)
   ═══════════════════════════════════════════════════════════ */

.ml-checklist {
    background: var(--navy);
    padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.ml-checklist__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.ml-checklist__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.75rem;
}

.ml-checklist__num {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.ml-checklist__num-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.ml-checklist__title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.ml-checklist__sub {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ml-checklist__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    color: var(--navy);
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 100px;
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.ml-checklist__btn:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

.ml-checklist__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ml-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.ml-checklist__check {
    width: 22px;
    height: 22px;
    background: rgba(74, 222, 128, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: #4ade80;
}

.ml-checklist__item-body { flex: 1; }

.ml-checklist__item-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.ml-checklist__item-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.15rem 0 0;
}

@media (max-width: 768px) {
    .ml-checklist__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   MOBILES LABOR — HERO (mobiles-labor.html)
   ═══════════════════════════════════════════════════════════ */

.ml-hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: grid;
    grid-template-columns: 55% 45%;
    overflow: hidden;
}

.ml-hero__left {
    position: relative;
    z-index: 2;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(64px, 9vw, 88px) clamp(2rem, 6vw, 5rem) clamp(4rem, 7vw, 6rem);
}

.ml-hero__left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.ml-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255,255,255,0.28);
    margin-bottom: 2rem;
    position: relative;
    opacity: 0;
    animation: mlFadeUp 0.65s var(--ease-out) 0.10s forwards;
}

.ml-hero__breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
}

.ml-hero__breadcrumb a:hover { color: rgba(255,255,255,0.6); }
.ml-hero__breadcrumb span:last-child { color: rgba(255,255,255,0.55); }

.ml-hero__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    margin-bottom: 1rem;
    position: relative;
    opacity: 0;
    animation: mlFadeUp 0.65s var(--ease-out) 0.20s forwards;
}

.ml-hero__h1 {
    font-size: clamp(2.9rem, 5vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.06;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    opacity: 0;
    animation: mlFadeUp 0.65s var(--ease-out) 0.30s forwards;
}

.ml-hero__h1 em {
    font-style: normal;
    color: rgba(255,255,255,0.45);
}

.ml-hero__sub {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.75;
    max-width: 46ch;
    margin-bottom: 2.5rem;
    position: relative;
    opacity: 0;
    animation: mlFadeUp 0.65s var(--ease-out) 0.42s forwards;
}

/* Route animation */
.ml-route {
    position: relative;
    margin-bottom: 2rem;
    height: 44px;
    display: flex;
    align-items: center;
    max-width: 240px;
    opacity: 0;
    animation: mlFadeUp 0.65s var(--ease-out) 0.54s forwards;
}

.ml-route__node {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.ml-route__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.ml-route__dot--dest {
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
}

.ml-route__label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
}

.ml-route__line-wrap {
    flex: 1;
    height: 12px;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 0.5rem;
    margin-bottom: 1.3rem;
}

.ml-route__svg {
    width: 100%;
    height: 16px;
    overflow: visible;
}

.ml-route__path {
    fill: none;
    stroke: rgba(255,255,255,0.22);
    stroke-width: 1.5;
    stroke-dasharray: 6 5;
    stroke-linecap: round;
    stroke-dashoffset: 200;
    animation: mlRouteDraw 1.4s var(--ease-out) 0.6s forwards;
}

@keyframes mlRouteDraw {
    to { stroke-dashoffset: 0; }
}

.ml-route__truck {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--logo-blue);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: mlTruckMove 1.4s var(--ease-out) 0.6s forwards;
}

@keyframes mlTruckMove {
    from { left: 0%; }
    to   { left: 100%; }
}

.ml-route__truck svg {
    width: 10px;
    height: 10px;
    fill: #fff;
}

/* DAkkS pill */
.ml-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 100px;
    padding: 0.38rem 0.9rem;
    margin-bottom: 2rem;
    width: fit-content;
    position: relative;
    opacity: 0;
    animation: mlFadeUp 0.65s var(--ease-out) 0.66s forwards;
}

.ml-hero__pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
}

/* Stats */
.ml-hero__stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    opacity: 0;
    animation: mlFadeUp 0.65s var(--ease-out) 0.66s forwards;
}

.ml-stat__num {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #fff;
    line-height: 1;
    display: block;
}

.ml-stat__label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    line-height: 1.4;
    margin-top: 0.25rem;
    display: block;
}

/* Buttons */
.ml-hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    position: relative;
    opacity: 0;
    animation: mlFadeUp 0.65s var(--ease-out) 0.78s forwards;
}

.ml-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s var(--ease-out);
    border: none;
}

.ml-btn--primary {
    background: #fff;
    color: var(--navy);
}

.ml-btn--primary:hover {
    background: rgba(255,255,255,0.92);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.ml-btn--ghost {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.14);
}

.ml-btn--ghost:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    transform: translateY(-1px);
}

/* Right photo panel */
.ml-hero__right {
    position: relative;
    overflow: hidden;
}

.ml-hero__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 65%;
    display: block;
    animation: mlImgReveal 1.1s var(--ease-out) 0.2s both;
}

@keyframes mlImgReveal {
    from { transform: scale(1.04); opacity: 0.6; }
    to   { transform: scale(1);    opacity: 1; }
}

.ml-hero__right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--navy) 0%,
        rgba(27,39,84,0.3) 18%,
        transparent 40%
    );
    z-index: 1;
    pointer-events: none;
}

.ml-hero__right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.35) 0%,
        transparent 35%
    );
    z-index: 1;
    pointer-events: none;
}

.ml-hero__badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    animation: mlFadeUp 0.7s var(--ease-out) 1s both;
}

.ml-hero__badge-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
}

.ml-hero__badge-value {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
}

@keyframes mlFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
    .ml-hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto 55vw;
        min-height: auto;
    }
    .ml-hero__left {
        padding: 5.5rem 1.5rem 2.5rem;
    }
    .ml-hero__right::before {
        background: linear-gradient(to bottom, var(--navy) 0%, transparent 30%);
    }
}

/* ═══════════════════════════════════════════════════════════
   BEREICHE-CAROUSEL (permanentes-labor.html — Kompetenzbereiche)
   ═══════════════════════════════════════════════════════════ */

.pl-areas {
    background: var(--white);
    padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.pl-areas__h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--navy);
    margin: 0.5rem 0 2rem;
    line-height: 1.1;
}

.pl-areas__carousel {
    position: relative;
    background: var(--navy);
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
}

.pl-areas__slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 52% 48%;
    opacity: 0;
    transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}

.pl-areas__slide--active {
    opacity: 1;
    pointer-events: auto;
}

.pl-areas__left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.5rem 5rem;
    overflow: hidden;
}

.pl-areas__bg-num {
    position: absolute;
    top: -0.18em;
    left: -0.06em;
    font-size: clamp(10rem, 18vw, 16rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    font-variant-numeric: tabular-nums;
}

.pl-areas__kicker {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin: 0 0 0.6rem;
}

.pl-areas__title {
    font-size: clamp(1.5rem, 2.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    color: #fff;
    margin: 0 0 0.85rem;
}

.pl-areas__body {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin: 0 0 1.1rem;
    max-width: 40ch;
}

.pl-areas__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
}

.pl-areas__chip {
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255,255,255,0.48);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 0.22rem 0.65rem;
}

.pl-areas__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.15s ease, gap 0.2s ease;
    position: relative;
    z-index: 1;
}

.pl-areas__cta:hover { color: #fff; gap: 0.55rem; }

.pl-areas__right {
    position: relative;
    overflow: hidden;
}

.pl-areas__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.pl-areas__slide--active .pl-areas__right img {
    animation: plAreasImgIn 0.75s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes plAreasImgIn {
    from { transform: scale(1.06); }
    to   { transform: scale(1); }
}

.pl-areas__right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy) 0%, rgba(27,39,84,0.25) 28%, transparent 52%);
    z-index: 1;
    pointer-events: none;
}

.pl-areas__arrow {
    position: absolute;
    bottom: 1.4rem;
    z-index: 20;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.65);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pl-areas__arrow:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.28);
    color: #fff;
}

.pl-areas__arrow--prev { left: 2.25rem; }
.pl-areas__arrow--next { left: calc(2.25rem + 38px + 0.5rem); }

.pl-areas__dots {
    position: absolute;
    bottom: 1.65rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.42rem;
    z-index: 20;
}

.pl-areas__dot {
    height: 5px;
    width: 5px;
    border-radius: 100px;
    background: rgba(255,255,255,0.22);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: width 0.25s cubic-bezier(0.16,1,0.3,1), background 0.25s ease;
}

.pl-areas__dot--active {
    width: 20px;
    background: rgba(255,255,255,0.85);
}

@media (max-width: 680px) {
    .pl-areas__carousel { height: auto; border-radius: 12px; }
    .pl-areas__slide {
        position: relative;
        grid-template-columns: 1fr;
        display: none;
        opacity: 1;
        pointer-events: auto;
    }
    .pl-areas__slide--active { display: grid; }
    .pl-areas__right { height: 220px; }
    .pl-areas__right::before {
        background: linear-gradient(to bottom, var(--navy) 0%, transparent 28%);
    }
    .pl-areas__left { padding: 2rem 1.5rem 4.5rem; }
    .pl-areas__arrow--prev { left: 1.25rem; }
    .pl-areas__arrow--next { left: calc(1.25rem + 38px + 0.5rem); }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL CHAPTERS — Kompetenzbereiche (kalibrierungen.html)
   ═══════════════════════════════════════════════════════════ */

.scroll-chapters {
    position: relative;
    background: var(--navy);
}

/* Stage: bleibt im Viewport (sticky) während Spacer durchgescrollt wird */
.sc-stage {
    position: sticky;
    top: 0;
    height: 100svh;
    overflow: hidden;
}

/* Jedes Kapitel liegt absolut übereinander — Crossfade via opacity */
.sc-chapter {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 55% 45%;
    opacity: 0;
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.sc-chapter--active {
    opacity: 1;
    pointer-events: auto;
}

/* ── Linke Inhaltsspalte ─────────────────────────────────── */
.sc-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 6vw, 7rem) clamp(2.5rem, 5vw, 6rem);
    overflow: hidden;
}

/* Riesige Geist-Zahl im Hintergrund */
.sc-bg-num {
    position: absolute;
    top: -0.18em;
    left: -0.06em;
    font-size: clamp(16rem, 28vw, 26rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.032);
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.sc-content {
    position: relative;
    z-index: 1;
}

.sc-kicker {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin: 0 0 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.sc-kicker::before {
    content: '';
    width: 22px;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
    display: block;
}

.sc-title {
    font-size: clamp(2.6rem, 4.2vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.06;
    color: #fff;
    margin: 0 0 1.4rem;
}

.sc-body {
    font-size: 1rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.65);
    max-width: 46ch;
    margin: 0 0 2rem;
}

.sc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 2.5rem;
}
.sc-chip {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 100px;
    padding: 0.3rem 0.8rem;
    white-space: nowrap;
}

.sc-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 2px;
    width: fit-content;
    transition: border-color 0.2s ease, gap 0.2s ease, color 0.2s ease;
}
.sc-cta:hover {
    border-color: rgba(255, 255, 255, 0.72);
    gap: 0.72rem;
    color: #fff;
}

/* ── Rechte Fotospalte ───────────────────────────────────── */
.sc-right {
    position: relative;
    overflow: hidden;
}
.sc-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* Gradient: Foto nahtlos in den dunklen Hintergrund übergehen */
.sc-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy) 0%, transparent 20%);
    pointer-events: none;
    z-index: 1;
}

/* ── Fortschritts-Dots ───────────────────────────────────── */
.sc-dots {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    z-index: 20;
}
.sc-dot {
    width: 5px;
    height: 5px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, height 0.3s ease;
}
.sc-dot--active {
    background: rgba(255, 255, 255, 0.82);
    height: 20px;
}
.sc-dot:hover:not(.sc-dot--active) {
    background: rgba(255, 255, 255, 0.4);
}

/* ── Scroll-Spacer — erzeugt die nötige Scrollhöhe ──────── */
.sc-spacer {
    height: calc(6 * 28svh);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
    .sc-chapter {
        grid-template-columns: 60% 40%;
    }
}

@media (max-width: 720px) {
    .sc-chapter {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 38svh;
    }
    .sc-left {
        padding: 2.5rem 1.75rem 1.25rem;
        justify-content: flex-end;
    }
    .sc-bg-num {
        font-size: clamp(10rem, 40vw, 18rem);
    }
    .sc-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .sc-dots {
        right: 1rem;
    }
    .sc-spacer {
        height: calc(6 * 35svh);
    }
}

/* Mobile: kein Sticky — Kapitel werden vertikal gestapelt */
@media (max-width: 500px) {
    .sc-stage {
        position: relative;
        height: auto;
    }
    .sc-chapter {
        position: relative;
        inset: auto;
        opacity: 1 !important;
        pointer-events: auto !important;
        display: flex;
        flex-direction: column;
        min-height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .sc-chapter:last-of-type {
        border-bottom: none;
    }
    .sc-right {
        height: 52svh;
    }
    .sc-right::before {
        background: linear-gradient(to bottom, var(--navy) 0%, transparent 30%);
    }
    .sc-left {
        padding: 2rem 1.5rem 1.5rem;
        justify-content: flex-start;
    }
    .sc-bg-num {
        display: none;
    }
    .sc-dots {
        display: none;
    }
    .sc-spacer {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   VO PHOTO PANEL — right column in light subpage-hero
   ═══════════════════════════════════════════════════════════ */

.vo-photo-panel {
    position: relative;
}

.vo-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center 35%;
    border-radius: 16px;
    display: block;
    box-shadow:
        0 0 0 1px rgba(27,39,84,0.08),
        0 20px 60px rgba(27,39,84,0.22),
        0 40px 100px rgba(27,39,84,0.10);
}

/* ═══════════════════════════════════════════════════════════
   REPARATURSERVICE — Hero Photo Panel + Stats Strip
   ═══════════════════════════════════════════════════════════ */

.rp-photo-panel {
    position: relative;
}

.rp-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 45%;
    border-radius: 16px;
    display: block;
    box-shadow:
        0 0 0 1px rgba(27,39,84,0.08),
        0 20px 60px rgba(27,39,84,0.22),
        0 40px 100px rgba(27,39,84,0.10);
}

/* Glassmorphism badge floating over the photo */
.rp-photo-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(27,39,84,0.10);
    border-radius: 100px;
    padding: 0.4rem 0.9rem 0.4rem 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(27,39,84,0.14);
    animation: hspEntry 0.85s cubic-bezier(0.23,1,0.32,1) 1.1s both;
}

.rp-photo-badge svg {
    flex-shrink: 0;
    color: var(--logo-blue);
}

/* Stats strip below the CTA buttons */
.rp-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(27,39,84,0.09);
}

.rp-stat__val {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.rp-stat__label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(27,39,84,0.45);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

@media (max-width: 768px) {
    .rp-stats { gap: 1.25rem; }
    .rp-photo { height: 260px; }
    .rp-photo-badge { font-size: 0.62rem; bottom: 14px; left: 14px; }
}

/* ═══════════════════════════════════════════════════════════
   RP-FEATURES — Dark numbered section (reparaturservice.html)
   ═══════════════════════════════════════════════════════════ */

.rp-features {
    background: var(--navy);
    padding: clamp(4.5rem, 8vw, 8rem) 0;
    position: relative;
}
.rp-features::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: min(900px, 85vw);
    height: 1px;
    background: rgba(255,255,255,0.07);
}
.rp-features__header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.rp-features__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 0.3rem 0.85rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.rp-features__badge-dot {
    width: 6px; height: 6px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
}
.rp-features__h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 0;
}
.rp-features__h2 em {
    font-style: normal;
    color: rgba(255,255,255,0.32);
}
.rp-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
}
.rp-features__item {
    background: var(--navy);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: background 0.25s;
}
.rp-features__item:hover { background: rgba(59,85,141,0.6); }
.rp-features__num {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.14em;
    font-variant-numeric: tabular-nums;
    margin-bottom: 1.5rem;
}
.rp-features__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
    line-height: 1.25;
}
.rp-features__body {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    flex: 1;
}
@media (max-width: 900px) {
    .rp-features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .rp-features__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RP-LEISTUNGEN / RP-CARD — Benefits cards (reparaturservice.html)
   ═══════════════════════════════════════════════════════════ */

.rp-leistungen {
    background: var(--off-white);
    padding: clamp(4.5rem, 8vw, 8rem) 0;
    border-top: 1px solid rgba(27,39,84,0.07);
}
.rp-leistungen__kicker {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--logo-blue);
    margin-bottom: 0.6rem;
}
.rp-leistungen__h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--navy);
    margin: 0 0 3rem;
    line-height: 1.1;
}
.rp-leistungen__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.rp-card {
    background: var(--white);
    border: 1px solid rgba(27,39,84,0.07);
    border-radius: 14px;
    padding: 2rem;
    transition: box-shadow 0.25s, transform 0.25s;
}
.rp-card:hover {
    box-shadow: 0 8px 32px rgba(27,39,84,0.12);
    transform: translateY(-3px);
}
.rp-card__abbr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    background: var(--navy);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    border-radius: 8px;
    margin-bottom: 1.25rem;
}
.rp-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin: 0 0 0.6rem;
}
.rp-card__body {
    font-size: 0.8rem;
    color: #5a5a5a;
    line-height: 1.65;
}
@media (max-width: 600px) {
    .rp-leistungen__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RP-ANFRAGE — Contact form section (reparaturservice.html)
   ═══════════════════════════════════════════════════════════ */

.rp-anfrage {
    background: var(--white);
    padding: clamp(4.5rem, 8vw, 8rem) 0;
    border-top: 1px solid rgba(27,39,84,0.07);
}
.rp-anfrage__layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}
.rp-anfrage__kicker {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--logo-blue);
    margin-bottom: 0.6rem;
}
.rp-anfrage__h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--navy);
    margin: 0 0 0.75rem;
    line-height: 1.1;
}
.rp-anfrage__sub {
    font-size: 0.85rem;
    color: #5a5a5a;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}
.rp-anfrage__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rp-anfrage__checklist li {
    padding-left: 1.35rem;
    position: relative;
    font-size: 0.8rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
    line-height: 1.5;
}
.rp-anfrage__checklist li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--logo-blue);
    font-weight: 700;
}
.rp-form {
    background: var(--off-white);
    border: 1px solid rgba(27,39,84,0.08);
    border-radius: 16px;
    padding: 2.25rem;
}
.rp-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}
.rp-form__group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.85rem;
}
.rp-form__label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.4rem;
}
.rp-form__input,
.rp-form__select,
.rp-form__textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: var(--white);
    border: 1px solid rgba(27,39,84,0.12);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.82rem;
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.rp-form__input:focus,
.rp-form__select:focus,
.rp-form__textarea:focus {
    border-color: var(--logo-blue);
    box-shadow: 0 0 0 3px rgba(59,85,141,0.12);
}
.rp-form__textarea { resize: vertical; min-height: 6rem; }
.rp-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231b2754' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.5rem;
}
.rp-form__submit {
    width: 100%;
    padding: 0.85rem;
    background: var(--navy);
    color: #fff;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.15s;
    margin-top: 0.25rem;
}
.rp-form__submit:hover {
    background: var(--logo-blue);
    transform: translateY(-1px);
}
.rp-form__note {
    font-size: 0.62rem;
    color: rgba(27,39,84,0.4);
    line-height: 1.5;
}
@media (max-width: 780px) {
    .rp-anfrage__layout { grid-template-columns: 1fr; gap: 2rem; }
    .rp-form__row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RP-WARTUNG — Maintenance section (reparaturservice.html)
   ═══════════════════════════════════════════════════════════ */

.rp-wartung {
    background: var(--off-white);
    padding: clamp(4.5rem, 8vw, 8rem) 0;
    border-top: 1px solid rgba(27,39,84,0.07);
}
.rp-wartung__layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: start;
}
.rp-wartung__kicker {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--logo-blue);
    margin-bottom: 0.6rem;
}
.rp-wartung__h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--navy);
    margin: 0 0 1rem;
    line-height: 1.1;
}
.rp-wartung__body {
    font-size: 0.85rem;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.rp-wartung__note {
    font-size: 0.78rem;
    color: var(--navy);
    font-weight: 600;
    background: rgba(59,85,141,0.07);
    border-left: 3px solid var(--logo-blue);
    padding: 0.75rem 1rem;
    border-radius: 0 8px 8px 0;
    line-height: 1.55;
}
.rp-wartung__services {
    background: var(--white);
    border: 1px solid rgba(27,39,84,0.08);
    border-radius: 16px;
    padding: 2.25rem;
}
.rp-wartung__services-title {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(27,39,84,0.4);
    margin: 0 0 1.25rem;
}
.rp-wartung__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}
.rp-wartung__list li {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    font-size: 0.82rem;
    color: var(--navy);
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(27,39,84,0.06);
    line-height: 1.45;
}
.rp-wartung__list li:last-child { border-bottom: none; }
.rp-wartung__list li::before {
    content: '✓';
    color: var(--logo-blue);
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.rp-wartung__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: var(--navy);
    color: #fff;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.rp-wartung__cta:hover { background: var(--logo-blue); }
@media (max-width: 780px) {
    .rp-wartung__layout { grid-template-columns: 1fr; gap: 2rem; }
}


/* ═══════════════════════════════════════════════════════════ */

.vo-features {
    background: var(--navy);
    padding: clamp(4rem, 7vw, 7rem) 0 clamp(4.5rem, 8vw, 8rem);
    position: relative;
}

/* subtle top border line between hero and features */
.vo-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 85vw);
    height: 1px;
    background: rgba(255,255,255,0.07);
}

.vo-features__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 3rem);
}

.vo-features__header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.vo-features__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
}

.vo-features__badge-dot {
    width: 6px;
    height: 6px;
    background: rgba(100,160,255,0.8);
    border-radius: 50%;
    flex-shrink: 0;
}

.vo-features__h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 0;
}

.vo-features__h2 em {
    font-style: normal;
    color: rgba(255,255,255,0.3);
}

.vo-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.vo-features__item {
    border-right: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.vo-features__item:last-child {
    border-right: none;
}

.vo-features__item:hover {
    background: rgba(255,255,255,0.03);
}

.vo-features__num {
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.07);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    display: block;
    user-select: none;
}

.vo-features__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
    line-height: 1.35;
}

.vo-features__body {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 0;
}

/* info note inside features (Hinweis) */
.vo-features__note {
    margin-top: clamp(3rem, 5vw, 4rem);
    background: rgba(100,135,230,0.1);
    border: 1px solid rgba(100,135,230,0.2);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.vo-features__note-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(100,135,230,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.vo-features__note-icon svg {
    display: block;
}

.vo-features__note-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

.vo-features__note-text strong {
    color: rgba(255,255,255,0.8);
}

.vo-features__note-text a {
    color: rgba(140,170,255,0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 900px) {
    .vo-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vo-features__item:nth-child(2) {
        border-right: none;
    }
    .vo-features__item:nth-child(1),
    .vo-features__item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
}

@media (max-width: 540px) {
    .vo-features__grid {
        grid-template-columns: 1fr;
    }
    .vo-features__item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .vo-features__item:last-child {
        border-bottom: none;
    }
}

/* ═══════════════════════════════════════════════════════
   v2-statement + v2-spotlight  (used by vame-3 & ueber-uns)
   ═══════════════════════════════════════════════════════ */
/* ── v2-statement ────────────────────────────────────── */
.v2-statement {
    background: var(--white);
    padding: clamp(4rem, 7vw, 7rem) 1.5rem;
    border-top: 1px solid rgba(27,39,84,0.07);
}
.v2-statement__inner { max-width: 860px; margin: 0 auto; }
.v2-statement__eyebrow {
    display: block; font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--logo-blue);
    margin-bottom: 2rem;
}
.v2-statement__h2 {
    font-size: clamp(2.4rem, 6.5vw, 5.2rem); font-weight: 300;
    letter-spacing: -0.03em; line-height: 1.08; color: var(--navy); margin-bottom: 2.5rem;
}
.v2-statement .word {
    display: inline-block;
}
.v2-statement .word--accent { color: var(--logo-blue); font-weight: 500; }
.v2-statement__solution {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: clamp(0.85rem, 1.5vw, 1rem); color: rgba(27,39,84,0.42);
    letter-spacing: -0.01em; line-height: 1.6;
}
.v2-statement__solution-line {
    display: inline-block; width: 2.5rem; height: 1px;
    background: rgba(27,39,84,0.18); flex-shrink: 0;
}
.v2-statement__solution strong { color: var(--navy); font-weight: 600; }

/* ── v2-spotlight ────────────────────────────────────── */
.v2-spotlight { padding: clamp(4.5rem, 8vw, 8rem) 0; background: var(--white); }
.v2-spotlight--alt { background: var(--off-white); border-top: 1px solid rgba(27,39,84,0.07); }
.v2-spotlight__layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 6rem); align-items: center;
}
.v2-spotlight--reversed .v2-spotlight__text { order: 2; }
.v2-spotlight--reversed .v2-spotlight__media { order: 1; }
.v2-spotlight__num {
    display: block; font-size: clamp(5rem, 10vw, 9rem); font-weight: 800;
    color: rgba(27,39,84,0.055); line-height: 0.9; letter-spacing: -0.06em;
    margin-bottom: -1.8rem; user-select: none; pointer-events: none;
}
.v2-spotlight__kicker {
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--logo-blue); margin-bottom: 0.6rem;
}
.v2-spotlight__h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 800;
    letter-spacing: -0.04em; color: var(--navy); line-height: 1.1; margin-bottom: 1rem;
}
.v2-spotlight__body { font-size: 0.875rem; color: #5a5a5a; line-height: 1.72; margin-bottom: 1.4rem; }
.v2-spotlight__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.v2-spotlight__list li { font-size: 0.82rem; color: var(--navy); display: flex; align-items: flex-start; gap: 0.65rem; line-height: 1.5; }
.v2-spotlight__list li::before {
    content: ''; display: inline-block; width: 16px; min-width: 16px; height: 16px;
    border-radius: 50%; margin-top: 2px; background-color: var(--logo-blue);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
}
.v2-spotlight__media img {
    width: 100%; height: 320px; object-fit: cover;
    border-radius: 20px; box-shadow: 0 12px 48px rgba(27,39,84,0.14);
}
.v2-spotlight__infobox {
    background: var(--navy); border-radius: 20px; padding: 2.25rem;
    height: 100%; min-height: 320px; display: flex; flex-direction: column; gap: 1.75rem;
}
.v2-spotlight__infobox-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.30); }
.v2-spotlight__infobox-steps { display: flex; flex-direction: column; gap: 1.25rem; flex: 1; }
.v2-spotlight__infobox-step { display: flex; align-items: flex-start; gap: 1rem; }
.v2-spotlight__infobox-stepnum { font-size: 0.56rem; font-weight: 800; letter-spacing: 0.1em; color: rgba(255,255,255,0.22); padding-top: 0.18rem; flex-shrink: 0; width: 1.5rem; }
.v2-spotlight__infobox-steptext { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.78); line-height: 1.5; letter-spacing: -0.01em; }
.v2-spotlight__infobox-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; flex: 1; align-content: flex-start; }
.v2-spotlight__infobox-tags span {
    font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    padding: 0.38rem 0.85rem; border-radius: 100px; letter-spacing: -0.01em;
}
@media (max-width: 820px) {
    .v2-spotlight__layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .v2-spotlight--reversed .v2-spotlight__text { order: 0; }
    .v2-spotlight--reversed .v2-spotlight__media { order: 0; }
}
.rp-required { color: var(--logo-blue); }

/* ── v2-schulung ─────────────────────────────────────── */
.v2-schulung {
    background: var(--off-white);
    padding: clamp(4rem, 8vw, 8rem) 0;
    border-top: 1px solid rgba(27,39,84,0.07);
}
.v2-schulung__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.v2-schulung__kicker {
    display: inline-block;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--logo-blue); margin-bottom: 0.75rem;
}
.v2-schulung__h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -0.03em; line-height: 1.15; margin: 0 0 1rem;
}
.v2-schulung__intro {
    font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin: 0;
}
.v2-schulung__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 860px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.v2-schulung__card {
    background: var(--white);
    border: 1px solid rgba(27,39,84,0.10);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
}
.v2-schulung__card--featured {
    background: var(--navy);
    border-color: var(--navy);
}
.v2-schulung__recommended {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}
.v2-schulung__days {
    font-size: 2.5rem; font-weight: 900;
    color: var(--navy); letter-spacing: -0.05em;
    line-height: 1; margin-bottom: 0.5rem;
}
.v2-schulung__card--featured .v2-schulung__days { color: rgba(255,255,255,0.9); }
.v2-schulung__days span {
    font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0; margin-left: 0.25rem;
    color: var(--text-muted);
}
.v2-schulung__card--featured .v2-schulung__days span { color: rgba(255,255,255,0.5); }
.v2-schulung__card-title {
    font-size: 1.05rem; font-weight: 700;
    color: var(--navy); margin: 0 0 1rem;
    line-height: 1.35;
}
.v2-schulung__card--featured .v2-schulung__card-title { color: #fff; }
.v2-schulung__divider {
    height: 1px;
    background: rgba(27,39,84,0.10);
    margin-bottom: 1rem;
}
.v2-schulung__card--featured .v2-schulung__divider { background: rgba(255,255,255,0.12); }
.v2-schulung__card-list {
    list-style: none; padding: 0; margin: 0 0 1.5rem;
    display: flex; flex-direction: column; gap: 0.5rem;
}
.v2-schulung__card-list li {
    font-size: 0.88rem; color: var(--text-muted);
    padding-left: 1.4rem; position: relative; line-height: 1.5;
}
.v2-schulung__card-list li::before {
    content: '\2713';
    position: absolute; left: 0;
    color: var(--logo-blue); font-weight: 700;
}
.v2-schulung__card--featured .v2-schulung__card-list li { color: rgba(255,255,255,0.65); }
.v2-schulung__card--featured .v2-schulung__card-list li::before { color: rgba(140,170,255,0.9); }
.v2-schulung__card-cta {
    display: inline-flex; align-items: center;
    font-size: 0.85rem; font-weight: 600;
    color: var(--navy); text-decoration: none;
    border: 1.5px solid rgba(27,39,84,0.25);
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    transition: all 0.18s var(--ease);
}
.v2-schulung__card-cta:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.v2-schulung__card--featured .v2-schulung__card-cta { color: #fff; border-color: rgba(255,255,255,0.3); }
.v2-schulung__card--featured .v2-schulung__card-cta:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); }
.v2-schulung__inhalte {
    max-width: 860px; margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(27,39,84,0.10);
    border-radius: var(--radius);
    padding: 2rem;
}
.v2-schulung__inhalte-title {
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--logo-blue); margin: 0 0 1.5rem;
}
.v2-schulung__inhalte-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.v2-schulung__inhalt-num {
    font-size: 0.7rem; font-weight: 700;
    color: var(--logo-blue); margin: 0 0 0.4rem;
    letter-spacing: 0.05em;
}
.v2-schulung__inhalt-text {
    font-size: 0.88rem; color: var(--navy);
    line-height: 1.5; margin: 0; font-weight: 500;
}
@media (max-width: 700px) {
    .v2-schulung__cards { grid-template-columns: 1fr; }
    .v2-schulung__inhalte-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .v2-schulung__inhalte-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   VAME 3 – v3-cloud
   ══════════════════════════════════════════════════════════ */
.v3-cloud {
    background: var(--off-white);
    padding: clamp(4rem, 8vw, 8rem) 0;
    border-top: 1px solid rgba(27,39,84,0.07);
}
.v3-cloud__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}
.v3-cloud__h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -0.03em; line-height: 1.12;
    margin: 0.75rem 0 1.25rem;
}
.v3-cloud__sub {
    font-size: 1rem; color: var(--text-muted);
    line-height: 1.65; max-width: 560px;
    margin: 0 auto 3rem;
}
.v3-cloud__tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}
.v3-cloud__tile {
    background: var(--white);
    border: 1px solid rgba(27,39,84,0.10);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: left;
}
.v3-cloud__tile-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(59,85,141,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--logo-blue);
    margin-bottom: 1rem;
}
.v3-cloud__tile-title {
    font-size: 0.95rem; font-weight: 700;
    color: var(--navy); margin: 0 0 0.5rem;
}
.v3-cloud__tile-desc {
    font-size: 0.86rem; color: var(--text-muted);
    line-height: 1.55; margin: 0;
}
@media (max-width: 640px) {
    .v3-cloud__tiles { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   VAME 3 – v3-choice (Produktvergleich)
   ══════════════════════════════════════════════════════════ */
.v3-choice {
    background: var(--white);
    padding: clamp(4rem, 8vw, 8rem) 0;
    border-top: 1px solid rgba(27,39,84,0.07);
}
.v3-choice__header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.v3-choice__h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -0.03em; line-height: 1.15;
    margin: 0.6rem 0 0;
}
.v3-choice__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}
.v3-choice__card {
    background: var(--off-white);
    border: 1px solid rgba(27,39,84,0.10);
    border-radius: var(--radius);
    padding: 2rem;
}
.v3-choice__card--featured {
    background: var(--navy);
    border-color: var(--navy);
}
.v3-choice__kicker {
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--logo-blue); margin: 0 0 0.75rem;
    display: block;
}
.v3-choice__card--featured .v3-choice__kicker { color: rgba(140,170,255,0.85); }
.v3-choice__h3 {
    font-size: 1.1rem; font-weight: 700;
    color: var(--navy); margin: 0 0 1rem;
    line-height: 1.35;
}
.v3-choice__card--featured .v3-choice__h3 { color: #fff; }
.v3-choice__divider {
    height: 1px;
    background: rgba(27,39,84,0.10);
    margin-bottom: 1rem;
}
.v3-choice__card--featured .v3-choice__divider { background: rgba(255,255,255,0.12); }
.v3-choice__list {
    list-style: none; padding: 0; margin: 0 0 1.5rem;
    display: flex; flex-direction: column; gap: 0.5rem;
}
.v3-choice__list li {
    font-size: 0.88rem; color: var(--text-muted);
    padding-left: 1.4rem; position: relative; line-height: 1.5;
}
.v3-choice__list li::before {
    content: '\2713';
    position: absolute; left: 0;
    color: var(--logo-blue); font-weight: 700;
}
.v3-choice__card--featured .v3-choice__list li { color: rgba(255,255,255,0.65); }
.v3-choice__card--featured .v3-choice__list li::before { color: rgba(140,170,255,0.9); }
.v3-choice__link {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.85rem; font-weight: 600;
    color: var(--navy); text-decoration: none;
    border-bottom: 1.5px solid rgba(27,39,84,0.25);
    padding-bottom: 1px;
    transition: color 0.18s, border-color 0.18s;
}
.v3-choice__link:hover { color: var(--logo-blue); border-color: var(--logo-blue); }
.v3-choice__card--featured .v3-choice__link { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.25); }
.v3-choice__card--featured .v3-choice__link:hover { color: #fff; border-color: rgba(255,255,255,0.6); }
@media (max-width: 640px) {
    .v3-choice__layout { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   VAME 3 – v3-schulung
   ══════════════════════════════════════════════════════════ */
.v3-schulung {
    background: var(--off-white);
    padding: clamp(4rem, 8vw, 8rem) 0;
    border-top: 1px solid rgba(27,39,84,0.07);
}
.v3-schulung__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.v3-schulung__h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -0.03em; line-height: 1.15;
    margin: 0.6rem 0 1rem;
}
.v3-schulung__intro {
    font-size: 0.95rem; color: var(--text-muted);
    line-height: 1.65; margin: 0;
}
.v3-schulung__card {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 2.5rem;
    max-width: 700px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.v3-schulung__days {
    font-size: 2.5rem; font-weight: 900;
    color: rgba(255,255,255,0.9);
    letter-spacing: -0.05em; line-height: 1;
    margin-bottom: 0.5rem;
}
.v3-schulung__days span {
    font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0; margin-left: 0.25rem;
    color: rgba(255,255,255,0.5);
}
.v3-schulung__card-title {
    font-size: 1.05rem; font-weight: 700;
    color: #fff; margin: 0 0 1rem; line-height: 1.35;
}
.v3-schulung__divider {
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin-bottom: 1rem;
}
.v3-schulung__card-list {
    list-style: none; padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}
.v3-schulung__card-list li {
    font-size: 0.88rem; color: rgba(255,255,255,0.65);
    padding-left: 1.4rem; position: relative; line-height: 1.5;
}
.v3-schulung__card-list li::before {
    content: '\2713';
    position: absolute; left: 0;
    color: rgba(140,170,255,0.9); font-weight: 700;
}
.v3-schulung__card-cta {
    display: inline-flex; align-items: center;
    font-size: 0.85rem; font-weight: 600;
    color: #fff; text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.30);
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    transition: all 0.18s var(--ease);
}
.v3-schulung__card-cta:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.55); }
.v3-schulung__inhalte {
    max-width: 700px; margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(27,39,84,0.10);
    border-radius: var(--radius);
    padding: 2rem;
}
.v3-schulung__inhalte-title {
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--logo-blue); margin: 0 0 1.5rem;
}
.v3-schulung__inhalte-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.v3-schulung__inhalt-num {
    font-size: 0.7rem; font-weight: 700;
    color: var(--logo-blue); margin: 0 0 0.4rem;
    letter-spacing: 0.05em;
}
.v3-schulung__inhalt-text {
    font-size: 0.85rem; color: var(--navy);
    line-height: 1.5; margin: 0; font-weight: 500;
}
@media (max-width: 700px) {
    .v3-schulung__card-list { grid-template-columns: 1fr; }
    .v3-schulung__inhalte-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .v3-schulung__inhalte-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   ÜBER UNS – ou-* Sections
   ══════════════════════════════════════════════════════════ */

/* ou-intro */
.ou-intro {
    background: var(--white);
    padding: clamp(3rem, 6vw, 6rem) 0;
    border-top: 1px solid rgba(27,39,84,0.07);
}
.ou-intro__inner {
    max-width: 700px;
    padding: 0 1.5rem;
}
.ou-intro--centered .ou-intro__inner {
    margin: 0 auto;
    text-align: center;
}
.ou-intro__h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -0.03em; margin: 0.5rem 0 1rem;
}
.ou-intro__text {
    font-size: 1rem; color: var(--text-muted);
    line-height: 1.7; margin: 0;
}

/* ou-milestone */
.ou-milestone {
    background: var(--off-white);
    padding: clamp(4rem, 8vw, 8rem) 0;
    border-top: 1px solid rgba(27,39,84,0.07);
}
.ou-milestone__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.ou-milestone__header {
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.ou-milestone__h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -0.03em; margin: 0.5rem 0 0;
}
.ou-milestone__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.ou-milestone__card {
    background: var(--white);
    border: 1px solid rgba(27,39,84,0.10);
    border-radius: var(--radius);
    padding: 2rem;
}
.ou-milestone__card--featured {
    background: var(--navy);
    border-color: var(--navy);
}
.ou-milestone__kicker {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--logo-blue); margin: 0 0 0.5rem;
    display: block;
}
.ou-milestone__card--featured .ou-milestone__kicker { color: rgba(140,170,255,0.8); }
.ou-milestone__h3 {
    font-size: 1.05rem; font-weight: 700;
    color: var(--navy); margin: 0 0 0.75rem;
}
.ou-milestone__card--featured .ou-milestone__h3 { color: #fff; }
.ou-milestone__divider {
    height: 1px; background: rgba(27,39,84,0.10);
    margin-bottom: 1rem;
}
.ou-milestone__card--featured .ou-milestone__divider { background: rgba(255,255,255,0.12); }
.ou-milestone__body {
    font-size: 0.9rem; color: var(--text-muted);
    line-height: 1.65;
}
.ou-milestone__body p { margin: 0 0 0.75rem; }
.ou-milestone__body p:last-child { margin-bottom: 0; }
.ou-milestone__card--featured .ou-milestone__body { color: rgba(255,255,255,0.65); }
.ou-milestone__accent {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--logo-blue); margin: 1rem 0 0.35rem;
    display: block;
}
.ou-milestone__card--featured .ou-milestone__accent { color: rgba(140,170,255,0.8); }
@media (max-width: 640px) {
    .ou-milestone__layout { grid-template-columns: 1fr; }
}

/* ou-expansion */
.ou-expansion {
    background: var(--white);
    padding: clamp(4rem, 8vw, 8rem) 0;
    border-top: 1px solid rgba(27,39,84,0.07);
}
.ou-expansion__header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.ou-expansion__h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -0.03em; margin: 0.5rem 0 0;
}
.ou-expansion__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.ou-expansion__card {
    background: var(--off-white);
    border: 1px solid rgba(27,39,84,0.08);
    border-radius: var(--radius);
    padding: 1.75rem;
}
.ou-expansion__year {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--logo-blue); margin: 0 0 0.5rem;
}
.ou-expansion__h4 {
    font-size: 1rem; font-weight: 700;
    color: var(--navy); margin: 0 0 0.75rem;
}
.ou-expansion__body {
    font-size: 0.88rem; color: var(--text-muted);
    line-height: 1.65; margin: 0;
}
@media (max-width: 760px) {
    .ou-expansion__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .ou-expansion__grid { grid-template-columns: 1fr; }
}

/* ou-timeline */
.ou-timeline {
    background: var(--off-white);
    padding: clamp(4rem, 8vw, 8rem) 0;
    border-top: 1px solid rgba(27,39,84,0.07);
}
.ou-timeline__header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.ou-timeline__h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -0.03em; margin: 0.5rem 0 0;
}
.ou-timeline__track {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.ou-timeline__item {
    display: grid;
    grid-template-columns: 1fr 32px 1fr;
    gap: 0 1.5rem;
    align-items: start;
    padding: 1.5rem 0;
}
.ou-timeline__left {
    grid-column: 1;
    text-align: right;
    padding-right: 0.5rem;
}
.ou-timeline__right {
    grid-column: 3;
    padding-left: 0.5rem;
}
.ou-timeline__dot-col {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4px;
}
.ou-timeline__dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--logo-blue);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--logo-blue);
    flex-shrink: 0;
}
.ou-timeline__empty { flex: 1; }
.ou-timeline__year {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--logo-blue); margin: 0 0 0.35rem;
}
.ou-timeline__body {
    font-size: 0.88rem; color: var(--text-muted);
    line-height: 1.65; margin: 0;
}
@media (max-width: 600px) {
    .ou-timeline__item { grid-template-columns: 16px 1fr; }
    .ou-timeline__left { display: none; }
    .ou-timeline__dot-col { grid-column: 1; }
    .ou-timeline__right { grid-column: 2; }
}

/* ou-closing */
.ou-closing {
    background: var(--navy);
    padding: clamp(4rem, 8vw, 8rem) 0;
}
.ou-closing__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}
.ou-closing__eyebrow {
    display: block;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(140,170,255,0.8); margin-bottom: 1.5rem;
}
.ou-closing__quote {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300; color: rgba(255,255,255,0.9);
    line-height: 1.6; margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
}
.ou-closing__quote strong { font-weight: 700; color: #fff; }
.ou-closing__attr {
    font-size: 0.75rem; color: rgba(255,255,255,0.4);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin: 0 0 2.5rem;
}
.ou-closing__body {
    font-size: 0.95rem; color: rgba(255,255,255,0.6);
    line-height: 1.7; margin: 0 0 2rem;
}
.ou-closing__cta {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.9rem; font-weight: 600;
    color: #fff; text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 8px; padding: 0.7rem 1.5rem;
    transition: all 0.18s var(--ease);
}
.ou-closing__cta:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.55); }

/* ou-certificates */
.ou-certificates {
    background: var(--white);
    padding: clamp(4rem, 8vw, 8rem) 0;
    border-top: 1px solid rgba(27,39,84,0.07);
}
.ou-certificates__header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.ou-certificates__eyebrow {
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--logo-blue); display: block; margin-bottom: 0.6rem;
}
.ou-certificates__h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -0.03em; margin: 0 0 0.5rem;
}
.ou-certificates__sub {
    font-size: 0.9rem; color: var(--text-muted); margin: 0;
}
.ou-certificates__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.ou-cert-item {
    border: 1px solid rgba(27,39,84,0.10);
    border-radius: var(--radius);
    padding: 1.25rem;
    cursor: pointer;
    transition: border-color 0.18s, box-shadow 0.18s;
    background: var(--off-white);
    text-align: center;
}
.ou-cert-item:hover {
    border-color: var(--logo-blue);
    box-shadow: 0 4px 16px rgba(27,39,84,0.10);
}
.ou-cert-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--logo-blue);
}
.ou-cert-title {
    font-size: 0.82rem; font-weight: 600;
    color: var(--navy); line-height: 1.4; margin: 0 0 0.25rem;
}
.ou-cert-sub {
    font-size: 0.75rem; color: var(--text-muted); margin: 0;
}
@media (max-width: 760px) {
    .ou-certificates__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ou-modal (PDF lightbox) – hidden by default */
.ou-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
}
.ou-modal.is-open { display: flex; }
.ou-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    cursor: pointer;
}
.ou-modal__box {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--radius);
    width: min(90vw, 860px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.ou-modal__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(27,39,84,0.10);
}
.ou-modal__title {
    font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0;
}
.ou-modal__sub {
    font-size: 0.8rem; color: var(--text-muted); margin: 0.2rem 0 0;
}
.ou-modal__close {
    background: none; border: none; cursor: pointer;
    font-size: 1.5rem; color: var(--text-muted);
    line-height: 1; padding: 0 0.25rem;
    transition: color 0.15s;
}
.ou-modal__close:hover { color: var(--navy); }
.ou-modal__viewer {
    flex: 1;
    min-height: 500px;
    border: none;
    width: 100%;
}
.ou-modal__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
    border-top: 1px solid rgba(27,39,84,0.10);
}
.ou-modal__btn {
    background: none; border: 1.5px solid rgba(27,39,84,0.2);
    border-radius: 6px; padding: 0.4rem 1rem;
    font-size: 0.85rem; color: var(--navy); cursor: pointer;
    transition: all 0.15s;
}
.ou-modal__btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.ou-modal__counter { font-size: 0.85rem; color: var(--text-muted); }

/* ── Global utility: section padding rhythm ─────────────── */
.section-pad    { padding: clamp(4.5rem, 8vw, 8rem) 1.5rem; }
.section-pad--sm{ padding: clamp(3rem, 5vw, 5rem) 1.5rem; }

/* ── Global utility: section eyebrow (plain text) ──────── */
/* Use on any <p> or <span> above a section h2 */
.section-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--logo-blue);
    margin-bottom: 0.65rem;
}
.section-eyebrow--muted { color: var(--text-muted); }
.section-eyebrow--accent { color: var(--accent); }
.section-eyebrow--light  { color: rgba(255,255,255,0.5); }


/* ── subpage-hero modifier: centered layout ─────────── */
.subpage-hero--centered > .container {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.subpage-hero--centered .subpage-hero__h1,
.subpage-hero--centered .subpage-hero__sub {
    max-width: 100%;
}


/* ===================================================
   ZEITREISE  –  Horizontale Timeline
   =================================================== */

/* ── Hero scroll hint ───────────────────────────────── */
.zt-hero__inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.zt-hero__h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--navy);
    margin: 0 0 1.1rem;
}
.zt-hero__h1 em {
    font-style: italic;
    color: var(--logo-blue);
}
.zt-hero__sub {
    font-size: clamp(0.95rem, 1.8vw, 1.08rem);
    color: var(--text-muted);
    line-height: 1.68;
    margin: 0 0 2.25rem;
}
.zt-hero__hint {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.7;
}
.zt-hero__hint-arrow {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--logo-blue);
}
.zt-hero__hint-arrow span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: currentColor;
}

/* ── Track wrapper ───────────────────────────────────── */
.zt-track-wrap {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
    padding: 3rem 0 2rem;
}
.zt-track {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    padding: 0 clamp(2rem, 6vw, 6rem);
}
.zt-track::-webkit-scrollbar { display: none; }
.zt-track:active { cursor: grabbing; }

/* ── Rail: fixed-height flex row, center line via ::before ── */
.zt-rail {
    display: flex;
    align-items: stretch;
    position: relative;
    min-width: max-content;
    height: 440px;
    gap: 0;
}
.zt-rail::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray-200);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

/* ── Event column: 3-row grid keeps dot on centerline ── */
.zt-event {
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    width: 200px;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* above: card top half, year bottom half */
.zt-event--above > .zt-card { align-self: end;   margin-bottom: 1.1rem; }
.zt-event--above > .zt-year { align-self: start; margin-top: 0.7rem; }

/* below: year top half, card bottom half */
.zt-event--below > .zt-year { align-self: end;   margin-bottom: 0.7rem; }
.zt-event--below > .zt-card { align-self: start; margin-top: 1.1rem; }

/* ── Card ────────────────────────────────────────────── */
.zt-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 0.85rem 0.95rem;
    width: 168px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
    box-sizing: border-box;
    transition: box-shadow 0.18s, transform 0.18s;
}
.zt-card:hover {
    box-shadow: 0 4px 16px rgba(27,39,84,0.12), 0 1px 4px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.zt-card__title {
    font-size: 0.77rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin: 0 0 0.28rem;
}
.zt-card__body {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ── Dot ─────────────────────────────────────────────── */
.zt-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--logo-blue);
    box-shadow: 0 0 0 3px rgba(59,85,141,0.15);
    justify-self: center;
    align-self: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.18s, box-shadow 0.18s;
}
.zt-event:hover .zt-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 5px rgba(59,85,141,0.18);
}

/* ── Year label ──────────────────────────────────────── */
.zt-year {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin: 0;
    text-align: center;
    justify-self: center;
}

/* ── Highlight — 2025 jubilee ────────────────────────── */
.zt-event--highlight .zt-card {
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 6px 24px rgba(27,39,84,0.22);
}
.zt-event--highlight .zt-card:hover {
    box-shadow: 0 10px 32px rgba(27,39,84,0.30);
    transform: translateY(-3px);
}
.zt-event--highlight .zt-card__title { color: #fff; }
.zt-event--highlight .zt-card__body  { color: rgba(255,255,255,0.65); }
.zt-event--highlight .zt-dot {
    width: 17px;
    height: 17px;
    background: var(--logo-blue);
    border-color: var(--logo-blue);
    box-shadow: 0 0 0 4px rgba(59,85,141,0.22);
}
.zt-event--highlight .zt-year {
    color: var(--navy);
    font-weight: 800;
    font-size: 0.8rem;
}

/* ── Progress scrollbar ──────────────────────────────── */
.zt-scrollbar-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem clamp(2rem, 6vw, 6rem) 2.5rem;
    background: var(--gray-100);
}
.zt-scrollbar-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    letter-spacing: 0.04em;
}
.zt-scrollbar-track {
    flex: 1;
    height: 3px;
    background: var(--gray-200);
    border-radius: 2px;
    position: relative;
}
.zt-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20%;
    background: var(--logo-blue);
    border-radius: 2px;
    transition: left 0.05s linear;
    min-width: 32px;
}

/* ── CTA ─────────────────────────────────────────────── */
.zt-cta {
    background: var(--navy);
    padding: clamp(4rem, 8vw, 7rem) 1.5rem;
    text-align: center;
}
.zt-cta__eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1rem;
}
.zt-cta__h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 1.1rem;
}
.zt-cta__sub {
    font-size: clamp(0.92rem, 1.7vw, 1.05rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.68;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}
.zt-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 600px) {
    .zt-rail  { height: 390px; }
    .zt-event { width: 170px; }
    .zt-card  { width: 148px; padding: 0.7rem 0.8rem; }
    .zt-track { padding: 0 1.5rem; }
    .zt-scrollbar-wrap { padding: 1rem 1.5rem 2rem; }
}

/* ── Dark mode ───────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
    .zt-track-wrap,
    .zt-scrollbar-wrap {
        background: #0f1623;
        border-color: rgba(255,255,255,0.06);
    }
    .zt-rail::before {
        background: rgba(255,255,255,0.08);
    }
    .zt-card {
        background: #1a2235;
        border-color: rgba(255,255,255,0.07);
        box-shadow: 0 1px 4px rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.2);
    }
    .zt-card:hover {
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        border-color: rgba(59,85,141,0.35);
    }
    .zt-card__title { color: rgba(255,255,255,0.9); }
    .zt-card__body  { color: rgba(255,255,255,0.45); }
    .zt-dot {
        background: #0f1623;
        border-color: var(--logo-blue);
        box-shadow: 0 0 0 3px rgba(59,85,141,0.2);
    }
    .zt-year { color: rgba(255,255,255,0.4); }
    .zt-scrollbar-track { background: rgba(255,255,255,0.08); }
    .zt-event--highlight .zt-card {
        background: rgba(59,85,141,0.15);
        border-color: rgba(59,85,141,0.4);
    }
    .zt-event--highlight .zt-card__title { color: #fff; }
    .zt-event--highlight .zt-card__body  { color: rgba(255,255,255,0.55); }
    .zt-event--highlight .zt-year { color: var(--logo-blue); }
    .zt-hero__h1  { color: rgba(255,255,255,0.95); }
    .zt-hero__sub { color: rgba(255,255,255,0.5); }
    .zt-hero__hint { color: rgba(255,255,255,0.3); }
    .zt-scrollbar-label { color: rgba(255,255,255,0.35); }
    .subpage-hero--centered .subpage-hero__h1 { color: rgba(255,255,255,0.95); }
}

/* ===================================================
   STELLENAUSSCHREIBUNGEN  –  Karriere
   =================================================== */

/* ── Count badge (used in hero-actions) ─────────────────── */
.sa-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.sa-count__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.6rem;
    height: 1.6rem;
    background: var(--navy);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0 0.4rem;
}

/* ── Culture strip ───────────────────────────────────── */
.sa-culture {
    padding: clamp(3.5rem, 6vw, 5rem) 1.5rem;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
}
.sa-culture__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.sa-culture__item {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}
.sa-culture__num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.1rem;
    letter-spacing: -0.04em;
}
.sa-culture__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.35rem;
}
.sa-culture__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 720px) {
    .sa-culture__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── Job listings ────────────────────────────────────── */
.sa-jobs {
    padding: clamp(3.5rem, 6vw, 5.5rem) 1.5rem;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}
.sa-section__h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin: 0 0 2rem;
}
.sa-job-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Individual job card (used by JS) */
.sa-job {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.4rem 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: box-shadow 0.18s, border-color 0.18s;
}
.sa-job:hover {
    box-shadow: 0 4px 16px rgba(27,39,84,0.10);
    border-color: var(--logo-blue);
}
.sa-job__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.3rem;
}
.sa-job__meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.sa-job__tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--gray-100);
    border-radius: 4px;
    padding: 0.2rem 0.55rem;
}
.sa-job__arrow {
    color: var(--logo-blue);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Empty state */
.sa-empty {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: clamp(2.5rem, 5vw, 4rem) 2rem;
    text-align: center;
}
.sa-empty__num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-200);
    margin: 0 0 0.75rem;
    line-height: 1;
}
.sa-empty__h {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.5rem;
}
.sa-empty__sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 1.75rem;
}

/* ── Benefits ────────────────────────────────────────── */
.sa-benefits {
    padding: clamp(3.5rem, 6vw, 5.5rem) 1.5rem;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
}
.sa-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 0.5rem;
}
.sa-benefit {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 1.5rem 1.4rem;
}
.sa-benefit__num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.04em;
}
.sa-benefit__title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.4rem;
}
.sa-benefit__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) {
    .sa-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .sa-benefits__grid { grid-template-columns: 1fr; }
}

/* ── Spontan CTA ─────────────────────────────────────── */
.sa-spontan {
    background: var(--navy);
    padding: clamp(4rem, 8vw, 7rem) 1.5rem;
    text-align: center;
}
.sa-spontan__h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: #fff;
    margin: 0.75rem 0 1.1rem;
}
.sa-spontan__sub {
    font-size: clamp(0.92rem, 1.7vw, 1.05rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.68;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}
.sa-spontan__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Application modal (opened by JS) ───────────────── */
.sa-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.55);
    padding: 1rem;
}
.sa-overlay.is-visible { display: flex; }
.sa-modal {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: var(--radius);
    width: min(92vw, 560px);
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem 2rem 1.5rem;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.sa-modal__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.4rem;
}
.sa-modal__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}
.sa-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--text-muted);
    line-height: 1;
    padding: 0;
    transition: color 0.15s;
}
.sa-modal__close:hover { color: var(--navy); }

/* ── Modal sub-title ────────────────────────────────── */
.sa-modal__sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* ── Modal body / foot ───────────────────────────────── */
.sa-modal__body {
    padding-bottom: 1rem;
}
.sa-modal__foot {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.25rem;
    margin-top: 0.5rem;
}
.sa-modal__disclaimer {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0.75rem 0 0;
    text-align: center;
}
.sa-modal__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.85rem 1.5rem;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s;
}
.sa-modal__submit:hover { background: var(--logo-blue); }
.sa-modal__submit.is-loading .sa-submit-label { opacity: 0.6; }

/* ── Form layout ─────────────────────────────────────── */
.sa-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem 1rem;
    margin-bottom: 0.9rem;
}
.sa-form-full {
    margin-bottom: 0.9rem;
}
.sa-form-error {
    background: #fee2e2;
    color: #b91c1c;
    border-radius: 6px;
    padding: 0.65rem 0.9rem;
    font-size: 0.82rem;
    margin-bottom: 1rem;
    display: none;
}
.sa-form-error.is-visible { display: block; }
@media (max-width: 480px) {
    .sa-form-grid { grid-template-columns: 1fr; }
}

/* ── Field base ──────────────────────────────────────── */
.sa-field-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.3rem;
}
.sa-field-label span {
    color: var(--logo-blue);
    margin-left: 1px;
}
.sa-field-input,
.sa-field-select,
.sa-field-textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    font-size: 0.88rem;
    color: var(--text);
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.sa-field-input:focus,
.sa-field-select:focus,
.sa-field-textarea:focus {
    outline: none;
    border-color: var(--logo-blue);
    box-shadow: 0 0 0 3px rgba(59,85,141,0.12);
    background: #fff;
}
.sa-field-input.has-error,
.sa-field-select.has-error,
.sa-field-textarea.has-error {
    border-color: #ef4444;
}
.sa-field-textarea {
    min-height: 90px;
    resize: vertical;
}
.sa-field-error {
    font-size: 0.72rem;
    color: #ef4444;
    margin-top: 0.25rem;
    display: none;
}
.sa-field-error.is-visible { display: block; }

/* ── Upload zones ────────────────────────────────────── */
.sa-uploads {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.sa-upload-zone {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gray-100);
    border: 1.5px dashed var(--gray-200);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}
.sa-upload-zone:hover,
.sa-upload-zone.drag-over {
    border-color: var(--logo-blue);
    background: rgba(59,85,141,0.04);
}
.sa-upload-zone.has-file {
    border-style: solid;
    border-color: var(--logo-blue);
    background: rgba(59,85,141,0.05);
}
.sa-upload-zone.has-error { border-color: #ef4444; }
.sa-upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.sa-upload__num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -0.03em;
}
.sa-upload__title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.15rem;
}
.sa-upload__title .req { color: var(--logo-blue); margin-left: 1px; }
.sa-upload__hint {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.sa-upload__file {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--navy);
    font-weight: 600;
    margin-left: auto;
    flex-shrink: 0;
    max-width: 40%;
    overflow: hidden;
}
.sa-upload-zone.has-file .sa-upload__file { display: flex; }
.sa-upload-zone.has-file .sa-upload__placeholder { opacity: 0.5; }
.sa-upload__file span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sa-upload__remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transition: color 0.15s;
}
.sa-upload__remove:hover { color: #ef4444; }
.sa-field-error ~ .sa-field-error { margin-top: 0; }

/* ── Spinner ─────────────────────────────────────────── */
.sa-spinner {
    display: none;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: sa-spin 0.7s linear infinite;
    flex-shrink: 0;
}
.sa-modal__submit.is-loading .sa-spinner { display: block; }
@keyframes sa-spin { to { transform: rotate(360deg); } }

/* ── Success screen ──────────────────────────────────── */
.sa-modal__success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem 1.5rem;
}
.sa-modal__success.is-visible { display: flex; }
.sa-success__ring {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(59,85,141,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--logo-blue);
}
.sa-success__ring svg { width: 1.6rem; height: 1.6rem; }
.sa-success__h {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.sa-success__p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 1.75rem;
    max-width: 36ch;
}

/* ── Dark mode ───────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
    .sa-hero-wrap {
        background: #0f1623;
        border-color: rgba(255,255,255,0.07);
    }
    .sa-hero__h1  { color: rgba(255,255,255,0.95); }
    .sa-hero__sub { color: rgba(255,255,255,0.5); }
    .sa-culture {
        background: #131b2a;
        border-color: rgba(255,255,255,0.06);
    }
    .sa-culture__title { color: rgba(255,255,255,0.9); }
    .sa-culture__desc  { color: rgba(255,255,255,0.45); }
    .sa-jobs {
        background: #0f1623;
        border-color: rgba(255,255,255,0.06);
    }
    .sa-job {
        background: #1a2235;
        border-color: rgba(255,255,255,0.07);
    }
    .sa-job:hover { border-color: var(--logo-blue); }
    .sa-job__title { color: rgba(255,255,255,0.9); }
    .sa-job__tag   { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.45); }
    .sa-empty {
        background: #1a2235;
        border-color: rgba(255,255,255,0.07);
    }
    .sa-empty__h   { color: rgba(255,255,255,0.9); }
    .sa-empty__sub { color: rgba(255,255,255,0.45); }
    .sa-benefits {
        background: #131b2a;
        border-color: rgba(255,255,255,0.06);
    }
    .sa-benefit { background: rgba(255,255,255,0.04); }
    .sa-benefit__title { color: rgba(255,255,255,0.9); }
    .sa-benefit__desc  { color: rgba(255,255,255,0.45); }
    .sa-section__h2 { color: rgba(255,255,255,0.95); }
    .sa-modal { background: #1a2235; }
    .sa-modal__title { color: rgba(255,255,255,0.95); }
    .sa-modal__sub { color: rgba(255,255,255,0.4); }
    .sa-modal__foot { border-color: rgba(255,255,255,0.08); }
    .sa-field-label { color: rgba(255,255,255,0.85); }
    .sa-field-input,
    .sa-field-select,
    .sa-field-textarea {
        background: rgba(255,255,255,0.05);
        border-color: rgba(255,255,255,0.1);
        color: rgba(255,255,255,0.9);
    }
    .sa-field-input:focus,
    .sa-field-select:focus,
    .sa-field-textarea:focus {
        background: rgba(255,255,255,0.08);
        border-color: var(--logo-blue);
    }
    .sa-upload-zone {
        background: rgba(255,255,255,0.04);
        border-color: rgba(255,255,255,0.1);
    }
    .sa-upload__title { color: rgba(255,255,255,0.85); }
    .sa-upload-zone.has-file { background: rgba(59,85,141,0.15); }
    .sa-upload__file { color: rgba(255,255,255,0.9); }
    .sa-success__h { color: rgba(255,255,255,0.95); }
}

/* ===================================================
   BOTENTOUR
   =================================================== */

/* ── Hero scroll link ─────────────────────────────────── */
.bt-hero__scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}
.bt-hero__scroll:hover { color: var(--navy); }

/* ── Section shared ───────────────────────────────────── */
.bt-section-h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin: 0.5rem 0 0;
}

/* ── Benefits ─────────────────────────────────────────── */
.bt-benefits {
    padding: clamp(4rem, 7vw, 6rem) 1.5rem;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
}
.bt-benefits__head {
    margin-bottom: 2.5rem;
}
.bt-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.bt-benefit {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem 1.4rem;
    transition: box-shadow 0.18s, border-color 0.18s;
}
.bt-benefit:hover {
    box-shadow: 0 4px 16px rgba(27,39,84,0.08);
    border-color: var(--logo-blue);
}
.bt-benefit__num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.04em;
}
.bt-benefit__title {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.4rem;
}
.bt-benefit__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) {
    .bt-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .bt-benefits__grid { grid-template-columns: 1fr; }
}

/* ── Split: photo + steps ─────────────────────────────── */
.bt-split {
    padding: clamp(4rem, 7vw, 6rem) 1.5rem;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
}
.bt-split__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}
.bt-split__img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.bt-split__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bt-split__lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin: 0.5rem 0 0.75rem;
}
.bt-split__lead em {
    font-style: italic;
    color: var(--logo-blue);
}
.bt-split__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 2rem;
}
.bt-split__facts {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.bt-split__fact {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.bt-split__fact-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    background: var(--logo-blue);
    border-radius: 999px;
    min-width: 1.6rem;
    height: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.bt-split__fact-text {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
.bt-split__fact-text strong { color: var(--navy); font-weight: 600; }
@media (max-width: 760px) {
    .bt-split__inner { grid-template-columns: 1fr; }
    .bt-split__img { aspect-ratio: 16/9; }
}

/* ── PLZ checker ──────────────────────────────────────── */
.bt-plz {
    padding: clamp(3.5rem, 6vw, 5.5rem) 1.5rem;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}
.bt-plz__card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: calc(var(--radius) * 1.5);
    padding: clamp(2rem, 4vw, 3.5rem);
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 24px rgba(27,39,84,0.07);
}
.bt-plz__num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--logo-blue);
    background: rgba(59,85,141,0.08);
    border-radius: 999px;
    padding: 0.25rem 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.bt-plz__h {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin: 0 0 0.6rem;
}
.bt-plz__sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 1.75rem;
}
.bt-plz__form {
    display: flex;
    gap: 0.6rem;
    max-width: 340px;
    margin: 0 auto 1rem;
}
.bt-plz__input {
    flex: 1;
    background: var(--gray-100);
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.7rem 0.9rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    text-align: center;
    letter-spacing: 0.1em;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.bt-plz__input:focus {
    outline: none;
    border-color: var(--logo-blue);
    box-shadow: 0 0 0 3px rgba(59,85,141,0.12);
    background: #fff;
}
.bt-plz__btn {
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.18s;
}
.bt-plz__btn:hover { background: var(--logo-blue); }
.bt-plz__result {
    font-size: 0.88rem;
    color: var(--text-muted);
    min-height: 1.4em;
}
.bt-plz__result.is-found {
    color: #166534;
    font-weight: 600;
}
.bt-plz__result.is-not-found {
    color: #991b1b;
}

/* ── CTA ──────────────────────────────────────────────── */
.bt-cta {
    background: var(--navy);
    padding: clamp(4rem, 8vw, 7rem) 1.5rem;
    text-align: center;
}
.bt-cta__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.75rem;
}
.bt-cta__h {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 1.1rem;
}
.bt-cta__sub {
    font-size: clamp(0.92rem, 1.7vw, 1.05rem);
    color: rgba(255,255,255,0.6);
    line-height: 1.68;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}
.bt-cta__actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.bt-cta__phone {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity 0.15s;
}
.bt-cta__phone:hover { opacity: 0.8; }
.bt-cta__contact {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.15s;
}
.bt-cta__contact:hover { color: #fff; }

/* ── Dark mode ────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
    .bt-benefits { background: #0f1623; border-color: rgba(255,255,255,0.06); }
    .bt-benefit {
        background: #1a2235;
        border-color: rgba(255,255,255,0.07);
    }
    .bt-benefit:hover { border-color: var(--logo-blue); }
    .bt-benefit__title { color: rgba(255,255,255,0.9); }
    .bt-benefit__desc  { color: rgba(255,255,255,0.45); }
    .bt-section-h2 { color: rgba(255,255,255,0.95); }
    .bt-split { background: #131b2a; border-color: rgba(255,255,255,0.06); }
    .bt-split__lead { color: rgba(255,255,255,0.9); }
    .bt-split__text { color: rgba(255,255,255,0.45); }
    .bt-split__fact-text { color: rgba(255,255,255,0.45); }
    .bt-split__fact-text strong { color: rgba(255,255,255,0.85); }
    .bt-plz { background: #0f1623; border-color: rgba(255,255,255,0.06); }
    .bt-plz__card {
        background: #1a2235;
        border-color: rgba(255,255,255,0.07);
        box-shadow: none;
    }
    .bt-plz__h { color: rgba(255,255,255,0.95); }
    .bt-plz__sub { color: rgba(255,255,255,0.45); }
    .bt-plz__input {
        background: rgba(255,255,255,0.05);
        border-color: rgba(255,255,255,0.1);
        color: rgba(255,255,255,0.9);
    }
    .bt-plz__input:focus {
        background: rgba(255,255,255,0.08);
        border-color: var(--logo-blue);
    }
}

/* ===================================================
   DIMENSIONELLE MESSTECHNIK
   =================================================== */

/* ── Facts strip (navy bar below hero) ───────────────── */
.dim-facts {
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dim-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.dim-fact {
    padding: 1.6rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.dim-fact:last-child { border-right: none; }
.dim-fact__val {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.dim-fact__label {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    letter-spacing: 0.02em;
}
@media (max-width: 600px) {
    .dim-facts__grid { grid-template-columns: repeat(2,1fr); }
    .dim-fact:nth-child(2) { border-right: none; }
}

/* ── Cards section ────────────────────────────────────── */
.dim-cards {
    padding: clamp(4rem, 7vw, 6rem) 1.5rem;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
}
.dim-section__h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin: 0.5rem 0 1rem;
}
.dim-section__sub {
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 640px;
    margin: 0 0 2.5rem;
}
.dim-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}
@media (max-width: 1100px) {
    .dim-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .dim-grid { grid-template-columns: 1fr; }
    .dim-card:nth-child(1),
    .dim-card:nth-child(2),
    .dim-card:nth-child(7),
    .dim-card:nth-child(8) { grid-column: span 1; }
}

/* ── Card ─────────────────────────────────────────────── */
.dim-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.dim-card:hover {
    box-shadow: 0 8px 28px rgba(27,39,84,0.12);
    border-color: var(--logo-blue);
    transform: translateY(-3px);
}
.dim-card__img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.dim-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s;
}
.dim-card:hover .dim-card__img-wrap img { transform: scale(1.05); }
.dim-card__num {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    background: var(--navy);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    border-radius: 5px;
    padding: 0.18rem 0.45rem;
}
.dim-card__body {
    padding: 1.3rem 1.4rem 1.5rem;
}
.dim-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.5rem;
}
.dim-card__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Bento: 1. + 2. und 7. + 8. Karte doppelt breit ────── */
.dim-card:nth-child(1),
.dim-card:nth-child(2),
.dim-card:nth-child(7),
.dim-card:nth-child(8) {
    grid-column: span 2;
}
.dim-card:nth-child(1) .dim-card__img-wrap,
.dim-card:nth-child(2) .dim-card__img-wrap,
.dim-card:nth-child(7) .dim-card__img-wrap,
.dim-card:nth-child(8) .dim-card__img-wrap {
    aspect-ratio: 16 / 9;
}

/* ── CTA ──────────────────────────────────────────────── */
.dim-cta {
    background: var(--navy);
    padding: clamp(4rem, 8vw, 7rem) 1.5rem;
    text-align: center;
}
.dim-cta__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.75rem;
}
.dim-cta__h {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 1.1rem;
}
.dim-cta__sub {
    font-size: clamp(0.92rem, 1.7vw, 1.05rem);
    color: rgba(255,255,255,0.6);
    line-height: 1.68;
    max-width: 520px;
    margin: 0 auto 2.5rem;
}
.dim-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Dark mode ────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
    .dim-facts { background: #0c1220; }
    .dim-cards { background: #0f1623; border-color: rgba(255,255,255,0.06); }
    .dim-section__h2 { color: rgba(255,255,255,0.95); }
    .dim-card {
        background: #1a2235;
        border-color: rgba(255,255,255,0.07);
    }
    .dim-card:hover { border-color: var(--logo-blue); }
    .dim-card__title { color: rgba(255,255,255,0.9); }
    .dim-card__desc  { color: rgba(255,255,255,0.45); }
}

/* ===================================================
   DIMENSIONELL — LIGHT HERO + ANIMATION  v3
   =================================================== */

/* ── Light hero modifier ─────────────────────────── */
.subpage-hero--dim {
    background: #eef2f8;
}
.subpage-hero--dim .hero-grid line {
    stroke: rgba(27,39,84,0.07);
}
.subpage-hero--dim .hero-glow {
    background: radial-gradient(ellipse at 70% 50%, rgba(59,85,141,0.10) 0%, transparent 65%);
}
.subpage-hero--dim .hero-eyebrow        { color: var(--logo-blue); }
.subpage-hero--dim .subpage-hero__h1    { color: var(--navy); }
.subpage-hero--dim .subpage-hero__h1 em { color: var(--logo-blue); }
.subpage-hero--dim .subpage-hero__sub   { color: var(--text-muted); }
.subpage-hero--dim .breadcrumb a        { color: var(--text-muted); }
.subpage-hero--dim .breadcrumb span[aria-current] { color: var(--navy); }
.subpage-hero--dim .btn-ghost {
    border-color: rgba(27,39,84,0.22);
    color: var(--navy);
}
.subpage-hero--dim .btn-ghost:hover     { background: rgba(27,39,84,0.06); }
.subpage-hero--dim .rp-stat__val        { color: var(--navy); }
.subpage-hero--dim .rp-stat__label      { color: var(--text-muted); }
.subpage-hero--dim .rp-stats            { border-top-color: var(--gray-200); }

/* ── Background animation SVG (absolute, right half) ── */
.dim-bg-anim {
    position: absolute;
    top: 0;
    right: 0;
    width: 56%;
    height: 100%;
    display: block;       /* prevent inline baseline gap (canvas) */
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.subpage-hero--dim .container    { position: relative; z-index: 1; }
.subpage-hero--dim .subpage-hero__left { max-width: 530px; }
@media (max-width: 960px) { .dim-bg-anim { display: none; } }

/* ── Part outline (draws itself, pathLength normalised) ── */
.dim-p-main {
    fill: rgba(27,39,84,0.04);
    stroke: #1b2754;
    stroke-width: 1.5;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: dim-draw 2.2s cubic-bezier(0.4,0,0.2,1) 0.4s forwards;
}
/* Hidden bore lines (dashed) */
.dim-p-bore {
    fill: none;
    stroke: #1b2754;
    stroke-width: 0.9;
    stroke-dasharray: 8 4;
    opacity: 0;
    animation: dim-fade 0.5s ease 2.5s forwards;
}
/* Center axis (dash-dot) */
.dim-p-axis {
    fill: none;
    stroke: #3b558d;
    stroke-width: 0.85;
    stroke-dasharray: 14 5 3 5;
    opacity: 0;
    animation: dim-fade 0.5s ease 2.8s forwards;
}
@keyframes dim-draw { to { stroke-dashoffset: 0; } }
@keyframes dim-fade  { to { opacity: 1; } }

/* ── Probe scan path ──────────────────────────────── */
.dim-scan-path {
    fill: none;
    stroke: #4f6ef7;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    opacity: 0;
    animation:
        dim-fade 0.01s 3.2s forwards,
        dim-draw 1.8s linear 3.2s forwards;
}

/* ── Reticles ─────────────────────────────────────── */
.dim-ret {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}
.dim-rets .dim-ret:nth-child(1) { animation: dim-ret-in 0.5s cubic-bezier(0.34,1.4,0.64,1) 3.25s forwards; }
.dim-rets .dim-ret:nth-child(2) { animation: dim-ret-in 0.5s cubic-bezier(0.34,1.4,0.64,1) 3.65s forwards; }
.dim-rets .dim-ret:nth-child(3) { animation: dim-ret-in 0.5s cubic-bezier(0.34,1.4,0.64,1) 4.05s forwards; }
.dim-rets .dim-ret:nth-child(4) { animation: dim-ret-in 0.5s cubic-bezier(0.34,1.4,0.64,1) 4.45s forwards; }
.dim-rets .dim-ret:nth-child(5) { animation: dim-ret-in 0.5s cubic-bezier(0.34,1.4,0.64,1) 4.85s forwards; }
@keyframes dim-ret-in {
    0%   { opacity: 0; transform: scale(0.15) rotate(45deg); }
    65%  { opacity: 1; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* ── Dimension annotations ────────────────────────── */
.dim-ann { opacity: 0; }
.dim-anns .dim-ann:nth-child(1) { animation: dim-ann-in 0.7s cubic-bezier(0.23,1,0.32,1) 5.5s forwards; }
.dim-anns .dim-ann:nth-child(2) { animation: dim-ann-in 0.7s cubic-bezier(0.23,1,0.32,1) 6.1s forwards; }
.dim-anns .dim-ann:nth-child(3) { animation: dim-ann-in 0.7s cubic-bezier(0.23,1,0.32,1) 6.7s forwards; }
@keyframes dim-ann-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* ===================================================
   MECHANIK — LIGHT HERO + PHOTO OVERLAY
   =================================================== */
.subpage-hero--mech {
    background: #eef2f8;
}
.subpage-hero--mech .hero-grid line {
    stroke: rgba(27,39,84,0.07);
}
.subpage-hero--mech .hero-glow {
    background: radial-gradient(ellipse at 70% 50%, rgba(59,85,141,0.10) 0%, transparent 65%);
}
.subpage-hero--mech .hero-eyebrow        { color: var(--logo-blue); }
.subpage-hero--mech .subpage-hero__h1    { color: var(--navy); }
.subpage-hero--mech .subpage-hero__h1 em { color: var(--logo-blue); }
.subpage-hero--mech .subpage-hero__sub   { color: var(--text-muted); }
.subpage-hero--mech .breadcrumb a        { color: var(--text-muted); }
.subpage-hero--mech .breadcrumb span[aria-current] { color: var(--navy); }
.subpage-hero--mech .btn-ghost {
    border-color: rgba(27,39,84,0.22);
    color: var(--navy);
}
.subpage-hero--mech .btn-ghost:hover     { background: rgba(27,39,84,0.06); }
.subpage-hero--mech .rp-stat__val        { color: var(--navy); }
.subpage-hero--mech .rp-stat__label      { color: var(--text-muted); }
.subpage-hero--mech .rp-stats            { border-top-color: var(--gray-200); }
.subpage-hero--mech > .container,
.subpage-hero--mech .container           { position: relative; z-index: 1; }
.subpage-hero--mech .subpage-hero__left  { max-width: 530px; }

/* Hero photo: right half, fades in from left edge */
.mech-hero-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 54%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.mech-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,1) 55%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,1) 55%);
}
@media (max-width: 960px) { .mech-hero-img { display: none; } }

/* ── 2-column text-only grid (z.B. Feuchte, Akustik) ─── */
.dim-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}
.dim-grid--2col .dim-card:nth-child(1),
.dim-grid--2col .dim-card:nth-child(2) {
    grid-column: span 1;
}
.dim-grid--2col .dim-card__body {
    padding: 1.75rem 1.6rem 2rem;
}
.dim-grid--2col .dim-card__title {
    font-size: 1.08rem;
    margin-bottom: 0.6rem;
}
.dim-grid--2col .dim-card__desc {
    font-size: 0.92rem;
    line-height: 1.7;
}
@media (max-width: 700px) {
    .dim-grid--2col { grid-template-columns: 1fr; }
}
.dim-section__closing {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 720px;
    margin: 2rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

/* 3-column equal grid (e.g. Akustik) */
.dim-grid--3col {
    grid-template-columns: repeat(3, 1fr);
}
.dim-grid--3col .dim-card {
    grid-column: span 1;
}
.dim-grid--3col .dim-card__body {
    padding: 1.75rem 1.6rem 2rem;
}
.dim-grid--3col .dim-card__title {
    font-size: 1.08rem;
    margin-bottom: 0.6rem;
}
.dim-grid--3col .dim-card__desc {
    font-size: 0.92rem;
    line-height: 1.7;
}
@media (max-width: 800px) {
    .dim-grid--3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .dim-grid--3col { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   ANSPRECHPARTNER — Team Page
   ═══════════════════════════════════════════════════════════ */

.team-section {
    background: var(--white);
    padding: clamp(4.5rem, 8vw, 8rem) 0;
    border-top: 1px solid var(--gray-200);
}

.team-groups {
    display: flex;
    flex-direction: column;
    gap: clamp(3.5rem, 6vw, 5rem);
    margin-top: clamp(3rem, 5vw, 4.5rem);
}

.team-group__label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--logo-blue);
    margin-bottom: 1.5rem;
}
.team-group__label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.ap-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.75rem;
    transition: transform 0.22s var(--ease-out),
                border-color 0.22s var(--ease-out),
                box-shadow 0.22s var(--ease-out);
}
.ap-card:hover {
    transform: translateY(-3px);
    border-color: rgba(59,85,141,0.28);
    box-shadow: 0 8px 32px rgba(27,39,84,0.09);
}

.ap-card__top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.ap-card__avatar {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gray-100);
    border: 1px solid rgba(27,39,84,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.02em;
    line-height: 1;
}

.ap-card__info { flex: 1; min-width: 0; }

.ap-card__name {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0 0 0.2rem;
}

.ap-card__role {
    font-size: 0.77rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.ap-card__divider {
    height: 1px;
    background: var(--gray-100);
    margin-bottom: 1rem;
}

.ap-card__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ap-contact {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.79rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s var(--ease);
    line-height: 1.4;
    word-break: break-all;
}
.ap-contact:hover { color: var(--navy); }
.ap-contact svg {
    flex-shrink: 0;
    color: var(--logo-blue);
    opacity: 0.5;
}
.ap-contact:hover svg { opacity: 1; }

/* CTA box */
.ap-cta-box {
    margin-top: clamp(3.5rem, 6vw, 5.5rem);
    padding: clamp(2.5rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--navy) 0%, var(--logo-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.ap-cta-box__text h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 0.45rem;
}
.ap-cta-box__text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 680px) {
    .team-grid { grid-template-columns: 1fr; }
    .ap-cta-box { flex-direction: column; align-items: flex-start; }
}
@media (min-width: 681px) and (max-width: 1000px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-color-scheme: dark) {
    .team-section { background: #111827; border-top-color: rgba(255,255,255,0.06); }
    .ap-card { background: #161c2d; border-color: rgba(255,255,255,0.08); }
    .ap-card:hover { border-color: rgba(123,156,244,0.25); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
    .ap-card__avatar { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.07); color: rgba(255,255,255,0.85); }
    .ap-card__name { color: rgba(255,255,255,0.92); }
    .ap-card__role { color: rgba(255,255,255,0.42); }
    .ap-card__divider { background: rgba(255,255,255,0.07); }
    .ap-contact { color: rgba(255,255,255,0.42); }
    .ap-contact:hover { color: rgba(255,255,255,0.88); }
    .ap-contact svg { color: #7b9cf4; }
    .team-group__label { color: #7b9cf4; }
    .team-group__label::after { background: rgba(255,255,255,0.08); }
}