/* ===== Lokale Fonts ===== */

/* Fraunces — Display/Headlines (kursiv 700 + 900) */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 700 900;
  font-display: swap;
  src: url('../fonts/fraunces-italic-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;
}

/* Fraunces — Display/Headlines (normal 700 + 900) */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url('../fonts/fraunces-normal-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;
}

/* DM Sans — Body (400 / 500 / 600) */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/dm-sans-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;
}

/* ===== CSS Variables - Enterprise Professional Light Theme ===== */
:root {
    /* Main Colors - new-ee Red Brand Palette */
    --primary-color: #FF3131;              /* new-ee Brand Red */
    --primary-hover: #E02828;              /* Darker Red */
    --primary-dark: #CC2020;               /* Deep Red */
    --primary-red: #FF3131;                /* Primary Red (same as brand) */
    --accent-green: #057642;               /* Professional Success Green */
    --accent-green-hover: #044d2b;         /* Darker Success Green */
    --accent-orange: #DF6919;              /* Professional Orange Accent */
    --accent-orange-hover: #B85415;        /* Darker Orange */

    /* Background Colors - Light & Clean */
    --bg-white: #FFFFFF;                   /* Pure White */
    --bg-light: #F3F6F8;                   /* Light Gray Background */
    --bg-lighter: #FAFBFC;                 /* Ultra Light Background */
    --bg-card: #FFFFFF;                    /* Card Background */

    /* Dark Theme Colors (for Modal) */
    --dark-bg: #1A1D23;                    /* Dark Background */
    --dark-bg-light: #252932;              /* Lighter Dark Background */
    --dark-bg-lighter: #2D3139;            /* Even Lighter Dark Background */

    /* Universal Colors */
    --white: #FFFFFF;                      /* Pure White */

    /* Text Colors - Dark on Light */
    --text-primary: #000000;               /* Primary Text - Black */
    --text-secondary: #313335;             /* Secondary Text - Dark Gray */
    --text-muted: #5E6567;                 /* Muted Text */
    --text-light: #86888A;                 /* Light Text */
    --text-gray: #8B92A0;                  /* Gray Text for Dark Backgrounds */
    --text-gray-dark: #6B7280;             /* Darker Gray Text */
    --text-on-dark: #E5E7EB;               /* High contrast text for dark backgrounds */
    --text-on-dark-muted: #D1D5DB;         /* Muted but readable on dark backgrounds */

    /* Border & Shadow - Subtle Professional */
    --border-color: #E6E9EC;               /* Light Border */
    --border-color-light: #D6DBDF;         /* Slightly Darker Border */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px 0 rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px 0 rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 4px 12px rgba(255, 49, 49, 0.15);
    --shadow-green: 0 4px 12px rgba(5, 118, 66, 0.15);
    --shadow-orange: 0 4px 12px rgba(223, 105, 25, 0.15);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography System */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --tracking-tight: -0.03em;

    /* Section Spacing */
    --section-padding: 7rem 0;
    --section-padding-sm: 5rem 0;
}

/* ===== Aurora Background (deaktiviert) ===== */
/* Aurora-Animation entfernt — weißer Hintergrund, kein Noise */
.aurora-background {
    display: none;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Accessibility ===== */
.skip-to-main {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    padding: 1rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.skip-to-main:focus {
    left: 0;
}

/* Focus visible for better keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #CC0000;
        --text-dark: #000000;
        --text-gray: #1a1a1a;
        --border-color: #000000;
    }
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation Modern - Light Professional ===== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.07);
    background: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    z-index: 1002;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    transition: var(--transition-fast);
    position: relative;
}

.logo:hover {
    color: var(--primary-color);
    transform: none;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    padding: 0.5rem 0.875rem;
    position: relative;
    transition: var(--transition-fast);
    border-radius: 6px;
    display: inline-block;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background-color: var(--bg-lighter);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: calc(100% - 1.75rem);
}

/* Nav Toggle (Hamburger) - hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-white);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 1001;
}

.nav-toggle:hover {
    border-color: var(--primary-color);
    background: var(--bg-lighter);
}

.nav-toggle[aria-expanded="true"] {
    border-color: var(--primary-color);
    background: rgba(255, 49, 49, 0.08);
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    margin: 0 auto;
    transition: var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        flex-direction: column;
        align-items: stretch;
        padding: 5.5rem 1.5rem 2rem;
        background: var(--bg-white);
        border-left: 1px solid var(--border-color);
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 0.25rem;
    }

    .nav-links.is-open {
        transform: translateX(0);
    }

    .nav-links li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links .btn-nav {
        margin-top: 1rem;
        text-align: center;
        justify-content: center;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

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

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

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

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

.btn-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-light:hover {
    background-color: transparent;
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}



/* ===== Value Section ===== */
.value-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: none;
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    border-color: rgba(255, 49, 49, 0.25);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===== Page Hero (Subpages) ===== */
.page-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ===== Benefits Section ===== */
.benefits-section {
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.benefit-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== Process Section ===== */
.process-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== Services Section ===== */
.services-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: none;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    border-color: rgba(255, 49, 49, 0.2);
    transform: translateY(-3px);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-detail p {
    color: var(--text-gray);
    margin: 0;
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-primary);
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: -0.5rem;
}

/* ===== Form Messages ===== */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.form-message.fade-out {
    animation: slideOut 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* ===== Footer ===== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
}

.footer-section a:hover {
    color: white;
}

.vision-text {
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .value-grid,
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .nav-links {
        font-size: 0.9rem;
        gap: 0.75rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* ===== Legal Pages ===== */
.legal-page {
    padding: 3rem 0 5rem;
    background-color: var(--dark-bg);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--dark-bg-lighter);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.legal-intro {
    font-size: 1.125rem;
    color: var(--text-on-dark);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: var(--text-on-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: var(--text-on-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--primary-hover);
}

.legal-note {
    background-color: rgba(255, 49, 49, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 49, 49, 0.25);
}

.legal-note p {
    color: var(--text-on-dark);
    margin: 0;
}

.legal-note strong {
    color: var(--white);
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.legal-footer p {
    color: var(--text-on-dark-muted);
    font-size: 0.9rem;
}

/* ===== Cookie Banner Modern - Light Professional ===== */
.cookie-banner-modern {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 900px;
    width: calc(100% - 2rem);
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(255, 49, 49, 0.15), 0 0 0 2px var(--primary-color);
    border: 2px solid var(--primary-color);
    z-index: 9999;
    padding: 2rem;
    animation: slideUpModern 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUpModern {
    from {
        transform: translateX(-50%) translateY(calc(100% + 2rem));
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.cookie-banner-hide-modern {
    animation: slideDownModern 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

@keyframes slideDownModern {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(calc(100% + 2rem));
        opacity: 0;
    }
}

.cookie-banner-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cookie-banner-content-modern {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.cookie-banner-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.cookie-banner-text-modern h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cookie-banner-text-modern p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
}

.cookie-banner-text-modern a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.cookie-banner-text-modern a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

.btn-outline-modern {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline-modern:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 49, 49, 0.15);
}

/* ===== Cookie Settings Modal Modern - Light Professional ===== */
.cookie-modal-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeInModern 0.3s ease;
}

@keyframes fadeInModern {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-modal-content-modern {
    background-color: #FFFFFF;
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(255, 49, 49, 0.2), 0 0 0 2px var(--primary-color);
    animation: scaleInModern 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleInModern {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.cookie-modal-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header-modern h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.cookie-modal-close-modern {
    background: transparent;
    border: 1px solid var(--border-color);
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close-modern:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

.cookie-modal-body-modern {
    padding: 2rem;
}

.cookie-category-modern {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-lighter);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.cookie-category-modern:last-child {
    margin-bottom: 0;
}

.cookie-category-header-modern {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.cookie-category-info-modern h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
}

.cookie-category-status-modern {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-category-description-modern {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
}

/* Toggle Switch Modern */
.cookie-switch-modern {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-switch-modern input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider-modern {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color-light);
    transition: var(--transition);
    border-radius: 28px;
    border: 1px solid var(--border-color);
}

.cookie-slider-modern:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-switch-modern input:checked + .cookie-slider-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-color: var(--primary-color);
}

.cookie-switch-modern input:checked + .cookie-slider-modern:before {
    transform: translateX(24px);
}

.cookie-switch-modern input:disabled + .cookie-slider-modern {
    background-color: var(--bg-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-modal-footer-modern {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    background-color: var(--bg-lighter);
}

/* ===== Responsive Legal & Cookie ===== */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .cookie-banner-modern {
        bottom: 1rem;
        width: calc(100% - 1rem);
        padding: 1.5rem;
    }

    .cookie-banner-container {
        gap: 1.5rem;
    }

    .cookie-banner-content-modern {
        flex-direction: column;
    }

    .cookie-banner-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-banner-actions .btn-modern {
        width: 100%;
        justify-content: center;
    }

    .cookie-modal-header-modern {
        padding: 1.5rem;
    }

    .cookie-modal-body-modern {
        padding: 1.5rem;
    }

    .cookie-modal-footer-modern {
        flex-direction: column;
        padding: 1.5rem;
    }

    .cookie-modal-footer-modern .btn-modern {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1.5rem 1rem;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .cookie-banner {
        padding: 1rem;
    }
}

/* ===== MODERN PROFESSIONAL DESIGN ===== */

/* Logo Styling Modern - Light Professional */
.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo Image Styles - Rot, transparenter Hintergrund (SVG) */
.logo-img {
    height: 44px;
    width: auto;
    display: block;
    transition: none; /* Logo soll crisp bleiben (kein hover-bedingtes Skalieren/Alpha) */
    background: transparent;
}

.logo:hover .logo-img {
    transform: none;
    opacity: 1;
}

/* Footer Logo Image */
.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
    filter: none; /* Keine CSS-Filter/Off-Colors auf dem Logo */
}

@media (max-width: 768px) {
    .logo-img {
        height: 38px;
    }

    .footer-logo-img {
        height: 42px;
    }
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #FFFFFF;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-primary);
    border: none;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 49, 49, 0.3);
    background-color: transparent;
}

/* Modern Hero Section - Typografisch, hell */
.hero-modern {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.12;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 251, 252, 0.88) 100%);
    overflow: hidden;
}

.hero-overlay-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    opacity: 0.8;
}

.hero-content-modern {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 4rem 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-label {
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1.75rem;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 49, 49, 0.07);
    border-radius: 4px;
    border: 1px solid rgba(255, 49, 49, 0.2);
    margin-left: auto;
    margin-right: auto;
}

.hero-title-modern {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1.08;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: var(--tracking-tight);
}

.hero-highlight {
    color: var(--primary-color);
    font-weight: 400;
    font-style: italic;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-cta-buttons .btn-modern {
    min-width: 200px;
}

.hero-tagline {
    font-size: 1.0625rem;
    opacity: 0.85;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
}

.hero-description {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust-icon {
    display: inline-flex;
    color: var(--accent-green);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.5rem;
}

.hero-cta-tertiary {
    flex: 0 0 100%;
    display: inline-flex;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.hero-cta-tertiary:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Modern Buttons – Flat, Consulting-Style */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 6px;
    border: 1.5px solid var(--primary-color);
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    /* Default: primary flat */
    background: var(--primary-color);
    color: #FFFFFF;
}

.btn-modern svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.btn-modern:hover svg {
    transform: translateX(3px);
}

.btn-modern:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(204, 32, 32, 0.22);
}

.btn-modern:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-primary-modern {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

.btn-primary-modern:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(204, 32, 32, 0.22);
}

.btn-primary-modern:active {
    transform: translateY(0);
}

.btn-secondary-modern {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}

.btn-secondary-modern:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(204, 32, 32, 0.18);
}

.btn-secondary-modern:active {
    transform: translateY(0);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    min-width: 200px;
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.cta-buttons-modern .btn-modern.btn-large {
    min-width: 220px;
}

.btn-outline:active {
    transform: translateY(0);
}

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 49, 49, 0.07);
    border-radius: 4px;
    border: 1px solid rgba(255, 49, 49, 0.2);
}

.section-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Override for dark backgrounds (contact section, CTA sections) */
.contact-section-modern .section-label,
.about-story-section .section-label,
.mission-vision-section .section-label {
    background: rgba(255, 49, 49, 0.2);
    border-color: rgba(255, 49, 49, 0.4);
}

.contact-section-modern .section-heading,
.about-story-section .section-heading,
.mission-vision-section .section-heading {
    color: var(--white);
}

.contact-section-modern .section-description {
    color: var(--text-on-dark);
}

/* Mission Section - Light Professional */
.mission-section {
    padding: 5.5rem 0;
    background-color: var(--bg-light);
}


.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.mission-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-content .section-label {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
}

.mission-content .section-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.mission-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.mission-text.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* München Bento Section - zentriert, Bento-Grid */
.munich-bento-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

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

.munich-bento__header {
    margin-bottom: 2rem;
}

.munich-bento__header .section-label {
    margin-bottom: 0.75rem;
}

.munich-bento__header .section-heading {
    margin: 0 auto;
    max-width: 720px;
    text-align: center;
}

.munich-bento__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    text-align: left;
}

.munich-bento__cell {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.munich-bento__cell:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 49, 49, 0.2);
}

.munich-bento__title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
}

.munich-bento__cell p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

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

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2.25rem;
    align-items: stretch;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 560px;
    align-self: center;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(14px);
    will-change: transform, opacity;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.35rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.55rem;
    box-shadow: none;
    transition:
        opacity 500ms ease,
        transform 500ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease,
        background-color 220ms ease;
}

.stat-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    transform: translateY(6px) scale(0.98);
    transition: transform 500ms ease;
}

.stat-item.animate-in .stat-number {
    transform: translateY(0) scale(1);
}

.stat-label {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 650;
    line-height: 1.35;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(255, 49, 49, 0.25);
    background: var(--bg-white);
}

.mission-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Ratgeber-Sektion – Editorial Grid ===== */
.values-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.values-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* Editorial 2x2 Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem 2rem;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    background: var(--bg-white);
    transition: background 0.15s ease;
    opacity: 0;
    transform: translateY(12px);
    cursor: pointer;
}

.value-item.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.value-item:nth-child(1) { transition-delay: 0.05s; }
.value-item:nth-child(2) { transition-delay: 0.1s; }
.value-item:nth-child(3) { transition-delay: 0.15s; }
.value-item:nth-child(4) { transition-delay: 0.2s; }

.value-item:hover {
    background: var(--bg-lighter);
    transform: none;
    box-shadow: none;
    border-color: var(--border-color);
}

.value-item:hover .editorial-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
    display: inline-block;
}

a.value-item-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.value-item-link:hover {
    border-color: var(--primary-color);
}

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

.value-icon-modern {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 49, 49, 0.15) 0%, rgba(255, 49, 49, 0.08) 100%);
    border-radius: 10px;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 49, 49, 0.25);
}

.value-item:hover .value-icon-modern {
    background: linear-gradient(135deg, rgba(255, 49, 49, 0.25) 0%, rgba(255, 49, 49, 0.15) 100%);
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: left;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(255, 49, 49, 0.2);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item-modern {
    margin-bottom: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.faq-item-modern:hover {
    border-color: rgba(255, 49, 49, 0.2);
}

.faq-item-modern[open] {
    border-color: rgba(255, 49, 49, 0.3);
}

.faq-item-modern summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq-item-modern summary::-webkit-details-marker {
    display: none;
}

.faq-item-modern summary::after {
    content: '+';
    float: right;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.faq-item-modern[open] summary::after {
    content: '−';
}

.faq-item-modern p {
    margin: 1rem 0 0 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.value-icon-modern svg {
    color: var(--primary-color);
    width: 28px;
    height: 28px;
}

.value-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.value-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Process Section Modern - Light Professional */
.process-section-modern {
    padding: 5.5rem 0;
    background-color: var(--bg-light);
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    text-align: center;
    grid-column: span 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-item:nth-child(4) { transition-delay: 0.4s; }
.timeline-item:nth-child(5) { transition-delay: 0.5s; }
.timeline-item:nth-child(6) { transition-delay: 0.6s; }
.timeline-item:nth-child(7) { transition-delay: 0.7s; }

.timeline-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-primary);
}

.timeline-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.timeline-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.timeline-connector {
    grid-column: span 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.timeline-connector::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-hover) 100%);
}

/* ===== Premium Process Layout (Homepage) ===== */
.process-timeline--premium {
    position: relative;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
    max-width: 1180px;
    align-items: stretch;
}

.process-timeline--premium::before {
    content: "";
    position: absolute;
    left: 3%;
    right: 3%;
    top: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 49, 49, 0.09), rgba(255, 49, 49, 0.22), rgba(255, 49, 49, 0.09));
    pointer-events: none;
}

.process-timeline--premium .timeline-item {
    position: relative;
    z-index: 1;
    text-align: left;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.15rem 1.1rem 1.2rem;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 520ms ease,
        transform 520ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.process-timeline--premium .timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.process-timeline--premium .timeline-item:nth-child(1) { transition-delay: 0.08s; }
.process-timeline--premium .timeline-item:nth-child(2) { transition-delay: 0.16s; }
.process-timeline--premium .timeline-item:nth-child(3) { transition-delay: 0.24s; }
.process-timeline--premium .timeline-item:nth-child(4) { transition-delay: 0.32s; }

.process-timeline--premium .timeline-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 49, 49, 0.2);
}

.process-timeline--premium .timeline-number {
    width: 38px;
    height: 38px;
    margin: 0 0 0.9rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    background: rgba(255, 49, 49, 0.1);
    color: var(--primary-color);
    box-shadow: none;
    border: 1px solid rgba(255, 49, 49, 0.25);
}

.process-timeline--premium .timeline-item h3 {
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin-bottom: 0.55rem;
}

.process-timeline--premium .timeline-item p {
    font-size: 0.935rem;
    line-height: 1.58;
    color: var(--text-secondary);
    margin: 0;
    max-width: 34ch;
}

@media (prefers-reduced-motion: reduce) {
    .process-timeline--premium .timeline-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* CTA Section Modern */
.cta-section-modern {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content-modern {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-modern h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content-modern p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Modern - Light Professional */
.footer-modern {
    background-color: var(--text-primary);
    color: #FFFFFF;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content-modern {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.footer-tagline {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-style: italic;
}

.footer-location {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

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

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-links-section h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.footer-links-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-section li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-links-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links-section a:hover {
    color: #FFFFFF;
}

.footer-bottom-modern {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom-modern p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-timeline--premium {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .process-timeline--premium::before {
        display: none;
    }

    .timeline-connector {
        display: none;
    }

    .footer-content-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 0.25rem;
    }

    .nav-links a {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .btn-nav {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .hero-modern {
        min-height: 80vh;
    }

    .hero-content-modern {
        padding: 3rem 0;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-group .btn-modern {
        width: 100%;
    }

    .hero-cta-tertiary {
        text-align: center;
    }

    .btn-modern {
        width: 100%;
        justify-content: center;
    }

    .mission-section,
    .values-section,
    .process-section-modern,
    .cta-section-modern {
        padding: 4rem 0;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.1rem 0.9rem;
        border-radius: 16px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.92rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons-modern {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }
}

/* ===== Subpage Hero ===== */
.hero-subpage {
    min-height: 60vh;
}

/* ===== Contact Section Modern - Dark Theme ===== */
.contact-section-modern {
    padding: 8rem 0;
    background-color: var(--dark-bg);
}

.contact-wrapper-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info-modern {
    position: sticky;
    top: 100px;
}

.contact-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-on-dark);
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.contact-details-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-modern {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.contact-detail-modern strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.contact-detail-modern p {
    font-size: 0.9375rem;
    color: var(--text-on-dark-muted);
    margin: 0;
}

.contact-detail-modern a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-detail-modern a:hover {
    color: var(--primary-hover);
}

/* Contact Form Modern - Dark Theme */
.contact-form-wrapper-modern {
    background-color: var(--dark-bg-lighter);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-modern .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form-modern label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--white);
    background-color: var(--dark-bg-light);
    transition: var(--transition-fast);
}

.contact-form-modern input:focus,
.contact-form-modern select:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.15);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

/* Responsive Contact Section */
@media (max-width: 1024px) {
    .contact-wrapper-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-modern {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .contact-section-modern {
        padding: 4rem 0;
    }

    .contact-form-wrapper-modern {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-details-modern {
        gap: 1.5rem;
    }
}

/* ==========================================
   APPLICATION MODAL STYLES
   Modern pop-up forms for talent and companies
   ========================================== */

.application-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: modalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.application-modal.modal-closing {
    animation: modalFadeOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.application-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.application-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Custom scrollbar for modal */
.application-modal-content::-webkit-scrollbar {
    width: 10px;
}

.application-modal-content::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 0 16px 16px 0;
}

.application-modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
    opacity: 0.3;
}

.application-modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

.application-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.application-modal-close:hover {
    background: var(--bg-lighter);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.application-modal-header {
    padding: 3rem 3rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.application-modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.application-modal-header p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Application Form Styles */
.application-form {
    padding: 2rem 3rem 3rem;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
    padding-bottom: 0;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title::before {
    content: '';
    width: 3px;
    height: 1.25rem;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.application-form .form-group {
    margin-bottom: 1.5rem;
}

.application-form label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.application-form input,
.application-form select,
.application-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.application-form input::placeholder,
.application-form textarea::placeholder {
    color: var(--text-muted);
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(255, 49, 49, 0.1);
}

.application-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.application-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23FF3131' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.link-modern {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.link-modern:hover {
    text-decoration: underline;
    text-decoration-color: rgba(255, 49, 49, 0.6);
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .form-actions .btn-modern {
        width: 100%;
        justify-content: center;
    }
}

.form-help {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.privacy-checkbox {
    padding: 1rem;
    background: rgba(255, 49, 49, 0.05);
    border: 1px solid rgba(255, 49, 49, 0.2);
    border-radius: 8px;
    font-weight: 400;
}

.privacy-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-checkbox a:hover {
    color: var(--primary-hover);
}

/* File Upload Styles */
.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    background: var(--bg-lighter);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: rgba(255, 49, 49, 0.05);
}

.file-upload-label svg {
    color: var(--primary-color);
}

.file-upload-label span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

.file-input {
    display: none;
}

/* Form Actions (Bewerbungsmodal) */
.application-modal .form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.application-modal .form-actions .btn-modern {
    flex: 1;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .application-modal {
        padding: 1rem;
    }

    .application-modal-content {
        max-height: 95vh;
        border-radius: 12px;
    }

    .application-modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .application-modal-header h2 {
        font-size: 1.5rem;
    }

    .application-modal-header p {
        font-size: 0.9375rem;
    }

    .application-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .form-actions .btn-modern {
        width: 100%;
    }

    .application-modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .application-modal-header h2 {
        font-size: 1.25rem;
    }

    .form-section-title {
        font-size: 1.125rem;
    }

    .checkbox-group {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ==========================================
   CALL TO ACTION STYLES
   Modern CTA sections for talent and company pages
   ========================================== */

.cta-talent-wrapper,
.cta-company-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-talent-content,
.cta-company-content {
    padding: 4rem 2rem;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-on-dark);
    line-height: 1.8;
    margin: 0 0 3rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--white);
    font-weight: 500;
}

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

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-on-dark-muted);
}

.cta-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-note a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cta-talent-content,
    .cta-company-content {
        padding: 3rem 1.5rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 2rem;
    }

    .btn-large {
        width: 100%;
        font-size: 1rem;
    }
}

/* ==========================================
   ABOUT PAGE STYLES
   Über uns page sections
   ========================================== */

/* About Story Section */
.about-story-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-on-dark);
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--white);
    font-weight: 600;
}

.about-story-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 49, 49, 0.1), transparent);
    z-index: 1;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: var(--dark-bg-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-box {
    background: rgba(46, 46, 46, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 254, 254, 0.08);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 49, 49, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
}

.mission-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.mission-box p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-on-dark);
}

/* Why Us Section */
.why-us-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.why-us-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-us-item {
    text-align: left;
    padding: 2rem;
    background: rgba(46, 46, 46, 0.3);
    border: 1px solid rgba(254, 254, 254, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-us-item:hover {
    background: rgba(46, 46, 46, 0.5);
    border-color: rgba(255, 49, 49, 0.4);
    transform: translateY(-4px);
}

.why-us-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.why-us-item h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.why-us-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-on-dark);
}

/* Founder Section */
.founder-section {
    padding: 6rem 0;
    background: var(--dark-bg-light);
}

.founder-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(46, 46, 46, 0.4);
    border: 2px solid rgba(254, 254, 254, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray-dark);
}

.founder-content {
    padding-top: 1rem;
}

.founder-title {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.founder-bio {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-on-dark);
    margin-bottom: 1.5rem;
}

.founder-bio strong {
    color: var(--white);
    font-weight: 600;
}

.founder-quote {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 49, 49, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    position: relative;
}

.founder-quote svg {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.founder-quote p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--white);
    font-style: italic;
    margin: 0;
    padding-left: 3rem;
}

/* About CTA Section */
.about-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-bg-light) 0%, var(--dark-bg) 100%);
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-cta-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-on-dark);
    margin-bottom: 3rem;
}

.about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-buttons .btn-modern {
    min-width: 220px;
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .about-story-grid,
    .mission-vision-grid,
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-image-placeholder {
        max-width: 350px;
        margin: 0 auto;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-story-section,
    .mission-vision-section,
    .why-us-section,
    .founder-section,
    .about-cta-section {
        padding: 4rem 0;
    }

    .mission-box {
        padding: 2rem;
    }

    .about-cta-content h2 {
        font-size: 2rem;
    }

    .about-cta-content p {
        font-size: 1.0625rem;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-cta-buttons .btn-modern {
        width: 100%;
    }

    .founder-quote p {
        font-size: 1rem;
        padding-left: 2rem;
    }
}

/* ============================================
   Toast Messages for Form Submissions
   ============================================ */
.toast-message {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--dark-bg-light);
    border: 1px solid rgba(254, 254, 254, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    z-index: 10001;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: toast-slide-in 0.3s ease-out;
}

.toast-message svg {
    flex-shrink: 0;
}

.toast-message span {
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.toast-success {
    border-left: 4px solid #4ade80;
}

.toast-success svg {
    stroke: #4ade80;
}

.toast-error {
    border-left: 4px solid var(--accent-orange);
}

.toast-error svg {
    stroke: var(--accent-orange);
}

.toast-fade-out {
    animation: toast-fade-out 0.3s ease-in forwards;
}

@keyframes toast-slide-in {
    from {
        transform: translateX(calc(100% + 2rem));
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toast-fade-out {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(calc(100% + 2rem));
    }
}

@media (max-width: 768px) {
    .toast-message {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* ============================================
   Jobs (Börse, Detail, Admin)
   ============================================ */
.jobs-page {
    --job-radius: 18px;
}

.jobs-hero {
    margin-bottom: 1.25rem;
}

.filters-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.filters-actions .btn-modern {
    width: 100%;
    justify-content: center;
}

.jobs-resultsHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0;
    margin-bottom: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.jobs-resultsTitle {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.jobs-empty {
    padding: 1.25rem;
}

.home-jobs-search {
    padding: 2.5rem 0 5rem;
    background: var(--bg-lighter);
}

.home-jobs-search-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2.25rem;
}

.home-jobs-search-header {
    max-width: 820px;
    margin: 0 auto 2rem;
    text-align: center;
}

.home-jobs-search-header .section-label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.home-jobs-search .jobs-toolbar--home {
    margin: 0;
    grid-template-columns: 1fr 1fr 200px auto;
}

.home-jobs-search .jobs-toolbar--home input,
.home-jobs-search .jobs-toolbar--home select {
    padding: 0.9rem 1rem;
}

@media (max-width: 1024px) {
    .home-jobs-search .jobs-toolbar--home {
        grid-template-columns: 1fr 1fr auto;
    }
}

@media (max-width: 768px) {
    .home-jobs-search {
        padding: 1.25rem 0 2.5rem;
    }
    .home-jobs-search-card {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .home-jobs-search .jobs-toolbar--home {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
    .home-jobs-search .jobs-toolbar--home button {
        width: 100%;
    }
}

/* ===== Job-Karussell (Home) ===== */
.jobs-carousel-wrapper {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.jobs-carousel-header {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
}

.jobs-carousel-header .section-label {
    display: inline-block;
    margin-bottom: 0.25rem;
}

.jobs-carousel-header .section-heading {
    margin: 0;
    font-size: 1.35rem;
}

.jobs-carousel-subtitle {
    margin: 0.05rem 0 0;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 780px;
}

.jobs-carousel-nav {
    display: flex;
    gap: 0.5rem;
}

.jobs-carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-white);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.jobs-carousel-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    background: var(--bg-light);
    color: var(--primary-color);
}

.jobs-carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.jobs-carousel-viewport {
    overflow: hidden;
    margin: 0;
    padding: 0 0.5rem;
}

.jobs-carousel-track {
    display: flex;
    align-items: stretch;
    --jobs-carousel-gap: 1rem;
    gap: var(--jobs-carousel-gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
    scrollbar-width: none;
}

.jobs-carousel-track::-webkit-scrollbar {
    display: none;
}

.jobs-carousel-track .job-card {
    flex: 0 0 100%;
    width: 100%;
    height: 340px;
    min-height: 340px;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .jobs-carousel-track .job-card {
        flex: 0 0 calc((100% - var(--jobs-carousel-gap)) / 2);
        width: calc((100% - var(--jobs-carousel-gap)) / 2);
        height: 300px;
        min-height: 300px;
    }
}

@media (min-width: 1024px) {
    .jobs-carousel-track .job-card {
        flex: 0 0 calc((100% - (2 * var(--jobs-carousel-gap))) / 3);
        width: calc((100% - (2 * var(--jobs-carousel-gap))) / 3);
        height: 290px;
        min-height: 290px;
    }
}

.jobs-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.25rem 0 0;
}

.jobs-carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    padding: 0;
    cursor: pointer;
    transition: width 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.jobs-carousel-dots button[aria-selected="true"] {
    width: 18px;
    background: var(--primary-color);
    border-color: rgba(255, 49, 49, 0.35);
    transform: translateY(-1px);
}

.jobs-carousel-dots button:focus-visible {
    outline: none;
    box-shadow: var(--shadow-primary);
    border-color: rgba(255, 49, 49, 0.5);
}

.jobs-carousel-dots + .jobs-carousel-footer {
    margin-top: 0.85rem;
}

.jobs-carousel-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.jobs-toolbar {
    display: grid;
    grid-template-columns: 1fr 1fr 220px auto;
    gap: 0.75rem;
    align-items: end;
    margin: 1.25rem 0 1.5rem;
}

.jobs-toolbar--filters {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 0;
    margin-bottom: 1.75rem;
    align-items: end;
}

.jobs-toolbar .form-group {
    margin: 0;
}

.jobs-toolbar input,
.jobs-toolbar select {
    width: 100%;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    background: var(--bg-lighter);
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition-fast);
    height: 3rem;
}

.jobs-toolbar input::placeholder {
    color: var(--text-light);
}

.jobs-toolbar input:focus,
.jobs-toolbar select:focus {
    outline: none;
    background: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.1);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
}

.jobs-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 1.1rem;
    margin-top: 1rem;
    align-items: start;
}

.jobs-filters {
    position: sticky;
    top: 88px;
    z-index: 1;
}

.jobs-grid--list {
    grid-template-columns: 1fr;
}

.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.35rem 1.35rem 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 49, 49, 0.25);
}

.job-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(255, 49, 49, 0.9), rgba(255, 49, 49, 0.25));
    opacity: 0.55;
}

.job-card:hover::before {
    opacity: 0.9;
}

.job-card__top {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.job-card__title {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.job-card__titleLink {
    color: var(--text-primary);
    text-decoration: none;
}

.job-card__titleLink:hover {
    text-decoration: underline;
    text-decoration-color: rgba(255, 49, 49, 0.6);
}

.job-card__body {
    flex: 1;
}

.job-card__excerpt {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-card__actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.25rem;
}

.job-card__actions .btn-modern {
    white-space: nowrap;
}

/* ===== Premium Job Carousel Cards ===== */
.job-card--carousel {
    opacity: 1;
    transform: translateY(12px);
    transition:
        opacity 500ms ease,
        transform 500ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.job-card--carousel.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.job-card--carousel::before {
    width: 3px;
    opacity: 0.35;
}

.job-card--carousel:hover::before {
    opacity: 0.65;
}

.job-card--carousel .job-card__top {
    min-height: 5.35rem; /* Reserve for pills + up to 2 title lines */
}

.job-card--carousel .job-card__titleLink {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.job-card--carousel .job-card__body {
    flex: 1;
}

.job-card--carousel .job-card__excerpt {
    -webkit-line-clamp: 2;
    min-height: 4.1em;
}

.job-card--carousel .job-card__actions {
    margin-top: auto;
    justify-content: flex-end;
}

.job-card--carousel .job-card__cta {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1rem;
}

.job-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.job-card__meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.job-card__meta-sep {
    opacity: 0.45;
}

@media (prefers-reduced-motion: reduce) {
    .job-card--carousel {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.apply-for {
    padding: 1rem 1rem 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: var(--bg-lighter);
    margin-bottom: 1rem;
}

.job-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--bg-lighter);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.job-pill--type {
    border-color: rgba(255, 49, 49, 0.35);
    background: rgba(255, 49, 49, 0.08);
    color: var(--primary-color);
}

.job-pill--model {
    border-color: rgba(5, 118, 66, 0.25);
    background: rgba(5, 118, 66, 0.06);
    color: #057642;
}

.job-pill--time {
    border-color: rgba(223, 105, 25, 0.25);
    background: rgba(223, 105, 25, 0.06);
    color: var(--accent-orange);
}

.job-pill--location {
    background: var(--bg-lighter);
}

.job-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.job-cta-box {
    position: sticky;
    top: 96px;
    background: var(--bg-white);
    border-color: var(--border-color);
    border-top: 3px solid var(--primary-color);
    padding: 2rem;
}

.job-share-actions {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.job-share-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.job-share-actions .btn-modern {
    width: 100%;
    justify-content: center;
}

.job-trust-cues {
    background: var(--bg-lighter);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.125rem;
    margin-top: 1.25rem;
}

.job-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 2.25rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 4px 20px rgba(0, 0, 0, 0.07);
}

.job-panel h1,
.job-panel h2,
.job-panel h3 {
    color: var(--text-primary);
}

.job-md {
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 72ch;
}

.job-md p {
    margin: 0 0 0.95rem;
}

.job-md p:last-child {
    margin-bottom: 0;
}

.job-md h2 {
    margin-top: 2.25rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    padding-left: 0.9rem;
    border-left: 3px solid var(--primary-color);
    line-height: 1.35;
}

.job-md h3 {
    margin-top: 1.25rem;
    font-size: 1.05rem;
}

.job-md ul {
    padding-left: 0;
    margin: 0.875rem 0 1.5rem;
    list-style: none;
}

.job-md ol {
    padding-left: 1.35rem;
    margin: 0.5rem 0 1rem;
    list-style: decimal;
}

.job-md li {
    padding-left: 1.4rem;
    position: relative;
    margin: 0.5rem 0;
    line-height: 1.65;
}

.job-md a {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: rgba(255, 49, 49, 0.45);
    text-underline-offset: 2px;
}

.job-skeleton {
    opacity: 0.95;
}

.job-skeleton-line {
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 49, 49, 0.12), rgba(255, 255, 255, 0.1));
    background-size: 200% 100%;
    animation: skeletonShimmer 1.2s ease-in-out infinite;
    margin: 0.5rem 0;
}

.job-skeleton-block {
    height: 14px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 49, 49, 0.12), rgba(255, 255, 255, 0.1));
    background-size: 200% 100%;
    animation: skeletonShimmer 1.2s ease-in-out infinite;
    margin: 0.6rem 0;
}

.job-error-state {
    border-left: 4px solid rgba(255, 49, 49, 0.45);
    background: rgba(255, 49, 49, 0.07);
    padding: 1rem 1rem;
    border-radius: 14px;
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   Job Detail – Premium Enhancements
   ============================================ */

/* Jobtitel – groß, bold, display */
#jobTitle {
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

/* Zurück-Link – ghost / subtil */
#jobBack.btn-modern {
    padding: 0.3rem 0;
    background: transparent;
    border-color: transparent;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: none;
    gap: 0.35rem;
}

#jobBack.btn-modern:hover {
    background: transparent;
    border-color: transparent;
    color: var(--primary-color);
    transform: none;
    box-shadow: none;
}

/* Sidebar CTA-Buttons – full-width & premium */
.job-cta-box .btn-primary-modern {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(255, 49, 49, 0.22);
    letter-spacing: 0.01em;
}

.job-cta-box .btn-primary-modern:hover {
    box-shadow: 0 6px 22px rgba(204, 32, 32, 0.3);
}

/* Share-Buttons – leichter & kompakter */
.job-cta-box .btn-secondary-modern.btn-compact {
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-color: var(--border-color);
    background: var(--bg-lighter);
}

.job-cta-box .btn-secondary-modern.btn-compact:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    border-color: rgba(255, 49, 49, 0.35);
    box-shadow: none;
}

/* Ansprechperson Label – caps style */
.job-trust-cues p:first-child strong {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

/* Custom Bullet-Punkte – kleine rote Kreise */
.job-md ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.6;
}

/* Sidebar padding auf Mobile reduzieren */
@media (max-width: 768px) {
    .job-cta-box {
        padding: 1.5rem;
    }

    .job-panel {
        padding: 1.5rem;
    }
}

/* ============================================
   Jobs-Börse – Premium Redesign
   ============================================ */

/* Submit-Button über volle Breite */
.jobs-toolbar--filters button[type="submit"] {
    grid-column: 1 / -1;
    padding: 1rem 2.25rem;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(255, 49, 49, 0.2);
    letter-spacing: 0.01em;
}

.jobs-toolbar--filters button[type="submit"]:hover {
    box-shadow: 0 6px 20px rgba(204, 32, 32, 0.28);
}

/* Formular-Labels – klein, caps, strukturiert */
.jobs-toolbar .form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

/* Sort-Select im Ergebnisbereich */
#jobsSort {
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 0.4rem 0.7rem;
    font-size: 0.875rem;
    background: var(--bg-white);
    color: var(--text-secondary);
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition-fast);
}

#jobsSort:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.1);
}

/* Jobkarten in Listenansicht */
.jobs-grid--list .job-card {
    padding: 1.5rem 1.75rem;
    border-radius: 14px;
    gap: 0.7rem;
}

.jobs-grid--list .job-card__title {
    font-size: 1.15rem;
}

/* Pagination – sauber und zentriert */
.home-jobs-search-card .admin-topbar {
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1.25rem;
    margin-top: 1.5rem !important;
    border-top: 1px solid var(--border-color);
}

#jobsPageInfo {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    min-width: 120px;
    text-align: center;
}

/* Mobile: Card-Padding reduzieren */
@media (max-width: 768px) {
    .home-jobs-search-card {
        padding: 1.5rem 1.25rem;
        border-radius: 18px;
    }

    .jobs-toolbar--filters {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
}

/* ≤480px: 1-Spalte für Formular */
@media (max-width: 480px) {
    .jobs-toolbar--filters {
        grid-template-columns: 1fr;
    }
}

/* ===== Bewerbung – Premium Redesign ===== */

/* Page heading */
.home-jobs-search .job-panel > h1 {
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

/* Job reference description */
.home-jobs-search .job-panel .section-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    line-height: 1.55;
}

/* Back-to-job link — ghost style */
#backToJob {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
#backToJob:hover {
    color: var(--primary-color);
    border-bottom-color: rgba(255, 49, 49, 0.35);
    text-decoration: none;
}

/* Divider between header and form */
#applyForm {
    border-top: 1px solid var(--border-color);
    padding-top: 1.75rem;
    margin-top: 0.25rem;
}

/* Form group spacing */
#applyForm .form-group {
    margin-bottom: 0.75rem;
}

/* Labels — uppercase micro-text */
#applyForm .form-group > label:not(:has(input[type="checkbox"])) {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    margin-bottom: 0.45rem;
}

/* Text/email/tel/url inputs + select + textarea */
#applyForm .form-group input:not([type="checkbox"]):not([type="file"]),
#applyForm .form-group select,
#applyForm .form-group textarea {
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    height: 3rem;
    padding: 0 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    background: var(--bg-lighter);
    color: var(--text-primary);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

#applyForm .form-group textarea {
    height: auto;
    padding: 0.875rem 1rem;
    resize: vertical;
    min-height: 140px;
}

#applyForm .form-group input:not([type="checkbox"]):not([type="file"]):focus,
#applyForm .form-group select:focus,
#applyForm .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.1);
    background: var(--bg-white);
}

/* File input — dashed drop zone feel */
#applyForm .form-group input[type="file"] {
    padding: 0.7rem 1rem;
    height: auto;
    border: 1.5px dashed var(--border-color);
    border-radius: 10px;
    background: var(--bg-lighter);
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: border-color 0.2s, background 0.2s;
}
#applyForm .form-group input[type="file"]:hover {
    border-color: rgba(255, 49, 49, 0.5);
    background: var(--bg-white);
}

/* Form help text */
#applyForm .form-help {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

/* DSGVO checkbox row */
#applyForm .form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.875rem 1rem;
    background: var(--bg-lighter);
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    transition: border-color 0.2s;
    line-height: 1.55;
}
#applyForm .form-group label:has(input[type="checkbox"]):hover {
    border-color: rgba(255, 49, 49, 0.4);
}
#dsgvo {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
    accent-color: var(--primary-color);
    cursor: pointer;
}

/* Submit / Back actions */
#applyForm .admin-actions {
    margin-top: 1.75rem;
    gap: 0.75rem;
    align-items: center;
}
#applyForm .admin-actions .btn-primary-modern {
    flex: 1;
    justify-content: center;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(255, 49, 49, 0.22);
    letter-spacing: 0.01em;
}
#applyForm .admin-actions .btn-secondary-modern {
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
}

/* Status message */
#applyStatus:not(:empty) {
    padding: 0.875rem 1rem;
    border-radius: 10px;
    border: 1.5px solid var(--border-color);
    background: var(--bg-lighter);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* Inline 2-column grid gap for name/contact row */
#applyForm .jobs-toolbar {
    gap: 1rem;
    margin: 0 0 0.75rem;
}

/* Mobile */
@media (max-width: 640px) {
    #applyForm .jobs-toolbar {
        grid-template-columns: 1fr !important;
    }
    #applyForm .admin-actions {
        flex-direction: column;
    }
    #applyForm .admin-actions .btn-primary-modern,
    #applyForm .admin-actions .btn-secondary-modern {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .jobs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .jobs-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .jobs-filters {
        position: relative;
        top: auto;
    }

    .job-detail {
        grid-template-columns: 1fr;
    }

    .jobs-resultsHeader {
        align-items: center;
        flex-wrap: wrap;
    }

    .jobs-toolbar {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
    }

    .jobs-toolbar--filters {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .job-card__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .job-card__actions .btn-modern {
        width: 100%;
        justify-content: center;
    }

    .filters-actions {
        grid-template-columns: 1fr;
    }

    .process-timeline--premium {
        grid-template-columns: 1fr;
    }

    .process-timeline--premium .timeline-item {
        text-align: left;
        padding: 1rem;
    }

    .process-timeline--premium .timeline-item p {
        max-width: none;
    }
}

.admin-shell {
    margin-top: 1.25rem;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-rich-editor {
    min-height: 180px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.admin-rich-editor .ql-container {
    font-size: 0.95rem;
    min-height: 140px;
}

.admin-rich-editor .ql-editor {
    min-height: 140px;
}

.form-help {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: -0.25rem 0 0.5rem;
}

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.admin-table th,
.admin-table td {
    padding: 0.85rem 0.9rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.admin-table th {
    background: var(--bg-lighter);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.admin-empty-row td {
    padding: 1.25rem 0.9rem;
    text-align: center;
    color: var(--text-secondary);
    font-weight: 500;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-compact {
    padding: 0.55rem 0.8rem !important;
    border-radius: 10px !important;
    font-size: 0.925rem !important;
}

.editor-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 1.25rem;
    align-items: start;
}

.editor-preview {
    position: sticky;
    top: 96px;
    max-height: calc(100vh - 140px);
    overflow: auto;
}

.editor-toolbar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

@media (max-width: 1024px) {
    .editor-grid {
        grid-template-columns: 1fr;
    }
    .editor-preview {
        position: relative;
        top: auto;
        max-height: none;
    }
}

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

/* ============================================
   NEU: STAT-BAR — 4 Kennzahlen horizontal
   ============================================ */
.stat-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    margin: 2.5rem 0;
}

.stat-bar__item {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.stat-bar__item:last-child {
    border-right: none;
}

.stat-bar__item:hover {
    background: var(--bg-lighter);
}

.stat-bar__value {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 900;
    font-style: italic;
    color: var(--primary-color);
    letter-spacing: var(--tracking-tight);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-bar__label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

@media (max-width: 768px) {
    .stat-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-bar__item:nth-child(2) {
        border-right: none;
    }
    .stat-bar__item:nth-child(3) {
        border-top: 1px solid var(--border-color);
    }
}

@media (max-width: 480px) {
    .stat-bar {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }
    .stat-bar__item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .stat-bar__item:last-child {
        border-bottom: none;
    }
    .stat-bar__item:nth-child(2),
    .stat-bar__item:nth-child(3) {
        border-right: none;
    }
}

/* ============================================
   NEU: DIFF-TABLE — New-ee vs. Große Agenturen
   ============================================ */
.diff-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.diff-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.diff-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.diff-table th {
    padding: 1rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--bg-light);
    color: var(--text-muted);
    text-align: left;
}

.diff-table th:nth-child(2) {
    color: var(--primary-color);
    background: rgba(255, 49, 49, 0.04);
}

.diff-table td {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9375rem;
    line-height: 1.5;
    vertical-align: top;
}

.diff-table td:first-child {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.875rem;
}

.diff-table td:nth-child(2) {
    color: var(--text-primary);
    font-weight: 600;
    background: rgba(255, 49, 49, 0.02);
}

.diff-table td:nth-child(3) {
    color: var(--text-light);
}

.diff-table tr:hover td {
    background: var(--bg-lighter);
}

.diff-table tr:hover td:nth-child(2) {
    background: rgba(255, 49, 49, 0.05);
}

@media (max-width: 640px) {
    .diff-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .diff-table th,
    .diff-table td {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }
}

/* ============================================
   NEU: TIMELINE-DAYS — Prozess mit echten Tagen
   ============================================ */
.timeline-days {
    position: relative;
    padding-left: 2.5rem;
    max-width: 720px;
}

.timeline-days::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 8px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
        var(--primary-color) 0%,
        rgba(255, 49, 49, 0.15) 100%);
    border-radius: 1px;
}

.timeline-day {
    position: relative;
    padding: 0 0 2.25rem 1.5rem;
}

.timeline-day:last-child {
    padding-bottom: 0;
}

.timeline-day::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.35rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid var(--bg-white);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-day__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    display: block;
}

.timeline-day__title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.timeline-day__desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 56ch;
}

/* ============================================
   NEU: MÜNCHEN-BRANCHEN-SEKTION
   Ersetzt Bento-Grid auf index.html
   ============================================ */
.munich-branch-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.munich-branch-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.munich-branch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.munich-branch-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.munich-branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), rgba(255, 49, 49, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.munich-branch-card:hover {
    border-color: rgba(255, 49, 49, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.munich-branch-card:hover::before {
    opacity: 1;
}

.munich-branch-card__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.munich-branch-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.munich-branch-card__text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.munich-branch-card__link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s ease;
}

.munich-branch-card:hover .munich-branch-card__link {
    gap: 0.6rem;
}

@media (max-width: 900px) {
    .munich-branch-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ============================================
   NEU: FOUNDER-INITIALEN-KREIS
   ============================================ */
.founder-initials {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-width: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.founder-initials::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 70%;
    height: 70%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.founder-initials__text {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    font-style: italic;
    color: #FFFFFF;
    letter-spacing: -0.05em;
    line-height: 1;
    position: relative;
    z-index: 1;
}

/* ============================================
   NEU: LEAD-MAGNET-BOX (bewerber.html)
   ============================================ */
.lead-magnet-box {
    background: rgba(255, 49, 49, 0.04);
    border: 1px solid rgba(255, 49, 49, 0.2);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.lead-magnet-box__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.lead-magnet-box__content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.lead-magnet-box__content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.lead-magnet-box__content a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 49, 49, 0.3);
    transition: border-color 0.2s;
}

.lead-magnet-box__content a:hover {
    border-color: var(--primary-color);
}

@media (max-width: 640px) {
    .lead-magnet-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
}

.lead-magnet-content {
    flex: 1;
}

.lead-magnet-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: var(--tracking-tight);
}

.lead-magnet-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.lead-magnet-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
}

@media (max-width: 768px) {
    .lead-magnet-box {
        flex-direction: column;
    }
    .lead-magnet-cta {
        width: 100%;
        align-items: flex-start;
    }
}

/* ============================================
   NEU: COST-SECTION (unternehmen.html)
   Transparente Konditionen
   ============================================ */
.cost-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.cost-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.cost-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
}

.cost-item:hover {
    border-color: rgba(255, 49, 49, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cost-item__value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    font-style: italic;
    color: var(--primary-color);
    letter-spacing: var(--tracking-tight);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.cost-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cost-item__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cost-disclaimer {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 1.25rem;
    background: var(--bg-lighter);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

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

/* ============================================
   NEU: CONTACT-SPLIT (kontakt.html)
   Zwei-Wege-Kontakt
   ============================================ */
.contact-phone-hero {
    text-align: center;
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.contact-phone-hero__label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.contact-phone-hero__number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    font-style: italic;
    color: var(--primary-color);
    letter-spacing: var(--tracking-tight);
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.contact-phone-hero__number:hover {
    opacity: 0.8;
}

.contact-phone-hero__sub {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-split__card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.contact-split__card:hover {
    border-color: rgba(255, 49, 49, 0.3);
    box-shadow: var(--shadow-md);
}

.contact-split__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-split__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.contact-split__email {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    transition: opacity 0.2s;
}

.contact-split__email:hover {
    opacity: 0.75;
}

.contact-split__response {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.contact-split__response::before {
    content: '✓';
    color: #057642;
    font-weight: 700;
}

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

/* ============================================
   NEU: RATGEBER-TEASER auf index.html
   ============================================ */
.ratgeber-teaser-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.ratgeber-teaser-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* ============================================
   CALENDLY PLACEHOLDER
   ============================================ */
.calendly-placeholder {
    background: var(--bg-lighter);
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: var(--text-muted);
    margin: 2rem 0;
}

.calendly-placeholder p {
    font-size: 0.9375rem;
    margin: 0;
}

/* ============================================
   HERO SUBPAGE — schmaler, aber stark
   ============================================ */
.hero-subpage {
    min-height: 55vh;
    padding: 4rem 0;
}

.hero-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 49, 49, 0.06);
    border: 1px solid rgba(255, 49, 49, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.hero-phone-cta:hover {
    background: rgba(255, 49, 49, 0.1);
    border-color: var(--primary-color);
}

.hero-phone-cta__number {
    color: var(--primary-color);
    font-size: 1.0625rem;
    font-weight: 700;
}

/* ============================================
   RATGEBER / BRANCHEN — Consulting Article Layout
   ============================================ */
.ratgeber-page,
.branchen-page {
    background: var(--bg-white);
}

/* ===== Outer section override ===== */
.article-section {
    padding: 3rem 0 6rem;
}

/* ===== Two-column grid: content + sidebar ===== */
.article-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 5rem;
    max-width: 1080px;
    margin: 0 auto;
    padding: 3.5rem 2rem 6rem;
    align-items: start;
}

/* ===== Sidebar: sticky TOC ===== */
.article-sidebar {
    position: sticky;
    top: 5.5rem;
}

.article-toc {
    background: var(--bg-lighter);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
}

.toc-title {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.toc-nav a {
    display: block;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--text-muted);
    padding: 0.35rem 0;
    border-left: 2px solid transparent;
    padding-left: 0.75rem;
    margin-left: -0.75rem;
    text-decoration: none;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.toc-nav a:hover {
    color: var(--text-primary);
    border-left-color: var(--primary-color);
}

.toc-nav a.toc-active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

/* ===== Article main content ===== */
.ratgeber-article {
    min-width: 0;
    background: var(--bg-white);
}

/* Lead paragraph */
.ratgeber-article > p:first-of-type {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.ratgeber-article h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 3rem 0 0.875rem;
    line-height: 1.3;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    letter-spacing: -0.01em;
    scroll-margin-top: 6rem;
}

.ratgeber-article h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.ratgeber-article h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.75rem 0 0.5rem;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.ratgeber-article p {
    font-size: 0.9375rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.125rem;
}

.ratgeber-article ul,
.ratgeber-article ol {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
    list-style: disc;
}

.ratgeber-article ol {
    list-style: decimal;
}

.ratgeber-article li {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* Inline links */
.ratgeber-article a {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.ratgeber-article a:hover {
    color: var(--primary-dark);
}

.ratgeber-article strong {
    color: var(--text-primary);
    font-weight: 600;
}

.ratgeber-article em {
    color: var(--text-muted);
    font-style: italic;
}

/* Highlight / Tip callout box */
.ratgeber-article .callout,
.ratgeber-article blockquote {
    background: #FFF8F8;
    border-left: 3px solid var(--primary-color);
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin: 1.75rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.8;
}

/* Divider */
.ratgeber-article hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2.5rem 0;
}

/* ===== Tables in articles ===== */
.ratgeber-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.75rem 0 2rem;
    font-size: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.ratgeber-article table thead tr {
    background: var(--text-primary) !important;
    color: #fff !important;
}

.ratgeber-article table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    color: #fff !important;
    background: transparent !important;
}

.ratgeber-article table td {
    padding: 0.7rem 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.ratgeber-article table tbody tr:last-child td {
    border-bottom: none;
}

.ratgeber-article table tbody tr:nth-child(even) {
    background: var(--bg-lighter) !important;
}

.ratgeber-article table tbody tr:nth-child(odd) {
    background: var(--bg-white) !important;
}

/* ===== Next article link ===== */
.article-next-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.875rem 1.5rem;
    background: var(--bg-lighter);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.article-next-link:hover {
    border-color: var(--primary-color);
    background: #FFF8F8;
    color: var(--primary-color);
    text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .article-page-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 2rem 1.25rem 5rem;
    }
    .article-sidebar {
        display: none;
    }
}

/* ===== Kontakt Page Layout ===== */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    align-items: start;
}

.kontakt-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
}

.kontakt-info-card h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.kontakt-info-card p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.kontakt-info-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.kontakt-info-card a:hover {
    text-decoration: underline;
}

.kontakt-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.kontakt-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.kontakt-info-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 49, 49, 0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.kontakt-info-text strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.kontakt-info-text span,
.kontakt-info-text a {
    font-size: 0.9375rem;
    color: var(--text-primary);
    text-decoration: none;
}

.kontakt-info-text a:hover {
    color: var(--primary-color);
}

.kontakt-map-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 100%;
    min-height: 420px;
}

.kontakt-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .kontakt-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1.25rem 4rem;
    }
    .kontakt-map-card {
        min-height: 280px;
    }
    .kontakt-map-card iframe {
        min-height: 280px;
    }
}

/* ============================================
   JOB COCKPIT — Status-Badges
   ============================================ */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.625rem;
    border-radius: 20px;
    font-size: 0.775rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    line-height: 1.4;
}

.status-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    background: currentColor;
    opacity: 0.75;
}

.status-badge--draft        { color: #4B5563; background: #F3F4F6; }
.status-badge--in_review    { color: #92400E; background: #FEF3C7; }
.status-badge--ready_to_publish { color: #1D4ED8; background: #DBEAFE; }
.status-badge--published    { color: #065F46; background: #D1FAE5; }
.status-badge--paused       { color: #5B21B6; background: #EDE9FE; }
.status-badge--archived     { color: #374151; background: #E5E7EB; }
.status-badge--expired      { color: #991B1B; background: #FEE2E2; }

/* ============================================
   JOB COCKPIT — Quality Bar
   ============================================ */
.quality-bar-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
}

.quality-bar {
    flex: 1;
    height: 5px;
    background: var(--border-color);
    border-radius: 99px;
    overflow: hidden;
}

.quality-bar__fill {
    height: 100%;
    border-radius: 99px;
    transition: width 0.4s ease;
}

.quality-bar__fill--low    { background: #EF4444; }
.quality-bar__fill--mid    { background: #F59E0B; }
.quality-bar__fill--high   { background: #10B981; }

.quality-bar-pct {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 2.25rem;
    text-align: right;
}

/* ============================================
   JOB COCKPIT — Jobliste hybride Zeilenansicht
   ============================================ */
.cockpit-toolbar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.cockpit-toolbar .form-group {
    margin-bottom: 0;
    flex: 1;
    min-width: 140px;
}

.cockpit-toolbar .form-group label {
    font-size: 0.775rem;
    margin-bottom: 0.3rem;
    color: var(--text-muted);
}

.cockpit-toolbar .form-group input,
.cockpit-toolbar .form-group select {
    padding: 0.55rem 0.75rem;
    font-size: 0.875rem;
    height: auto;
}

.cockpit-filter-toggles {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.625rem 0.75rem;
    background: var(--bg-lighter);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.filter-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-toggle.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.cockpit-list {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cockpit-list th,
.cockpit-list td {
    padding: 0.75rem 0.9rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.cockpit-list th {
    background: var(--bg-lighter);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.775rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cockpit-list tr:last-child td { border-bottom: none; }

.cockpit-list tr:hover td { background: var(--bg-lighter); }

.cockpit-job-title {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-primary);
    line-height: 1.35;
}

.cockpit-job-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.cockpit-badge-row {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.cockpit-inline-badge {
    display: inline-block;
    padding: 0.15rem 0.45rem;
    border-radius: 6px;
    font-size: 0.725rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.cockpit-apps {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.cockpit-apps-new {
    font-size: 0.775rem;
    color: var(--accent-green);
    font-weight: 600;
}

.cockpit-inline-actions {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    opacity: 0;
    transition: opacity 0.15s;
}

.cockpit-list tr:hover .cockpit-inline-actions { opacity: 1; }

.cockpit-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    font-size: 0.8rem;
}

.cockpit-icon-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 49, 49, 0.05);
}

.cockpit-icon-btn--publish:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    background: rgba(5, 118, 66, 0.05);
}

.cockpit-icon-btn--danger:hover {
    border-color: #EF4444;
    color: #EF4444;
    background: rgba(239, 68, 68, 0.05);
}

.cockpit-empty {
    padding: 3rem 1rem;
    text-align: center;
    color: var(--text-muted);
}

.cockpit-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.4;
}

/* ============================================
   JOB COCKPIT — Editor Layout
   ============================================ */
.editor-cockpit-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.5rem;
    align-items: start;
}

.editor-cockpit-main {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.editor-cockpit-sidebar {
    position: sticky;
    top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.editor-section {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.editor-section__head {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-lighter);
}

.editor-section__icon {
    font-size: 1rem;
    opacity: 0.7;
    flex-shrink: 0;
}

.editor-section__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.editor-section__body {
    padding: 1.25rem;
}

.editor-section__body .form-group {
    margin-bottom: 1rem;
}

.editor-section__body .form-group:last-child {
    margin-bottom: 0;
}

.editor-field-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.875rem;
}

.editor-field-row .form-group {
    margin-bottom: 0;
}

/* Sidebar cards */
.sidebar-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1rem 1.125rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-card__title {
    font-size: 0.775rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.sidebar-quality-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.sidebar-quality-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
}

.sidebar-quality-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.quality-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.quality-checklist li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.quality-check-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
}

.quality-check-icon--ok   { background: #D1FAE5; color: #065F46; }
.quality-check-icon--fail { background: #FEE2E2; color: #991B1B; }

.sidebar-publish-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.sidebar-publish-btn--primary {
    background: var(--accent-green);
    color: #fff;
}

.sidebar-publish-btn--primary:hover:not(:disabled) {
    background: var(--accent-green-hover);
}

.sidebar-publish-btn--primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.sidebar-publish-btn--secondary {
    background: var(--bg-light);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    margin-top: 0.5rem;
}

.sidebar-publish-btn--secondary:hover {
    background: var(--border-color);
}

.sidebar-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-meta-row:last-child { border-bottom: none; }

.sidebar-meta-label { color: var(--text-muted); }
.sidebar-meta-value { font-weight: 600; color: var(--text-secondary); }

/* Sticky save bar */
.cockpit-save-bar {
    position: sticky;
    bottom: 0;
    z-index: 50;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
    margin: 0 -1rem;
}

.cockpit-save-bar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cockpit-save-bar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cockpit-save-msg {
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 150px;
}

/* Character counter for SEO fields */
.char-counter {
    font-size: 0.775rem;
    font-weight: 500;
    float: right;
    margin-top: -0.1rem;
}

.char-counter--ok   { color: var(--accent-green); }
.char-counter--warn { color: #F59E0B; }
.char-counter--over { color: #EF4444; }

/* Meta preview */
.meta-preview-box {
    background: var(--bg-lighter);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    margin-top: 0.75rem;
    font-family: Arial, sans-serif;
}

.meta-preview-url {
    font-size: 0.8rem;
    color: #1a0dab;
    margin-bottom: 0.2rem;
    word-break: break-all;
}

.meta-preview-title {
    font-size: 1rem;
    color: #1a0dab;
    font-weight: normal;
    margin-bottom: 0.2rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.meta-preview-desc {
    font-size: 0.825rem;
    color: #4d5156;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Toggle switch */
.toggle-wrap {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--border-color);
    border-radius: 99px;
    cursor: pointer;
    transition: 0.2s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider { background: var(--accent-green); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }

.toggle-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Cockpit topbar */
.cockpit-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.cockpit-topbar-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cockpit-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.cockpit-back-btn:hover {
    color: var(--text-secondary);
    border-color: var(--text-muted);
}

.cockpit-page-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Pagination bar */
.cockpit-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.cockpit-page-info {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .editor-cockpit-layout {
        grid-template-columns: 1fr;
    }
    .editor-cockpit-sidebar {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .cockpit-toolbar {
        flex-direction: column;
    }
    .cockpit-toolbar .form-group { min-width: 100%; }
    .cockpit-inline-actions { opacity: 1; }
    .cockpit-save-bar { margin: 0 -0.75rem; }
    .editor-field-row { grid-template-columns: 1fr; }
}

/* ============================================
   Jobs-Börse – Premium Redesign v2
   Nur visuelles Redesign – keine Inhaltsänderung
   ============================================ */

/* 1. Section-Hintergrund – subtiler Gradient statt Flat */
.home-jobs-search {
    padding: 4rem 0 6.5rem;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-lighter) 65%);
    position: relative;
}

/* 2. Haupt-Card – tiefere Schatten, runder, roter Akzent oben */
.home-jobs-search-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.07),
        0 32px 80px rgba(0, 0, 0, 0.05);
    padding: 3rem 3rem 2.75rem;
    position: relative;
    overflow: hidden;
}

/* Roter Top-Akzent-Streifen */
.home-jobs-search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(255, 49, 49, 0.25) 100%);
    z-index: 1;
}

/* 3. Hero-Header – klarer, stärker, besser proportioniert */
.home-jobs-search-header {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.home-jobs-search-header .section-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 49, 49, 0.06);
    border: 1px solid rgba(255, 49, 49, 0.2);
    color: var(--primary-color);
    border-radius: 4px;
    padding: 0.35rem 0.9rem;
    display: inline-block;
    margin-bottom: 1.1rem;
}

.home-jobs-search-header .section-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin: 0 0 0.8rem;
}

.home-jobs-search-header .section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.72;
    margin: 0 auto;
    max-width: 520px;
}

/* 4. Formular-Container – eigene visuelle Zone */
.jobs-toolbar--filters {
    background: var(--bg-lighter);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1.25rem;
    margin-bottom: 0;
    gap: 1rem;
}

/* Labels – caps, strukturiert, klar lesbar */
.jobs-toolbar .form-group label {
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

/* Inputs/Selects – weißer Hintergrund, etwas höher */
.jobs-toolbar input,
.jobs-toolbar select {
    height: 3.25rem;
    background: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    padding: 0 1rem;
    font-size: 0.9375rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) inset;
    transition: var(--transition-fast);
}

.jobs-toolbar input:focus,
.jobs-toolbar select:focus {
    outline: none;
    background: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.1);
}

/* Submit-Button – stärker, volle Breite, prominenter */
.jobs-toolbar--filters button[type="submit"] {
    grid-column: 1 / -1;
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 18px rgba(255, 49, 49, 0.25);
    margin-top: 0.25rem;
}

.jobs-toolbar--filters button[type="submit"]:hover {
    box-shadow: 0 6px 24px rgba(204, 32, 32, 0.32);
}

/* 5. Ergebnisbereich – klare Trennung, sauber strukturiert */
.jobs-resultsHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.jobs-resultsTitle {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Sort-Select – clean */
#jobsSort {
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 0.45rem 0.8rem;
    font-size: 0.85rem;
    background: var(--bg-white);
    color: var(--text-secondary);
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition-fast);
}

#jobsSort:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.1);
}

/* 6. Jobkarten – Listenansicht Desktop: horizontal */
.jobs-grid--list .job-card {
    padding: 1.5rem 1.75rem;
    border-radius: 14px;
    gap: 1rem;
}

@media (min-width: 641px) {
    .jobs-grid--list .job-card {
        flex-direction: row;
        align-items: center;
        gap: 1.75rem;
        padding: 1.4rem 1.75rem;
    }

    .jobs-grid--list .job-card__top {
        flex: 2;
        min-width: 0;
        gap: 0.4rem;
    }

    .jobs-grid--list .job-card__body {
        flex: 1.5;
        min-width: 0;
    }

    .jobs-grid--list .job-card__actions {
        flex: 0 0 auto;
        flex-direction: column;
        align-items: flex-end;
        margin-top: 0;
        gap: 0.5rem;
        justify-content: flex-end;
    }
}

/* Jobtitel in Listenansicht – klarer, stärker */
.jobs-grid--list .job-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

/* Meta/Excerpt – subtiler */
.jobs-grid--list .job-card__excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    -webkit-line-clamp: 2;
}

/* "Online seit" – sehr subtil */
.jobs-grid--list .job-card__actions .job-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    white-space: nowrap;
}

/* 7. Pagination – sauber, mehr Luft */
.home-jobs-search-card .admin-topbar {
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    margin-top: 2rem !important;
    border-top: 1px solid var(--border-color);
}

#jobsPageInfo {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    min-width: 120px;
    text-align: center;
    letter-spacing: 0.02em;
}

.home-jobs-search-card .admin-topbar .btn-compact {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

/* 8. Mobile Responsive */
@media (max-width: 768px) {
    .home-jobs-search {
        padding: 2rem 0 3.5rem;
    }

    .home-jobs-search-card {
        padding: 1.75rem 1.25rem 2rem;
        border-radius: 20px;
    }

    .home-jobs-search-header {
        padding-bottom: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .home-jobs-search-header .section-heading {
        font-size: 1.75rem;
    }

    .jobs-toolbar--filters {
        padding: 1.25rem;
        border-radius: 12px;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .jobs-resultsHeader {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

/* ≤ 640px: Karten wieder vertikal */
@media (max-width: 640px) {
    .jobs-grid--list .job-card {
        flex-direction: column;
        gap: 0.7rem;
        padding: 1.25rem;
    }

    .jobs-grid--list .job-card__actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 0.25rem;
    }

    .jobs-grid--list .job-card__actions .btn-modern {
        width: auto;
    }
}

/* ≤ 480px: 1-Spalte Formular */
@media (max-width: 480px) {
    .jobs-toolbar--filters {
        grid-template-columns: 1fr;
    }
}
