/* ========================================
   SSF (Sales Service Factory) – Website Styles
   ======================================== */

@font-face {
    font-family: 'Crimson Pro';
    src: url('misc/crimson-pro-v28-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('misc/outfit-v15-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    /* Colors – SSF Markenpalette */
    --primary: #41addc;
    --primary-dark: #308eb2;
    --primary-light: #67c5ea;
    --neutral: #515151;
    /* Dunkle Flächen / Kontrast (nicht Marken-Grau #515151) */
    --secondary: #1A1A2E;
    --secondary-light: #16213E;
    --accent: #FFD93D;
    --accent-alt: #6FEDD6;
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F9FC;
    --gray-100: #F1F3F8;
    --gray-200: #E2E6EE;
    --gray-300: #C9D0DC;
    --gray-400: #9BA3B5;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-accent: 'Crimson Pro', serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    --radius-pill: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(65, 173, 220, 0.35);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--neutral);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--neutral);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    color: var(--neutral);
    opacity: 0.92;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn svg {
    transition: transform var(--transition-base);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-800);
    border-color: var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--gray-800);
    background: var(--gray-100);
}

.btn-light {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: var(--space-sm) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.logo {
    flex-shrink: 0; /* nicht durch Nav-Flex quetschen — sonst schneidet overflow zusätzlich ab */
    overflow: hidden; /* vertikal: Cropping; horizontal: Padding gibt Raum für Hover-Scale */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 14px; /* ~5 % Breite bei scale(1.05) abfangen (auch bei breitem ssf.png) */
    box-sizing: content-box;
}

.logo-img {
    height: 80px; /* Größer laden, dann per clip abschneiden */
    width: auto;
    margin: -20px 0; /* Negativer Margin schneidet oben/unten ab */
    transform-origin: center center;
    transition: all var(--transition-base);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Text Logo Fallback */
.logo-cho {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.logo-time {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
    margin-left: auto;
    margin-right: var(--space-xl);
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-arrow {
    transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    transform: translateX(-50%) translateY(8px);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-dropdown-menu li a,
.nav-dropdown-menu li a.active {
    display: block;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu li a::after {
    display: none;
}

.nav-dropdown-menu li a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Kontakt-CTA: gleiche Höhe wie Suche / Sprache (36px) */
.nav-actions .btn.btn-primary {
    height: 36px;
    min-height: 36px;
    padding: 0 var(--space-md);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    box-sizing: border-box;
}

.nav-actions .btn.btn-primary:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

/* Sprachumschalter + Suche: einheitliche helle Chips (Hero & gescrollte Leiste) */
.nav-lang {
    position: relative;
}

.nav-lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 10px 0 8px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-700);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(20px);
    transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.nav-lang-toggle:hover,
.nav-lang.is-open .nav-lang-toggle {
    color: var(--primary);
    background: var(--gray-100);
    border-color: var(--gray-200);
}

.nav-lang-icon {
    flex-shrink: 0;
    opacity: 0.85;
}

.nav-lang-current {
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav-lang-arrow {
    transition: transform var(--transition-fast);
    opacity: 0.7;
}

.nav-lang.is-open .nav-lang-arrow {
    transform: rotate(180deg);
}

.nav-lang-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 180px;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 100;
}

.nav-lang-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 14px;
    width: 14px;
    height: 14px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-left: 1px solid var(--gray-200);
    transform: rotate(45deg);
}

.nav-lang.is-open .nav-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px 8px 12px;
    border-radius: var(--radius-md);
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-lang-item::after {
    display: none;
}

.nav-lang-item:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.nav-lang-item-code {
    flex-shrink: 0;
    width: 28px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--gray-500);
}

.nav-lang-item-name {
    flex: 1;
}

.nav-lang-item-check {
    flex-shrink: 0;
    color: var(--primary);
}

.nav-lang-item.is-active {
    color: var(--primary-dark);
    background: rgba(65, 173, 220, 0.08);
}

.nav-lang-item.is-active .nav-lang-item-code {
    color: var(--primary-dark);
}

.nav-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-700);
    cursor: pointer;
    backdrop-filter: blur(20px);
    transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.nav-search-btn:hover {
    color: var(--primary);
    background: var(--gray-100);
    border-color: var(--gray-200);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: min(22vh, 180px);
    background: linear-gradient(170deg, rgba(26, 26, 46, 0.97) 0%, rgba(22, 33, 62, 0.97) 100%);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.search-overlay__close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.search-overlay__close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.search-overlay__inner {
    width: 90%;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    transform: translateY(-20px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.search-overlay.is-open .search-overlay__inner {
    transform: translateY(0);
}

.search-overlay__label {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: -0.01em;
}

.search-overlay__form {
    width: 100%;
    position: relative;
}

.search-overlay__form svg.search-overlay__icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.search-overlay__input {
    width: 100%;
    padding: 1.1rem 1.25rem 1.1rem 3.5rem;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 500;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.search-overlay__input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

.search-overlay__input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(65, 173, 220, 0.15);
}

.search-overlay__hints {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.search-overlay__hint {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.search-overlay__hint kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.6em;
    padding: 0.15em 0.5em;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    line-height: 1.4;
}

@media (max-width: 640px) {
    .search-overlay {
        padding-top: min(16vh, 120px);
    }

    .search-overlay__close {
        top: var(--space-md);
        right: var(--space-md);
    }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: var(--transition-base);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: var(--space-4xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(65, 173, 220, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(26, 26, 46, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, var(--gray-200) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

/* Tech-Hero: Grid + Network + scan line */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(48, 142, 178, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(48, 142, 178, 0.07) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: -1px -1px;
    mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, #000 40%, transparent 100%);
    pointer-events: none;
    opacity: 0.9;
}

.hero-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.85;
}

/* Startseite Tech-Hero: sehr dezentes Loop-Video unter Gradient/Raster/Network */
.hero--tech .hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
    opacity: 0.50;
    filter: saturate(1);
}

/* Gradient leicht transparent, damit das Video nur andeutungsweise sichtbar ist */
.hero--tech .hero-gradient {
    z-index: 1;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(65, 173, 220, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(26, 26, 46, 0.07) 0%, transparent 50%),
        linear-gradient(180deg, rgba(248, 250, 252, 0.88) 0%, rgba(255, 255, 255, 0.82) 100%);
}

.hero--tech .hero-pattern {
    z-index: 2;
}

.hero--tech .hero-grid {
    z-index: 3;
}

.hero--tech .hero-network {
    z-index: 4;
}

@media (prefers-reduced-motion: reduce) {
    .hero--tech .hero-bg-video {
        display: none;
    }

    .hero--tech .hero-gradient {
        background:
            radial-gradient(ellipse 80% 50% at 20% 40%, rgba(65, 173, 220, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse 60% 40% at 80% 60%, rgba(26, 26, 46, 0.05) 0%, transparent 50%),
            linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    }
}

.hero-network-lines path {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: heroNetDraw 6s ease-out forwards;
}

.hero-network-lines path:nth-child(2) { animation-delay: .35s; }
.hero-network-lines path:nth-child(3) { animation-delay: .7s; }
.hero-network-lines path:nth-child(4) { animation-delay: 1.05s; }
.hero-network-lines path:nth-child(5) { animation-delay: 1.4s; }
.hero-network-lines path:nth-child(6) { animation-delay: 1.75s; }
.hero-network-lines path:nth-child(7) { animation-delay: 2.1s; }
.hero-network-lines path:nth-child(8) { animation-delay: 2.45s; }
.hero-network-lines path:nth-child(9) { animation-delay: 2.8s; }

@keyframes heroNetDraw {
    to { stroke-dashoffset: 0; }
}

/* Knoten bewusst statisch gehalten – ruhiger Hero. Linien werden einmal eingezeichnet. */
.hero-network-nodes circle {
    transform-origin: center;
}

@media (prefers-reduced-motion: reduce) {
    .hero-network-lines path { animation: none; stroke-dashoffset: 0; }
}

/* Hero CCW Edition – blaues Farbschema */
.hero--ccw .hero-gradient {
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(48, 142, 178, 0.28) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(13, 25, 40, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 80%, rgba(65, 173, 220, 0.12) 0%, transparent 60%),
        linear-gradient(165deg, #0d1928 0%, #1A1A2E 30%, #308eb2 70%, #41addc 100%);
}

.hero--ccw .hero-pattern {
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.8;
}

.hero--ccw .hero-subtitle,
.hero--ccw .hero-description,
.hero--ccw .ccw-meta {
    color: rgba(255, 255, 255, 0.9);
}

.hero--ccw .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

.hero--ccw .hero-description {
    color: rgba(255, 255, 255, 0.85);
}

.hero--ccw .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.hero--ccw .hero-badge .badge-icon svg {
    fill: var(--primary-light);
}

.hero--ccw .hero-title .title-line {
    color: rgba(255, 255, 255, 0.9);
}

.hero--ccw .hero-title .title-highlight {
    color: var(--white) !important;
    text-shadow: 0 0 40px rgba(107, 179, 255, 0.3);
}

.hero--ccw .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.hero--ccw .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero--ccw .hero-ticker-track span {
    color: rgba(255, 255, 255, 0.15);
}

.hero--ccw .hero-float svg {
    color: rgba(107, 179, 255, 0.2);
}

.hero--ccw .scroll-indicator span,
.hero--ccw .scroll-line {
    color: rgba(255, 255, 255, 0.6);
}

.hero--ccw .scroll-line {
    background: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Hero Wave Animation
   ======================================== */

.wave-container {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
}

.wave-container.wave-bottom {
    bottom: -5px;
    height: 15%;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
}

.wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wave-layer-1 {
    opacity: 0.15;
    animation: waveMove 22s linear infinite;
}

.wave-layer-2 {
    opacity: 0.35;
    animation: waveMove 16s linear infinite reverse;
}

.wave-layer-3 {
    opacity: 0.8;
    animation: waveMove 12s linear infinite;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   Hero Tech-Soundwave (BPO/Voice-Vibe)
   ======================================== */

.hero-soundwave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: clamp(80px, 14vh, 140px);
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-soundwave::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(245, 250, 253, 0.4) 60%,
        rgba(245, 250, 253, 0.85) 100%);
    pointer-events: none;
}

.hero-soundwave svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 0 8px rgba(65, 173, 220, 0.25));
}

.hero-soundwave-line {
    stroke-linecap: round;
    transform-origin: 50% 50%;
    animation: heroSoundwaveFloat 7s ease-in-out infinite;
}

.hero-soundwave-line-1 {
    animation-duration: 6s;
}

.hero-soundwave-line-2 {
    animation-duration: 8s;
    animation-delay: -2s;
}

.hero-soundwave-line-3 {
    animation-duration: 10s;
    animation-delay: -4s;
}

@keyframes heroSoundwaveFloat {
    0%, 100% {
        transform: translateY(0) scaleY(1);
    }
    50% {
        transform: translateY(-2px) scaleY(1.08);
    }
}

.hero-soundwave-pulse circle {
    filter: drop-shadow(0 0 6px rgba(65, 173, 220, 0.9));
}

@media (prefers-reduced-motion: reduce) {
    .hero-soundwave-line,
    .hero-soundwave-pulse circle {
        animation: none !important;
    }
    .hero-soundwave-pulse circle animateMotion {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-soundwave {
        height: clamp(60px, 12vh, 100px);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.badge-icon {
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.badge-icon svg {
    display: block;
}

.hero-title {
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: var(--space-sm);
}

.title-highlight {
    display: block;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    overflow: hidden; /* Für Logo-Bild */
    height: clamp(60px, 12vw, 120px); /* Sichtbare Höhe */
    display: flex;
    align-items: center;
}

/* Hero Logo Image - Leerraum abschneiden */
.hero-logo-img {
    height: clamp(72px, 12vw, 168px);
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    margin: 0;
}

/* Mobile: Logo zentrieren */
@media (max-width: 768px) {
    .title-highlight {
        justify-content: center;
    }

    .hero-logo-img {
        height: clamp(64px, 18vw, 120px);
        margin: 0 auto;
    }
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-subtitle .heart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    color: var(--primary);
    animation: heartbeat 1.5s ease-in-out infinite;
}

.hero-subtitle .heart svg {
    display: block;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-bottom: var(--space-2xl);
    max-width: 560px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-career-note {
    flex-basis: 100%;
    margin-top: calc(var(--space-xs) * -0.25);
    font-size: 0.95rem;
}

.hero-career-link {
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-career-link:hover {
    color: var(--secondary);
}

.hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   Hero Animation System
   ======================================== */
.hero-animation {
    position: absolute;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Größe der pulsierenden Ringe (nur Hero) */
    --ring-pulse-start: 100px;
    --ring-pulse-end: 350px;
}

/* Pulsing Rings (Hero + .bewerber-pulse nutzen dieselbe Animation) */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: ringPulse 3s ease-out infinite;
}

.ring-1 {
    width: var(--ring-pulse-start);
    height: var(--ring-pulse-start);
    animation-delay: 0s;
}

.ring-2 {
    width: var(--ring-pulse-start);
    height: var(--ring-pulse-start);
    animation-delay: 1s;
}

.ring-3 {
    width: var(--ring-pulse-start);
    height: var(--ring-pulse-start);
    animation-delay: 2s;
}

@keyframes ringPulse {
    0% {
        width: var(--ring-pulse-start);
        height: var(--ring-pulse-start);
        opacity: 0.8;
        border-width: 3px;
    }
    100% {
        width: var(--ring-pulse-end);
        height: var(--ring-pulse-end);
        opacity: 0;
        border-width: 1px;
    }
}

/* Orbiting Dots */
.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(65, 173, 220, 0.2);
    animation: orbitSpin linear infinite;
}

.orbit-1 {
    width: 200px;
    height: 200px;
    animation-duration: 20s;
}

.orbit-2 {
    width: 280px;
    height: 280px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 360px;
    height: 360px;
    animation-duration: 40s;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-dot {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(65, 173, 220, 0.6);
}

.orbit-2 .orbit-dot {
    width: 8px;
    height: 8px;
    top: -4px;
    background: var(--accent-alt);
    box-shadow: 0 0 15px rgba(111, 237, 214, 0.6);
}

.orbit-3 .orbit-dot {
    width: 6px;
    height: 6px;
    top: -3px;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(255, 217, 61, 0.6);
}

/* Floating Particles */
.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 10%;
    left: 20%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 70%;
    left: 10%;
    animation-duration: 10s;
    animation-delay: -2s;
    background: var(--accent-alt);
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 20%;
    right: 15%;
    animation-duration: 7s;
    animation-delay: -4s;
}

.particle-4 {
    width: 5px;
    height: 5px;
    top: 80%;
    right: 25%;
    animation-duration: 9s;
    animation-delay: -1s;
    background: var(--accent);
}

.particle-5 {
    width: 7px;
    height: 7px;
    top: 50%;
    left: 5%;
    animation-duration: 11s;
    animation-delay: -3s;
}

.particle-6 {
    width: 4px;
    height: 4px;
    top: 30%;
    right: 5%;
    animation-duration: 12s;
    animation-delay: -5s;
    background: var(--accent-alt);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-15px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translateY(15px) translateX(5px) scale(1.1);
        opacity: 0.9;
    }
}

/* Center Glow */
.center-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(65, 173, 220, 0.22) 0%, rgba(65, 173, 220, 0.08) 45%, transparent 75%);
    border-radius: 50%;
}

/* Variante: ruhiger Hero (statisches Visual ohne Animationen) */
.hero-animation--quiet {
    align-items: center;
    justify-content: center;
}

/* ========================================
   Search Page
   ======================================== */
.search-page {
    min-height: calc(100vh - 120px);
    padding: var(--space-4xl) 0 var(--space-5xl);
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.search-page__header {
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.search-page__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-xl);
}

.search-page__form {
    width: 100%;
}

.search-page__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-page__input-icon {
    position: absolute;
    left: 1.125rem;
    color: var(--gray-400);
    pointer-events: none;
    flex-shrink: 0;
}

.search-page__input {
    width: 100%;
    padding: 0.9rem 3rem 0.9rem 3rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--gray-900);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-page__input::placeholder {
    color: var(--gray-400);
}

.search-page__input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(65, 173, 220, 0.1);
}

.search-page__clear {
    position: absolute;
    right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    color: var(--gray-400);
    cursor: pointer;
    border-radius: 50%;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.search-page__clear:hover {
    color: var(--gray-700);
    background: var(--gray-100);
}

.search-page__results {
    max-width: none;
    margin: 0;
}

.search-page__empty,
.search-page__no-results {
    text-align: center;
    padding: var(--space-3xl) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.search-page__empty p,
.search-page__no-results p {
    color: var(--gray-500);
    font-size: 1rem;
    max-width: 32ch;
    line-height: 1.55;
}

.search-page__loading {
    text-align: center;
    padding: var(--space-3xl) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.search-page__loading p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.search-page__spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: searchSpin 0.7s linear infinite;
}

@keyframes searchSpin {
    to { transform: rotate(360deg); }
}

.search-page__error {
    text-align: center;
    padding: var(--space-2xl) 0;
    color: var(--primary);
    font-weight: 600;
}

.search-page__group {
    margin-bottom: var(--space-xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.search-page__group-title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    padding: var(--space-md) var(--space-xl);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
}

.search-page__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4em;
    padding: 0.1em 0.45em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(65, 173, 220, 0.08);
    border-radius: var(--radius-full);
}

.search-page__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.search-page__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    text-decoration: none;
    transition: background var(--transition-fast);
    border-bottom: 1px solid var(--gray-100);
}

.search-page__item:last-child {
    border-bottom: none;
}

.search-page__item:hover {
    background: var(--off-white);
}

.search-page__item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    color: var(--gray-500);
}

.search-page__item-icon--news {
    background: rgba(65, 173, 220, 0.08);
    color: var(--primary);
}

.search-page__item-icon--job {
    background: rgba(65, 173, 220, 0.1);
    color: var(--primary);
}

.search-page__item-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 40px;
    object-fit: cover;
    border-radius: var(--radius-md);
    background: var(--gray-100);
}

.search-page__item-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.search-page__item-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-page__item-title mark {
    background: rgba(65, 173, 220, 0.15);
    color: inherit;
    border-radius: 2px;
    padding: 0 1px;
}

.search-page__item-url {
    font-size: 0.78rem;
    color: var(--gray-400);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-page__item-meta {
    font-size: 0.82rem;
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-page__item-arrow {
    flex-shrink: 0;
    color: var(--gray-300);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.search-page__item:hover .search-page__item-arrow {
    color: var(--primary);
    transform: translateX(3px);
}

@media (max-width: 640px) {
    .search-page {
        padding-top: var(--space-3xl);
    }

    .search-page__group-title {
        padding: var(--space-sm) var(--space-md);
    }

    .search-page__item {
        padding: var(--space-sm) var(--space-md);
    }

    .search-page__item-thumb {
        width: 44px;
        height: 32px;
    }
}

/* ========================================
   404 – Seite nicht gefunden (Work & Fun)
   ======================================== */
.error-page {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) 0 var(--space-4xl);
    overflow: hidden;
}

.error-page__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.error-page__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 55% at 50% 20%, rgba(65, 173, 220, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 85% 75%, rgba(26, 26, 46, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.error-page__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, var(--gray-200) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.45;
}

/* #workandfun Marquee (wie Hero-Ticker, flacher) */
.error-page__ticker {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 8%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-6deg);
    opacity: 1;
}

.error-page__ticker-track {
    display: flex;
    gap: clamp(2rem, 5vw, 3.75rem);
    white-space: nowrap;
    animation: tickerScroll 45s linear infinite;
}

.error-page__ticker-track span {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 12vw, 5rem);
    font-weight: 800;
    color: rgba(65, 173, 220, 0.045);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.error-page__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.error-page__content {
    width: 100%;
    max-width: 34.5rem;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    text-align: center;
}

.error-page__illus {
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    opacity: 0.9;
}

.error-page__illus svg {
    width: 2.75rem;
    height: 2.75rem;
}

.error-page__code-row {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}

.error-page__code-row .error-page__code-num {
    letter-spacing: 0.06em;
    color: var(--primary);
    font-size: inherit;
}

.error-page__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 1.85rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.error-page__text {
    font-size: 1.02rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: var(--space-lg);
    max-width: 38ch;
    margin-left: auto;
    margin-right: auto;
}

.error-page__motto {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.55;
    margin-bottom: var(--space-2xl);
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
}

.error-page__motto .error-page__hash {
    font-weight: 700;
    color: var(--primary);
}

.error-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.error-page__actions .btn svg {
    flex-shrink: 0;
}

.error-page__nav-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    margin-bottom: var(--space-md);
    border-top: 1px solid var(--gray-200);
}

.error-page__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-lg);
}

.error-page__links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.error-page__links a:hover {
    color: var(--primary);
    border-bottom-color: rgba(65, 173, 220, 0.35);
}

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

.visual-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg) var(--space-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.visual-card.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.visual-card.card-2 {
    top: 40%;
    right: 5%;
    animation-delay: -2s;
}

.visual-card.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    display: block;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

.card-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--gray-300);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ========================================
   Partners Section
   ======================================== */
.partners {
    padding: var(--space-3xl) 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}

.partners-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xl);
}

.partners-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.partners-logos {
    display: flex;
    gap: var(--space-4xl);
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-300);
    white-space: nowrap;
    transition: color var(--transition-base);
}

.partner-logo:hover {
    color: var(--gray-500);
}

/* ========================================
   Section Styles
   ======================================== */
.section-header {
    margin-bottom: var(--space-4xl);
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.section-label.light {
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-title.light {
    color: var(--white);
}

.highlight {
    color: var(--primary);
}

.highlight-alt {
    color: var(--accent);
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.about-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.about-card:hover {
    background: #1a1a2e;
    border-color: #1a1a2e;
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(13, 25, 40, 0.22);
    color: rgba(255, 255, 255, 0.7);
}

.about-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.about-card:hover .about-card-icon {
    background: rgba(65, 173, 220, 0.18);
    border-color: #41addc;
}

.about-card-icon svg {
    stroke: var(--primary);
    transition: stroke var(--transition-base);
}

.about-card:hover .about-card-icon svg {
    stroke: #41addc;
}

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    transition: color var(--transition-base);
}

.about-card:hover h3 {
    color: #fff;
}

.about-card p {
    font-size: 0.95rem;
    transition: color var(--transition-base);
}

.about-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.service-item {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-xl) var(--space-2xl);
    background: var(--off-white);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.service-item:hover {
    background: var(--secondary);
    transform: translateX(10px);
}

.service-item:hover .service-number,
.service-item:hover .service-content h3,
.service-item:hover .service-content p,
.service-item:hover .service-arrow {
    color: var(--white);
}

.service-number {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--gray-300);
    transition: color var(--transition-base);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    transition: color var(--transition-base);
}

.service-content p {
    font-size: 0.95rem;
    transition: color var(--transition-base);
}

.service-arrow {
    font-size: 1.5rem;
    color: var(--gray-300);
    transition: all var(--transition-base);
}

.service-item:hover .service-arrow {
    transform: translateX(8px);
}

/* ========================================
   Bewerber Section
   ======================================== */
.bewerber {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.bewerber::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(65, 173, 220, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.bewerber-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
}

.bewerber-content {
    color: var(--white);
}

.bewerber-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
}

.bewerber-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    flex-shrink: 0;
    color: var(--primary);
}

.benefit-icon svg {
    display: block;
}

.benefit-text {
    display: flex;
    flex-direction: column;
}

.benefit-text strong {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.benefit-text span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.bewerber-home-compact {
    padding: var(--space-4xl) 0;
}

.bewerber-wrapper-compact .bewerber-text {
    margin-bottom: var(--space-xl);
}

.bewerber-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

.bewerber-visual--compact {
    height: 320px;
}

.bewerber-visual {
    position: relative;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Puzzleslot: 5 Felder, Mitte offen – „Du“ snappt ein (Höhe inkl. padding-bottom = Stage) */
.bewerber-snap-stage {
    --bewerber-snap-cell: clamp(60px, 14vw, 84px);
    --bewerber-snap-gap: clamp(8px, 2vw, 14px);
    --bewerber-snap-stage-h: 280px;
    --bewerber-snap-pad-bottom: 28px;
    /* Abstand Oberkante float → Oberkante Reihe beim „Einrasten“ */
    --bewerber-snap-drop: calc(
        var(--bewerber-snap-stage-h) - var(--bewerber-snap-pad-bottom) - var(--bewerber-snap-cell) - var(--bewerber-snap-float-top)
    );
    --bewerber-snap-float-top: 20px;
    position: relative;
    width: min(100%, calc(var(--bewerber-snap-cell) * 5 + var(--bewerber-snap-gap) * 4));
    height: var(--bewerber-snap-stage-h);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: var(--bewerber-snap-pad-bottom);
    pointer-events: none;
}

.bewerber-snap-row {
    display: flex;
    flex-direction: row;
    gap: var(--bewerber-snap-gap);
    justify-content: center;
    align-items: center;
}

.bewerber-snap-cell {
    box-sizing: border-box;
    width: var(--bewerber-snap-cell);
    height: var(--bewerber-snap-cell);
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    /* Einheitlich 2px – sonst sitzt die Mulde optisch versetzt */
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.bewerber-snap-hole {
    background: rgba(0, 0, 0, 0.4);
    border: 2px dashed rgba(255, 255, 255, 0.35);
}

.bewerber-snap-float {
    position: absolute;
    left: 50%;
    top: var(--bewerber-snap-float-top);
    box-sizing: border-box;
    width: var(--bewerber-snap-cell);
    height: var(--bewerber-snap-cell);
    margin-left: calc(var(--bewerber-snap-cell) / -2);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: clamp(0.6rem, 1.8vw, 0.8rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.04em;
    animation: bewerberSnapFloat 5.5s ease-in-out infinite;
    z-index: 2;
    will-change: transform;
}

@keyframes bewerberSnapFloat {
    0%, 12% {
        transform: translateY(0) rotate(-4deg);
    }
    32% {
        transform: translateY(calc(var(--bewerber-snap-drop) - 2px)) rotate(1.5deg) scale(0.99);
    }
    38% {
        transform: translateY(calc(var(--bewerber-snap-drop) + 2px)) rotate(0deg) scale(1);
    }
    44%, 76% {
        transform: translateY(var(--bewerber-snap-drop)) rotate(0deg) scale(1);
    }
    100% {
        transform: translateY(0) rotate(-4deg);
    }
}

/* ========================================
   Auftraggeber Section
   ======================================== */
.auftraggeber {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.auftraggeber-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.auftraggeber-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: var(--space-xl);
}

.frame-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-2xl);
    opacity: 0.3;
}

.image-placeholder {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(65, 173, 220, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(111, 237, 214, 0.2) 0%, transparent 40%);
}

.placeholder-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    animation: float 3s ease-in-out infinite;
    color: var(--primary);
}

.placeholder-icon svg {
    display: block;
}

.placeholder-text {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.placeholder-subtext {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 400;
}

.placeholder-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.placeholder-decorations .deco {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
    color: var(--primary-light);
    display: flex;
}

.placeholder-decorations .deco svg {
    display: block;
}

.deco-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s !important;
}

.deco-2 {
    top: 20%;
    right: 15%;
    animation-delay: -1s !important;
}

.deco-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -2s !important;
}

.deco-4 {
    bottom: 15%;
    right: 20%;
    animation-delay: -3s !important;
}

.auftraggeber-content {
    max-width: 500px;
}

.auftraggeber-text {
    font-size: 1.125rem;
    margin-bottom: var(--space-2xl);
}

.auftraggeber-list {
    list-style: none;
    margin-bottom: var(--space-2xl);
}

.auftraggeber-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-100);
}

.auftraggeber-list li:last-child {
    border-bottom: none;
}

.auftraggeber-list svg {
    stroke: var(--primary);
    flex-shrink: 0;
}

.auftraggeber-list span {
    color: var(--gray-700);
}

.auftraggeber-cta-duo {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

/* ========================================
   ======================================== */
.testimonials {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card.featured {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.05);
}

.testimonial-card.featured .testimonial-quote,
.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .author-info strong,
.testimonial-card.featured .author-info span {
    color: var(--white);
}

.testimonial-card.featured .testimonial-quote {
    color: var(--primary);
}

.testimonial-card:hover:not(.featured) {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-family: var(--font-accent);
    font-size: 4rem;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: var(--space-xl);
    color: var(--gray-600);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.95rem;
    color: var(--gray-800);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ========================================
   Standorte Section
   ======================================== */
.standorte {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

.location-card {
    display: block;
    text-align: center;
    background: var(--off-white);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.location-map {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.25;
    transition: all var(--transition-base);
}

.location-card:hover .location-map iframe {
    filter: grayscale(50%) contrast(1.05);
    opacity: 0.4;
}

.location-map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    opacity: 0.15;
}

.location-map iframe[src] ~ .location-map-placeholder {
    display: none;
}

.location-map-placeholder-intl {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: rgba(65, 173, 220, 0.2);
    opacity: 1;
}

.location-map-placeholder-intl svg {
    width: 80px;
    height: 80px;
}

.location-card-intl {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.location-card-intl h3,
.location-card-intl p {
    color: var(--white);
}

.location-card-intl .location-info {
    background: none;
}

.location-card-intl:hover {
    border-color: var(--primary);
}

.location-info {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) var(--space-md);
    background: linear-gradient(0deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 70%, transparent 100%);
}

.location-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.location-card p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ========================================
   Contact CTA Section
   ======================================== */
.contact-cta {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3xl);
    position: relative;
}

.cta-wrapper-centered {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
}

.cta-wrapper-centered p {
    max-width: 500px;
    opacity: 0.85;
}

/* Standort Detail CTA */
.standort-detail-cta {
    padding: var(--space-5xl) 0;
}

.standort-detail-cta-inner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-4xl) var(--space-3xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.standort-detail-cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
}

.standort-detail-cta-text {
    position: relative;
}

.standort-detail-cta-text h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.standort-detail-cta-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 440px;
    line-height: 1.6;
}

.standort-detail-cta-actions {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
    position: relative;
}

@media (max-width: 768px) {
    .standort-detail-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: var(--space-3xl) var(--space-xl);
    }

    .standort-detail-cta-text p {
        max-width: 100%;
    }

    .standort-detail-cta-actions {
        flex-direction: column;
        width: 100%;
    }
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    background: var(--gray-900);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
    display: inline-block;
}

.footer-brand .logo .logo-time {
    color: var(--white);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: var(--space-xl);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: var(--radius-full);
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-md);
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.footer-tagline {
    font-weight: 600;
    color: var(--primary) !important;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual,
    .hero-animation {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .bewerber-wrapper,
    .auftraggeber-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bewerber-visual {
        display: none;
    }
    
    .auftraggeber-image {
        order: -1;
    }
    
    .auftraggeber-content {
        max-width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: var(--space-lg);
        box-shadow: var(--shadow-lg);
        gap: var(--space-sm);
        margin: 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }
    
    .nav-links a:hover {
        background: var(--gray-100);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0 0 0 16px;
        min-width: auto;
        background: none;
    }
    
    .nav-dropdown:hover .nav-dropdown-menu {
        transform: none;
    }
    
    .nav-dropdown-menu::before {
        display: none;
    }
    
    .nav-dropdown-arrow {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-actions .btn {
        display: none;
    }

    .nav-actions {
        gap: var(--space-sm);
    }

    .nav-lang-toggle {
        height: 34px;
        padding: 0 8px;
        font-size: 0.8rem;
    }

    .nav-lang-current {
        font-size: 0.78rem;
    }

    .nav-lang-menu {
        right: -4px;
        min-width: 170px;
    }
    
    .hero {
        padding-top: calc(var(--space-5xl) + 60px);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* Animations on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: var(--space-2xl);
    right: var(--space-2xl);
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(65, 173, 220, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top svg {
    transition: transform var(--transition-base);
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: var(--space-lg);
        right: var(--space-lg);
        width: 44px;
        height: 44px;
    }
}

/* ========================================
   Cookie Banner
   ======================================== */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    background: rgba(15, 23, 42, 0.97);
    color: var(--white);
    padding: var(--space-lg) var(--space-xl);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.cookie-banner h3
{
    color: var(--white);
}

.cookie-banner p
{
    color: rgba(255, 255, 255, 0.8);
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.cookie-text h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--white);
}

.cookie-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 700px;
}

.cookie-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

.cookie-actions .btn {
    font-size: 0.85rem;
    padding: var(--space-sm) var(--space-md);
}

.cookie-actions .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.cookie-actions .cookie-btn-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cookie-links {
    max-width: 1200px;
    margin: var(--space-sm) auto 0;
    font-size: 0.8rem;
    color: rgba(209, 213, 219, 0.8);
}

.cookie-links a {
    color: var(--primary-light);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .cookie-actions .btn {
        flex: 1;
        justify-content: center;
    }
}

/* ========================================
   Subpage Styles
   ======================================== */

/* Page Header */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-header-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.page-header-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(65, 173, 220, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(111, 237, 214, 0.1) 0%, transparent 40%);
}

/* Auftraggeber: Video-Hintergrund im Titelbereich */
.page-header-auftraggeber .page-header-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.page-header-auftraggeber .page-header-gradient {
    z-index: 1;
    /* Etwas dunkler, damit Typo lesbar bleibt */
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.78) 100%);
}

@media (prefers-reduced-motion: reduce) {
    .page-header-auftraggeber .page-header-video {
        display: none;
    }
}

/* About Page Header */
.page-header-about {
    background: var(--secondary);
}

.page-header-about-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top center;
    filter: blur(4px);
    transform: scale(1.05);
    z-index: 0;
}

.page-header-about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.75) 0%, rgba(22, 33, 62, 0.65) 100%);
    z-index: 1;
}

.page-header-about .page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-content {
    max-width: 700px;
    color: var(--white);
}

.page-header-content .section-label {
    color: var(--primary-light);
}

.page-header-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-lg);
}

.page-header-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

/* About Intro Section */
.about-intro {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.about-intro-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: var(--space-xl);
}

.about-intro-content p {
    margin-bottom: var(--space-lg);
    font-size: 1.05rem;
}

.about-intro-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.intro-visual-box {
    background: var(--off-white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.intro-visual-box:first-child {
    grid-column: span 2;
}

.intro-visual-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.intro-icon {
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.intro-stat {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

.intro-label {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Timeline Section */
.timeline-section {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-path {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(
        to bottom,
        var(--primary) 0,
        var(--primary) 12px,
        transparent 12px,
        transparent 24px
    );
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-pin {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 4px 15px rgba(65, 173, 220, 0.4);
    z-index: 2;
}

.timeline-card {
    flex: 1;
    max-width: calc(50% - 44px);
    position: relative;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 32px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary), rgba(65, 173, 220, 0.2));
    border-radius: 5px 0 0 5px;
}

.timeline-item:nth-child(odd) .timeline-card::before {
    left: auto;
    right: 0;
    border-radius: 0 5px 5px 0;
}

.timeline-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.timeline-bg-year {
    position: absolute;
    top: -16px;
    right: -6px;
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(65, 173, 220, 0.05);
    pointer-events: none;
}

.timeline-item:nth-child(odd) .timeline-bg-year {
    right: auto;
    left: -6px;
}

.timeline-label {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
    position: relative;
}

.timeline-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    position: relative;
}

.timeline-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 1rem;
    position: relative;
}

.timeline-gallery a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: transform 0.25s, box-shadow 0.25s;
}

.timeline-gallery a:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.timeline-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 600px) {
    .timeline-gallery {
        grid-template-columns: 1fr;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 88vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    object-fit: contain;
    transition: transform 0.3s;
}

.lightbox.active .lightbox-img {
    animation: lbZoomIn 0.3s ease;
}

@keyframes lbZoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 2;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s, background 0.2s;
    z-index: 2;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: rgba(255,255,255,0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 600px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .lightbox-img {
        max-width: 95vw;
    }
}

/* Standort Detail Page */
.page-header-standort-detail {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.standort-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.7) 100%);
    z-index: 0;
}

.page-header-standort-detail .page-header-content {
    position: relative;
    z-index: 1;
}

/* News-Einzelbeitrag: Titelbild im Hero (wie Standort-Header) */
.page-header-news-hero {
    position: relative;
    overflow: hidden;
    background: var(--secondary);
}

.page-header-news-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-header-news-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-header-news-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.78) 0%, rgba(22, 33, 62, 0.72) 100%);
}

.page-header-news-hero .container {
    position: relative;
    z-index: 2;
}

.page-header-news-hero .page-header-content {
    position: relative;
    z-index: 2;
}

.standort-detail-section {
    padding: var(--space-5xl) 0;
}

.standort-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.standort-detail-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
}

.standort-detail-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.standort-detail-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    color: var(--gray-700);
}

.standort-detail-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.standort-detail-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.standort-detail-map-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-lg);
    background: var(--gray-100);
}

.standort-detail-map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.standort-detail-map-card iframe[src] ~ .standort-detail-map-placeholder {
    display: none;
}

.standort-detail-map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--gray-700);
    background-size: cover;
    background-position: center;
}

.standort-detail-map-placeholder-overlay {
    position: absolute;
    inset: 0;
    background: rgba(241, 243, 248, 0.82);
}

.standort-detail-map-placeholder svg,
.standort-detail-map-placeholder p {
    position: relative;
    z-index: 1;
}

.standort-detail-map-placeholder p {
    font-size: 0.85rem;
    font-weight: 500;
}

.standort-detail-jobs {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.jobs-empty-state {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    grid-column: 1 / -1;
}

.jobs-empty-state svg {
    color: var(--gray-300);
    margin: 0 auto var(--space-lg);
}

.jobs-empty-state h3 {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.jobs-empty-state p {
    color: var(--gray-500);
    max-width: 440px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

.standort-detail-jobs-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--gray-200);
}

.standort-detail-jobs-cta p {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
    .standort-detail-grid {
        grid-template-columns: 1fr;
    }

    .standort-detail-map-card {
        height: 280px;
    }
}

/* Special Section */
.special-section {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.special-card {
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.special-card-icon {
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.special-card-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18) 0%, transparent 55%),
        radial-gradient(circle at 80% 75%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.special-card-icon svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.18));
    transition: transform var(--transition-base);
}

.special-card:hover .special-card-icon svg {
    transform: scale(1.08);
}

.special-card-content {
    padding: var(--space-xl) var(--space-2xl) var(--space-2xl);
    position: relative;
    z-index: 1;
    background: var(--white);
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.special-number {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--white);
    opacity: 0.6;
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 2;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.special-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--gray-900);
}

.special-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* Quote Section */
.quote-section {
    padding: var(--space-4xl) 0;
    background: var(--off-white);
}

.big-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.big-quote p {
    font-family: var(--font-accent);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    color: var(--gray-800);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.big-quote cite {
    font-style: normal;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

/* Process Section (Bewerber) */
.process-section {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: var(--space-xl);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto var(--space-lg);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--off-white);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--primary);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.process-connector {
    width: 60px;
    height: 3px;
    background: var(--gray-200);
    margin-top: 70px;
    flex-shrink: 0;
}

/* Bewerber: Header-Actions (BPO-Kontext) */
.bewerber-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    align-items: center;
}

/* Bewerber: Karriereportal CTA-Banner */
.bewerber-portal-cta {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-sm);
}

.bewerber-portal-cta-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.bewerber-portal-cta-text {
    flex: 1;
    min-width: 0;
}

.bewerber-portal-cta-text h2 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.bewerber-portal-cta-text p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.bewerber-portal-cta .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .bewerber-portal-cta {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xl);
        padding: var(--space-2xl);
    }

    .bewerber-portal-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Bewerber: BPO-Rollen */
.bewerber-roles {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.bewerber-roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.bewerber-role-card {
    background: var(--off-white);
    border-radius: var(--radius-xl, 12px);
    padding: var(--space-2xl);
    text-align: left;
    border-top: 4px solid var(--primary);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bewerber-role-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.bewerber-role-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(65, 173, 220, 0.12);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.bewerber-role-card h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    color: var(--gray-800);
}

.bewerber-role-card p {
    font-size: 0.93rem;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.55;
}

/* Standort-Detail: BPO-Leistungen am Standort */
.standort-detail-services {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.standort-detail-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.standort-detail-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.standort-detail-service-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(65, 173, 220, 0.12);
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.standort-detail-service-card h3 {
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: var(--space-xs);
}

.standort-detail-service-card p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.55;
    margin: 0;
}

.standort-detail-services-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* Warum SSF (Bewerber) */
.why-chotime {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.why-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(65, 173, 220, 0.1) 0%, rgba(65, 173, 220, 0.05) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--primary);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.why-card p {
    font-size: 0.95rem;
}

/* Benefits Section (Bewerber) */
.benefits-section {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.benefit-card {
    background: var(--off-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-card-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--primary);
    transition: all var(--transition-base);
}

.benefit-card:hover .benefit-card-icon {
    background: var(--primary);
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    font-size: 0.9rem;
}

/* Application CTA (Bewerber) */
.application-cta {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.application-wrapper {
    max-width: 700px;
}

.application-content {
    color: var(--white);
}

.application-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-lg);
}

.application-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
}

.application-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.app-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.9);
}

.app-feature svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* BPO Grundlagen — Auftraggeber-Seite */
.bpo-fundamentals {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.bpo-fundamentals .bpo-section-spaced {
    margin-top: var(--space-4xl);
    padding-bottom: 0;
}

.bpo-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.bpo-split-card {
    background: var(--white);
    border-radius: var(--radius-xl, 12px);
    padding: var(--space-2xl);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    text-align: left;
}

.bpo-split-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.bpo-split-card ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.65;
}

.bpo-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: var(--space-2xl);
}

.bpo-why-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 26px 26px 26px 24px;
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--gray-700);
    text-align: left;
    transition: background .35s ease, border-color .35s ease,
                transform .35s ease, box-shadow .35s ease, color .35s ease;
}

.bpo-why-item strong {
    display: block;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--gray-900, #1a1a2e);
    transition: color .35s ease;
}

.bpo-why-item .why-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.bpo-why-item .why-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(65, 173, 220, 0.08);
    color: var(--primary);
    transition: background .35s ease, color .35s ease, transform .35s ease;
}

.bpo-why-item .why-body {
    flex: 1 1 auto;
    min-width: 0;
}

.bpo-why-item:hover {
    background: #1a1a2e;
    border-color: #1a1a2e;
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(13, 25, 40, 0.18);
    color: rgba(255, 255, 255, 0.7);
}
.bpo-why-item:hover strong { color: #fff; }
.bpo-why-item:hover .why-icon {
    background: rgba(65, 173, 220, 0.18);
    color: #41addc;
}

@media (prefers-reduced-motion: reduce) {
    .bpo-why-item,
    .bpo-why-item .why-icon {
        transition: none;
    }
}

@media (max-width: 768px) {
    .bpo-split {
        grid-template-columns: 1fr;
    }
}

/* Services Page Grid */
.services-page {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* i2x KI Section */
.i2x-section {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.i2x-section .section-label {
    color: #1D4FC4;
}

.i2x-logo {
    margin-bottom: var(--space-lg);
}

.i2x-section .section-title {
    color: var(--gray-900);
}

.i2x-section .section-title .highlight {
    background: linear-gradient(135deg, #1D4FC4, #2D63D8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.i2x-section .section-description {
    color: var(--gray-600);
}

.i2x-cta {
    text-align: center;
}

.i2x-cta .btn {
    background: linear-gradient(135deg, #1D4FC4, #2D63D8);
    border-color: transparent;
    color: var(--white);
}

.i2x-cta .btn:hover {
    background: linear-gradient(135deg, #163DA0, #1D4FC4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 79, 196, 0.4);
}

/* Statement Section */
.statement-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.statement-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.statement-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.statement-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-light);
}

/* ISO Certifications */
.iso-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(160deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.iso-section .section-label {
    color: var(--accent);
}

.iso-section .section-title {
    color: var(--white);
}

.iso-section .section-title .highlight {
    color: var(--primary-light);
}

.iso-section .section-description {
    color: rgba(255, 255, 255, 0.75);
}

.iso-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    max-width: 1000px;
    margin: 0 auto;
}

.iso-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.iso-card:hover {
    border-color: rgba(65, 173, 220, 0.5);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.iso-badge {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.iso-badge svg {
    stroke: var(--white);
}

.iso-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
}

.iso-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.iso-info p:not(.iso-subtitle) {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .iso-grid {
        grid-template-columns: 1fr;
    }

    .iso-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-form-info h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: var(--space-lg);
}

.contact-form-info > p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--gray-700);
}

.contact-item svg {
    color: var(--primary);
}

.contact-form-box {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form .form-group {
    margin-bottom: var(--space-lg);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-base);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
}

.contact-form .form-feedback {
    margin-bottom: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-form .form-feedback-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.contact-form .form-feedback-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Disziplinen-Pills im Kontaktformular */
.contact-form .form-disciplines {
    border: 0;
    padding: 0;
    margin-bottom: var(--space-lg);
}

.contact-form .form-disciplines legend {
    display: block;
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
}

.contact-form .form-hint {
    margin-left: 0.4em;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray-500);
}

.contact-form .form-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-form .form-pill {
    position: relative;
    display: inline-flex;
    cursor: pointer;
    user-select: none;
}

.contact-form .form-pill input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.contact-form .form-pill span {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-pill);
    background: var(--white);
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.contact-form .form-pill:hover span {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.contact-form .form-pill input:checked + span {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.contact-form .form-pill input:focus-visible + span {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

/* Partners Page */
.partners-page {
    padding-top: var(--space-4xl);
    background: var(--white);
    border-top: none;
}

/* Standorte Page */
.standorte-page {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

/* Nav Active State */
.nav-links a.active {
    color: var(--primary);
}

/* Responsive for Subpages */
@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    
    .special-grid,
    .why-grid,
    .benefits-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-path {
        left: 24px;
    }
    
    .timeline-pin {
        left: 24px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        padding-left: 64px;
    }
    
    .timeline-card {
        max-width: 100%;
    }
    
    .timeline-card::before,
    .timeline-item:nth-child(odd) .timeline-card::before {
        left: 0;
        right: auto;
        border-radius: 5px 0 0 5px;
    }
    
    .timeline-bg-year,
    .timeline-item:nth-child(odd) .timeline-bg-year {
        right: -6px;
        left: auto;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }
    
    .special-grid,
    .why-grid,
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-connector {
        width: 3px;
        height: 40px;
        margin: 0;
    }
    
    .application-features {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Standorte Page Styles
   ======================================== */

/* Standorte Overview */
.standorte-overview {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.standorte-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.standort-card {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.standort-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

/* Map Hintergrund */
.standort-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.standort-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none; /* Karte nicht klickbar */
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.3;
    transition: all var(--transition-base);
}

.standort-card:hover .standort-map iframe {
    filter: grayscale(50%) contrast(1.05);
    opacity: 0.5;
}

.standort-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    pointer-events: none;
}

.standort-content {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl);
}

/* World Pattern für International */
.world-pattern {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
    opacity: 0.8;
}

.standort-featured {
    grid-column: span 2;
    grid-row: span 2;
    border-color: transparent;
}

.standort-featured .standort-map-overlay {
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.85) 0%, rgba(69, 123, 157, 0.75) 100%);
}

.standort-featured .standort-map iframe {
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.4;
}

.standort-featured:hover .standort-map iframe {
    filter: grayscale(30%) contrast(1.1);
    opacity: 0.5;
}

.standort-featured:hover {
    border-color: var(--primary);
}

.standort-featured .standort-content {
    color: var(--white);
}

.standort-featured h3,
.standort-featured .standort-info,
.standort-featured .standort-details {
    color: var(--white);
}

.standort-featured .standort-details span {
    color: rgba(255, 255, 255, 0.7);
}

.standort-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.standort-icon {
    width: 70px;
    height: 70px;
    background: rgba(65, 173, 220, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--primary);
}

.standort-featured .standort-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.standort-international .standort-icon {
    background: linear-gradient(135deg, rgba(111, 237, 214, 0.2) 0%, rgba(111, 237, 214, 0.1) 100%);
    color: var(--accent-alt);
}

.standort-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.standort-info {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.standort-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

.standort-details {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.standort-details li {
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.standort-details li:last-child {
    border-bottom: none;
}

.standort-details strong {
    display: block;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.standort-details span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Team Intro */
.team-intro {
    padding: var(--space-4xl) 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.team-intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.team-intro-content .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.team-intro-content h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.team-intro-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.team-intro-content strong {
    color: var(--white);
}

/* Team Section */
.team-section {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.team-section-alt {
    background: var(--off-white);
}

.team-group {
    margin-bottom: var(--space-2xl);
}

.team-group:last-child {
    margin-bottom: 0;
}

.team-group-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

.team-grid-leadership {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

/* Team Card - Image Background Style */
.team-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.team-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

/* Avatar as Background */
.team-avatar {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gray-300) 0%, var(--gray-400) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-weight: 700;
    font-size: 3rem;
    transition: all var(--transition-slow);
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
}

.team-avatar span {
    position: relative;
    z-index: 1;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: all var(--transition-slow);
}

/* Gradient Overlay */
.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 46, 0.95) 0%,
        rgba(26, 26, 46, 0.6) 40%,
        rgba(26, 26, 46, 0) 70%
    );
    z-index: 2;
    transition: all var(--transition-base);
}

.team-card:hover::before {
    background: linear-gradient(
        to top,
        rgba(65, 173, 220, 0.95) 0%,
        rgba(65, 173, 220, 0.7) 50%,
        rgba(65, 173, 220, 0.3) 100%
    );
}

/* Team Info Overlay */
.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    z-index: 3;
    color: var(--white);
}

.team-info h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--white);
    transform: translateY(0);
    transition: transform var(--transition-base);
}

.team-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.team-card:hover .team-info h3 {
    transform: translateY(-5px);
}

.team-card:hover .team-role {
    opacity: 1;
    transform: translateY(0);
    color: var(--white);
}

/* Featured Cards (Leadership) */
.team-card-featured {
    aspect-ratio: 3/4;
}

.team-card-featured .team-avatar {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 4rem;
}

.team-card-featured::before {
    background: linear-gradient(
        to top,
        rgba(26, 26, 46, 0.95) 0%,
        rgba(65, 173, 220, 0.4) 50%,
        rgba(65, 173, 220, 0.1) 100%
    );
}

.team-card-featured .team-info h3 {
    font-size: 1.25rem;
}

.team-card-featured .team-role {
    opacity: 1;
    transform: translateY(0);
    color: var(--accent);
    font-weight: 600;
}

/* LinkedIn Button on Team Card */
.team-linkedin {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-600);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity var(--transition-base), transform var(--transition-base), color var(--transition-fast), background var(--transition-fast);
    text-decoration: none;
}

.team-linkedin:hover {
    background: var(--white);
    color: var(--primary);
}

.team-card:hover .team-linkedin,
.team-card:focus-within .team-linkedin,
.team-linkedin:focus-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Join CTA */
.join-cta {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.join-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.join-cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.join-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: var(--space-2xl);
}

.join-cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive for Standorte Page */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .standorte-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .standort-featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid-leadership {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-avatar {
        font-size: 2.5rem;
    }
    
    .team-card-featured .team-avatar {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .standorte-cards {
        grid-template-columns: 1fr;
    }
    
    .standort-featured {
        grid-column: span 1;
    }
    
    .team-grid,
    .team-grid-leadership {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-info {
        padding: var(--space-md);
    }
    
    .team-info h3 {
        font-size: 0.95rem;
    }
    
    .team-role {
        font-size: 0.75rem;
    }
    
    .join-cta-buttons {
        flex-direction: column;
    }
    
    .join-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .team-grid,
    .team-grid-leadership {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-avatar {
        font-size: 2rem;
    }
    
    .team-card-featured .team-avatar {
        font-size: 2.5rem;
    }
    
    .team-info h3 {
        font-size: 0.85rem;
    }
    
    .team-role {
        font-size: 0.7rem;
    }
}


/* ===========================
   Jobs / Offene Stellen
   =========================== */

.jobs-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.jobs-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.jobs-loading {
    text-align: center;
    padding: var(--space-2xl) 0;
    color: var(--gray-500);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.jobs-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.jobs-empty {
    text-align: center;
    padding: var(--space-2xl) 0;
    color: var(--gray-500);
    font-family: var(--font-body);
    font-size: 1rem;
}

.job-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.job-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.job-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-card-nr {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    white-space: nowrap;
}

.job-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    flex: 1;
    min-width: 0;
}

.job-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

.job-card-location svg {
    color: var(--primary);
    flex-shrink: 0;
}

.job-card-arrow {
    color: var(--gray-400);
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}

.job-card:hover .job-card-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

.jobs-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

@media (max-width: 768px) {
    .jobs-section {
        padding: var(--space-2xl) 0;
    }

    .job-card {
        flex-wrap: wrap;
        padding: var(--space-md);
        gap: var(--space-sm);
    }

    .job-card h3 {
        flex-basis: 100%;
        order: -1;
        font-size: 0.95rem;
    }

    .job-card-header {
        order: 1;
    }

    .job-card-location {
        order: 2;
        flex: 1;
    }

    .job-card-arrow {
        order: 3;
    }
}


/* ===========================
   Instagram Feed Section
   =========================== */

.instagram-section {
    padding: var(--space-3xl) 0;
    background: var(--gray-100);
}

.instagram-placeholder {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-300);
    padding: var(--space-3xl) var(--space-xl);
    margin-top: var(--space-xl);
    text-align: center;
}

.instagram-placeholder-inner {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.instagram-placeholder-inner svg {
    color: var(--gray-400);
}

.instagram-placeholder-inner h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.instagram-placeholder-inner p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

.instagram-external-link {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.instagram-external-link:hover {
    color: var(--primary);
}

.instagram-embeds {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    align-items: start;
}

.instagram-embeds.visible {
    display: grid;
}

.insta-embed-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.insta-embed-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.insta-embed-card .instagram-media {
    margin: 0 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.insta-embed-card iframe {
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.instagram-follow {
    text-align: center;
    margin-top: var(--space-xl);
}

.instagram-follow .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

@media (max-width: 1024px) {
    .instagram-embeds {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-section {
        padding: var(--space-2xl) 0;
    }

    .instagram-placeholder {
        padding: var(--space-2xl) var(--space-md);
    }
}

@media (max-width: 640px) {
    .instagram-embeds {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ===========================
   Legal / Datenschutz Page
   =========================== */

.legal-content {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--gray-200);
}

.legal-section-last {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.legal-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-section p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-md);
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-md);
}

.legal-section ul li {
    position: relative;
    padding-left: 1.5em;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-xs);
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.legal-section a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.legal-section a:hover {
    color: var(--primary-dark);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
    text-align: left;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.legal-table th {
    font-weight: 600;
    color: var(--dark);
    background: var(--gray-100);
}

.legal-updated {
    font-style: italic;
    color: var(--gray-500) !important;
    font-size: 0.9rem !important;
}

@media (max-width: 768px) {
    .legal-section h2 {
        font-size: 1.25rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 0.95rem;
    }

    .legal-table {
        font-size: 0.85rem;
    }

    .legal-table th,
    .legal-table td {
        padding: var(--space-xs) var(--space-sm);
    }
}



/* ========================================
   Hero Floating Icons
   ======================================== */

   .hero-floats {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-float {
    position: absolute;
    bottom: -40px;
    width: 28px;
    height: 28px;
    color: rgba(65, 173, 220, 0.12);
    animation: floatUp 20s linear infinite;
}

.hero-float svg {
    width: 100%;
    height: 100%;
}

/* Tech-Hero: Float-Icons mit etwas mehr Konstrast & blueprint-Look */
.hero--tech .hero-float {
    color: rgba(48, 142, 178, 0.18);
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 4px rgba(65,173,220,0.18));
}

.hero--tech .hero-ticker-track span {
    color: rgba(48, 142, 178, 0.045);
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-110vh) rotate(180deg) scale(1.2);
        opacity: 0;
    }
}

/* ========================================
   Hero #workandfun Ticker
   ======================================== */

.hero-ticker {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-8deg) translateY(-50%);
}

.hero-ticker-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
}

.hero-ticker-track span {
    font-family: 'Outfit', sans-serif;
    font-size: 7rem;
    font-weight: 800;
    color: rgba(65, 173, 220, 0.04);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   NEAR- & OFFSHORE PAGE
   ======================================== */

.page-header-nearshore {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #308eb2 100%);
    position: relative;
    overflow: hidden;
}

.page-header-nearshore::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(65, 173, 220, 0.15), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(15, 52, 96, 0.4), transparent 50%);
    z-index: 1;
}

.page-header-nearshore .page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-nearshore .page-header-description {
    max-width: 700px;
}

/* Why Nearshore */
.ns-why {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.ns-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.ns-why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.ns-why-card h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    color: var(--gray-800);
}

.ns-why-card p {
    color: var(--gray-700);
    font-size: 0.93rem;
    line-height: 1.55;
    margin: 0;
}

/* Overview Grid */
.ns-overview {
    padding: 80px 0;
}

.ns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ns-country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    text-decoration: none;
    color: var(--gray-900);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ns-country-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.ns-country-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ns-country-card:hover::after {
    transform: scaleX(1);
}

.ns-country-flag {
    font-size: 3rem;
    margin-bottom: 16px;
    line-height: 1;
}

.ns-country-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.ns-country-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.ns-country-featured {
    background: linear-gradient(135deg, #f8f0ff 0%, #fff 100%);
    border-color: var(--primary-light);
}

/* Detail Sections – Open Layout */
.ns-detail {
    padding: 80px 0;
}

.ns-detail-alt {
    background: #F4F5FA;
}

.ns-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ns-detail-grid-reverse {
    direction: rtl;
}

.ns-detail-grid-reverse > * {
    direction: ltr;
}

.ns-detail-flag {
    font-size: 3rem;
    margin-bottom: 8px;
    line-height: 1;
}

.ns-detail-content .section-title {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.ns-detail-sub {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.ns-detail-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.ns-detail-locations {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.ns-detail-address {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 0.9rem;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.ns-detail-alt .ns-detail-address {
    border-top-color: var(--gray-300);
}

.ns-detail-address svg {
    flex-shrink: 0;
    color: var(--primary);
}

/* Map */
.ns-detail-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
    background: var(--gray-100);
}

.ns-detail-map iframe {
    width: 100%;
    height: 100%;
    display: none;
}

.ns-detail-map iframe[src] {
    display: block;
}

.ns-detail-map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray-400);
    background: var(--gray-100);
}

.ns-detail-map-placeholder p {
    font-size: 0.9rem;
}

.ns-detail-map iframe[src] ~ .ns-detail-map-placeholder {
    display: none;
}

/* Highlights (Griechenland) */
.ns-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.ns-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.ns-detail-alt .ns-highlight-item {
    background: var(--white);
}

.ns-highlight-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(65, 173, 220, 0.08);
}

.ns-highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--primary);
    color: var(--white);
}

.ns-highlight-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.ns-highlight-item span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Responsive */
@media (max-width: 991px) {
    .ns-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ns-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ns-detail-grid-reverse {
        direction: ltr;
    }
}

@media (max-width: 575px) {
    .ns-grid {
        grid-template-columns: 1fr;
    }

    .ns-detail {
        padding: 60px 0;
    }

    .ns-overview {
        padding: 60px 0;
    }
}

/* ===== CCW Booking Module ===== */

.ccw-book-section {
    padding: 4rem 0 6rem;
    background: var(--gray-50);
}

.ccw-book-layout {
    max-width: 100%;
}

.ccw-book-form {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* Progress bar */
.book-progress {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 2.5rem;
}

.book-progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.book-progress-step.active,
.book-progress-step.done {
    opacity: 1;
}

.book-progress-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.3s, color 0.3s;
}

.book-progress-step.active .book-progress-num {
    background: var(--primary);
    color: #fff;
}

.book-progress-step.done .book-progress-num {
    background: #10B981;
    color: #fff;
}

.book-progress-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
}

.book-progress-line {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    margin: 0 12px;
    min-width: 20px;
}

/* Steps */
.book-step {
    display: none;
}

.book-step-active {
    display: block;
    animation: bookFadeIn 0.35s ease;
}

@keyframes bookFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.book-step h2 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: var(--gray-900);
}

.book-step-desc {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Day selection */
.book-days {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.book-day {
    background: #fff;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.2rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.book-day:hover {
    border-color: var(--primary);
    background: rgba(230, 0, 30, 0.03);
}

.book-day.selected {
    border-color: var(--primary);
    background: rgba(230, 0, 30, 0.06);
    box-shadow: 0 0 0 3px rgba(230, 0, 30, 0.12);
}

.book-day-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-900);
}

.book-day-date {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.book-day-info {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 2px;
}

/* Duration toggle */
.book-duration-wrapper {
    margin-bottom: 1.5rem;
}

.book-duration-wrapper h3 {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 0.8rem;
}

.book-duration-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.book-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.9rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    background: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.25s;
}

.book-duration:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.book-duration.selected {
    border-color: var(--primary);
    background: rgba(230, 0, 30, 0.06);
    color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 0, 30, 0.12);
}

.book-duration svg {
    flex-shrink: 0;
}

/* Time slots */
.book-slots-wrapper h3 {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 0.8rem;
}

.book-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.book-slot {
    padding: 0.6rem 0.3rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    background: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.book-slot:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.book-slot.selected {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

/* Person selection */
.book-persons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.book-person {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s;
    text-align: left;
}

.book-person:hover {
    border-color: var(--primary);
    background: rgba(230, 0, 30, 0.02);
}

.book-person.selected {
    border-color: var(--primary);
    background: rgba(230, 0, 30, 0.05);
    box-shadow: 0 0 0 3px rgba(230, 0, 30, 0.12);
}

.book-person.unavailable {
    opacity: 0.55;
    cursor: pointer;
}

.book-person-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray-100);
}

.book-person-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-person-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.book-person-info strong {
    font-size: 1rem;
    color: var(--gray-900);
}

.book-person-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.book-person-status {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.book-person-status.status-free {
    background: #D1FAE5;
    color: #059669;
}

.book-person-status.status-taken {
    background: #FEE2E2;
    color: #DC2626;
}

/* Conflict hint */
.book-conflict {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem 1.2rem;
    background: #FFFBEB;
    border: 1px solid #FCD34D;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.book-conflict-icon {
    color: #D97706;
    flex-shrink: 0;
    margin-top: 2px;
}

.book-conflict-text {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.book-conflict-text strong {
    color: var(--gray-900);
}

.book-conflict-text span {
    display: block;
    margin-top: 0.3rem;
    color: var(--gray-500);
}

/* Form fields */
.book-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.book-form-fields .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.book-form-fields .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.book-form-fields label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.book-form-fields input,
.book-form-fields select,
.book-form-fields textarea {
    padding: 0.7rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--gray-900);
    transition: border-color 0.2s;
    background: #fff;
}

.book-form-fields input:focus,
.book-form-fields select:focus,
.book-form-fields textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 0, 30, 0.08);
}

/* Navigation buttons */
.book-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.book-nav .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.book-nav .btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Success */
.book-success-content {
    text-align: center;
    padding: 2rem 0;
}

.book-success-icon {
    margin-bottom: 1.5rem;
}

.book-summary {
    text-align: left;
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.book-summary-row {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.book-summary-row:last-child {
    border-bottom: none;
}

.book-summary-row strong {
    color: var(--gray-900);
    margin-right: 0.3rem;
}

/* Sidebar */
.ccw-book-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.book-sidebar-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.book-sidebar-card h3 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.book-sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.book-sidebar-item:last-child {
    border-bottom: none;
}

.book-sidebar-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

.book-sidebar-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    color: var(--gray-900);
}

.book-sidebar-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.book-sidebar-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 0.4rem 0;
}

.book-sidebar-info li svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .ccw-book-layout {
        grid-template-columns: 1fr;
    }

    .ccw-book-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .book-sidebar-card {
        flex: 1;
        min-width: 260px;
    }
}

@media (max-width: 600px) {
    .ccw-book-form {
        padding: 1.5rem 1rem;
    }

    .book-progress-label {
        display: none;
    }

    .book-days {
        grid-template-columns: 1fr;
    }

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

    .book-form-fields .form-row {
        grid-template-columns: 1fr;
    }

    .ccw-book-sidebar {
        flex-direction: column;
    }
}

/* ===== News / Blog (öffentlich) – Übersicht ===== */
.news-list-section {
    padding: 2.5rem 0 5.5rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 18%, var(--gray-50) 100%);
}

.news-empty {
    text-align: center;
    color: var(--gray-500);
    padding: 3rem 1rem;
    font-size: 1.05rem;
}

.news-list-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Lead-Karte (neuester Beitrag) */
.news-card--lead {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 320px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 24px rgba(26, 26, 46, 0.08);
    border: 1px solid var(--gray-100);
    transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.25s ease;
}

.news-card--lead:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(26, 26, 46, 0.12);
    border-color: rgba(65, 173, 220, 0.25);
}

.news-card--lead:hover .news-card-lead-media img {
    transform: scale(1.04);
}

.news-card-lead-media {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    background: var(--secondary);
}

.news-card-lead-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.news-card-lead-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: linear-gradient(145deg, var(--secondary) 0%, var(--primary-dark) 45%, var(--secondary-light) 100%);
    opacity: 0.95;
}

.news-card-lead-body {
    padding: clamp(1.5rem, 4vw, 2.75rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.news-card-lead-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    background: var(--primary);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
}

.news-card--lead .news-card-date {
    margin-top: 0.25rem;
}

.news-card-lead-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: var(--gray-900);
}

.news-card-lead-excerpt {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--gray-600);
    margin: 0;
    flex: 0 1 auto;
}

.news-card-lead-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.news-card-lead-cta svg {
    transition: transform 0.25s ease;
}

.news-card--lead:hover .news-card-lead-cta svg {
    transform: translateX(4px);
}

.news-list-subhead {
    padding-top: 0.25rem;
}

.news-list-subhead-title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin: 0;
    color: var(--gray-900);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.news-card--compact {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}

.news-card--compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 26, 46, 0.1);
    border-color: rgba(65, 173, 220, 0.2);
}

.news-card--compact:hover .news-card-image img {
    transform: scale(1.06);
}

.news-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gray-100);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.news-card-image-placeholder {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 50%, rgba(65, 173, 220, 0.08) 100%);
}

.news-card-body {
    padding: 1.2rem 1.35rem 1.45rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.news-card-date {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.news-card--compact .news-card-title {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    line-height: 1.35;
    margin: 0;
    color: var(--gray-900);
}

.news-card-excerpt {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.news-card-more {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .news-card--lead {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .news-card-lead-media {
        min-height: 220px;
        max-height: 280px;
    }

    .news-card-lead-placeholder {
        min-height: 220px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1100px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-article-section {
    padding: 2rem 0 5rem;
    background: var(--white);
}

.news-back {
    margin-bottom: 1.5rem;
}

.news-back-link {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.news-back-link:hover {
    text-decoration: underline;
}

.news-excerpt {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.rte-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gray-800);
}

.rte-content p {
    margin: 0 0 1rem;
}

.rte-content h2,
.rte-content h3,
.rte-content h4 {
    margin: 1.75rem 0 0.75rem;
    color: var(--gray-900);
}

.rte-content ul,
.rte-content ol {
    margin: 0 0 1rem 1.25rem;
}

.rte-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.rte-content .news-embed-video {
    margin: 1rem 0;
}

.rte-content video {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    display: block;
}

.rte-content .news-embed-video video {
    margin: 0;
}

.rte-content a {
    color: var(--primary);
}

/* ===========================================================================
   BPO MODULE STYLES (additive, prefix bpo-)
   Quelle: SSF2/ssf-site/css/styles.css, portiert für die SSF-PHP-Seiten
   Wird in modules/home.php und modules/auftraggeber.php verwendet
   =========================================================================== */

/* Outfit als BPO-spezifische Schrift (kollidiert nicht mit der Hauptschrift) */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('images/fonts/outfit-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
        U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
        U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('images/fonts/outfit-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
        U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
        U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* BPO Tokens – isoliert von den Haupttokens */
:root {
    --bpo-ink: #0d1928;
    --bpo-ink-soft: #515151;
    --bpo-accent: #41addc;
    --bpo-accent-dark: #308eb2;
    --bpo-bg: #faf9f5;
    --bpo-soft: #f0f4f8;
    --bpo-line-soft: rgba(13, 25, 40, 0.08);
    --bpo-line-strong: rgba(13, 25, 40, 0.15);
    --bpo-radius-sm: 8px;
    --bpo-radius-md: 12px;
    --bpo-radius-lg: 16px;
    --bpo-radius-xl: 24px;
    --bpo-radius-pill: 9999px;
    --bpo-t-fast: 0.2s ease;
    --bpo-t-med: 0.3s ease;
}

/* Wrapper – nur als Anker, damit alle bpo-* Komponenten konsistent rendern */
.bpo-section {
    padding: 100px 5vw;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}
.bpo-container {
    max-width: 1400px;
    margin: 0 auto;
}
.bpo-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--bpo-radius-pill);
    background: var(--bpo-accent);
    color: #fff;
    margin-bottom: 16px;
}
.bpo-eyebrow.is-outline {
    background: rgba(66, 172, 222, 0.12);
    border: 1px solid rgba(66, 172, 222, 0.25);
    color: var(--bpo-accent);
}
.bpo-section h2 {
    font-family: 'Outfit', sans-serif;
    color: var(--bpo-ink);
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0;
}

/* Buttons – im BPO-Modul */
.bpo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 30px;
    border-radius: var(--bpo-radius-pill);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--bpo-t-fast), color var(--bpo-t-fast),
        transform var(--bpo-t-fast), box-shadow var(--bpo-t-fast),
        border-color var(--bpo-t-fast);
}
.bpo-btn-primary {
    background: var(--bpo-accent);
    color: #fff;
}
.bpo-btn-primary:hover {
    background: var(--bpo-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(66, 172, 222, 0.4);
}
.bpo-btn-dark {
    background: var(--bpo-ink);
    color: #fff;
}
.bpo-btn-dark:hover {
    background: var(--bpo-accent);
}
.bpo-btn-ghost-dark {
    color: var(--bpo-ink);
    border: 1.5px solid var(--bpo-line-strong);
    background: transparent;
}
.bpo-btn-ghost-dark:hover {
    color: var(--bpo-accent);
    border-color: var(--bpo-accent);
}

/* ---------- Ticker ---------- */
.bpo-ticker {
    background: var(--bpo-ink);
    border-top: 1px solid rgba(66, 172, 222, 0.15);
    border-bottom: 1px solid rgba(66, 172, 222, 0.15);
    overflow: hidden;
    padding: 14px 0;
    font-family: 'Outfit', sans-serif;
}
.bpo-ticker-track {
    display: flex;
    width: max-content;
    animation: bpo-ticker 40s linear infinite;
}
.bpo-ticker-item {
    white-space: nowrap;
    padding: 0 36px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 36px;
}
.bpo-ticker-item .arrow { color: var(--bpo-accent); font-size: 7px; }
@keyframes bpo-ticker {
    to { transform: translateX(-50%); }
}

/* ---------- Services-Grid (6 Disziplinen) ---------- */
.bpo-services {
    background: var(--bpo-soft);
    padding: 100px 5vw;
    font-family: 'Outfit', sans-serif;
}
.bpo-services .bpo-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.bpo-services .bpo-header-row p {
    max-width: 360px;
    font-size: 16px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}
.bpo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}
.bpo-s-card {
    background: #fff;
    padding: 44px 36px;
    border: 1px solid var(--bpo-line-soft);
    border-radius: var(--bpo-radius-xl);
    transition: background var(--bpo-t-med), border-color var(--bpo-t-med),
        transform var(--bpo-t-med), box-shadow var(--bpo-t-med);
}
.bpo-s-card .bpo-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--bpo-accent);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.bpo-s-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--bpo-ink);
    letter-spacing: -0.02em;
    transition: color var(--bpo-t-med);
}
.bpo-s-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.75;
    margin: 0 0 24px;
    transition: color var(--bpo-t-med);
}
.bpo-s-card .bpo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.bpo-s-card .bpo-tag {
    padding: 4px 12px;
    border-radius: var(--bpo-radius-pill);
    font-size: 11px;
    font-weight: 700;
    background: rgba(66, 172, 222, 0.08);
    color: var(--bpo-accent);
    letter-spacing: 0.06em;
}
.bpo-s-card:hover {
    background: var(--bpo-ink);
    border-color: var(--bpo-ink);
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(13, 25, 40, 0.18);
}
.bpo-s-card:hover h3 { color: #fff; }
.bpo-s-card:hover p { color: rgba(255, 255, 255, 0.6); }
.bpo-s-card:hover .bpo-tag { background: rgba(66, 172, 222, 0.18); }

/* ---------- Stats Counter ---------- */
.bpo-stats {
    background: var(--bpo-ink);
    padding: 60px 5vw;
    font-family: 'Outfit', sans-serif;
}
.bpo-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}
.bpo-stats-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(66, 172, 222, 0.15);
    border-radius: var(--bpo-radius-xl);
    text-align: center;
    padding: 48px 32px;
    transition: background var(--bpo-t-med), border-color var(--bpo-t-med),
        transform var(--bpo-t-med);
}
.bpo-stats-item:hover {
    background: rgba(66, 172, 222, 0.08);
    border-color: rgba(66, 172, 222, 0.4);
    transform: translateY(-3px);
}
.bpo-stats-item .bpo-num {
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 900;
    color: var(--bpo-accent);
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    line-height: 1;
}
.bpo-stats-item .bpo-label {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.bpo-stats-item .bpo-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

/* ---------- 4-Schritte-Prozess ---------- */
.bpo-process {
    background: var(--bpo-soft);
    padding: 100px 5vw;
    font-family: 'Outfit', sans-serif;
}
.bpo-process .bpo-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.bpo-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}
.bpo-p-step {
    background: #fff;
    padding: 44px 36px;
    cursor: pointer;
    border: 1px solid var(--bpo-line-soft);
    border-radius: var(--bpo-radius-xl);
    transition: background var(--bpo-t-med), border-color var(--bpo-t-med),
        transform var(--bpo-t-med), box-shadow var(--bpo-t-med);
}
.bpo-p-step:hover { transform: translateY(-2px); }
.bpo-p-step .bpo-num {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 20px;
    color: rgba(13, 25, 40, 0.08);
    transition: color var(--bpo-t-med);
}
.bpo-p-step h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--bpo-ink);
    transition: color var(--bpo-t-med);
}
.bpo-p-step p {
    font-size: 14px;
    color: #888;
    line-height: 1.75;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease, color var(--bpo-t-med);
}
.bpo-p-step.is-active {
    background: var(--bpo-ink);
    border-color: var(--bpo-ink);
    box-shadow: 0 18px 38px rgba(13, 25, 40, 0.18);
}
.bpo-p-step.is-active .bpo-num { color: rgba(66, 172, 222, 0.18); }
.bpo-p-step.is-active h3 { color: #fff; }
.bpo-p-step.is-active p {
    max-height: 240px;
    opacity: 1;
    color: rgba(255, 255, 255, 0.65);
}

/* ---------- Branchen-Grid ---------- */
.bpo-branchen {
    background: var(--bpo-ink);
    padding: 100px 5vw;
    font-family: 'Outfit', sans-serif;
}
.bpo-branchen .bpo-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.bpo-branchen h2 { color: #fff; font-size: clamp(26px, 3vw, 44px); }
.bpo-branchen .bpo-header-row p {
    max-width: 320px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 0;
}
.bpo-branchen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
}
.bpo-branchen-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(66, 172, 222, 0.15);
    border-radius: var(--bpo-radius-md);
    padding: 24px 22px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    transition: background var(--bpo-t-fast), border-color var(--bpo-t-fast),
        color var(--bpo-t-fast), transform var(--bpo-t-fast);
}
.bpo-branchen-item:hover {
    background: rgba(66, 172, 222, 0.12);
    border-color: rgba(66, 172, 222, 0.4);
    color: var(--bpo-accent);
    transform: translateY(-2px);
}

/* ---------- Reveal-on-Scroll ---------- */
.bpo-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.bpo-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .bpo-services-grid { grid-template-columns: repeat(2, 1fr); }
    .bpo-branchen-grid { grid-template-columns: repeat(2, 1fr); }
    .bpo-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .bpo-section,
    .bpo-services,
    .bpo-process,
    .bpo-branchen { padding: 70px 5vw; }
    .bpo-services-grid,
    .bpo-process-grid,
    .bpo-branchen-grid { grid-template-columns: 1fr; }
    .bpo-stats-grid { grid-template-columns: 1fr 1fr; }
}
