/* Extracted from karriere.php. Edit here, not in PHP. */

/* ── Karriere-spezifische Styles ── */
    .karriere-hero {
        background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #10b981 100%);
        color: white;
        padding: 7rem 2rem 5rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .karriere-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: 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.04'%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");
    }
    .karriere-hero-content {
        position: relative;
        max-width: 750px;
        margin: 0 auto;
    }
    .karriere-hero-badge {
        display: inline-block;
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 50px;
        padding: 0.4rem 1.2rem;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
    }
    .karriere-hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 1.5rem;
    }
    .karriere-hero h1 span {
        color: #86efac;
    }
    .karriere-hero p {
        font-size: 1.2rem;
        line-height: 1.7;
        opacity: 0.9;
        margin-bottom: 2.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .karriere-hero-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    .btn-white {
        background: white;
        color: #2563eb;
        padding: 0.9rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.2s;
        display: inline-block;
    }
    .btn-white:hover {
        background: #f0f9ff;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    .btn-outline-white {
        background: transparent;
        color: white;
        border: 2px solid rgba(255,255,255,0.6);
        padding: 0.9rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.2s;
        display: inline-block;
    }
    .btn-outline-white:hover {
        background: rgba(255,255,255,0.15);
        border-color: white;
    }

    /* ── Zahlen-Leiste ── */
    .karriere-stats {
        background: #1e3a5f;
        color: white;
        padding: 2.5rem 2rem;
    }
    .karriere-stats-grid {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        text-align: center;
    }
    .karriere-stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: #10b981;
    }
    .karriere-stat-label {
        font-size: 0.85rem;
        opacity: 0.8;
        margin-top: 0.3rem;
    }

    /* ── Warum Lohnklar ── */
    .warum-section {
        padding: 5rem 2rem;
        background: #f8fafc;
    }
    .warum-grid {
        max-width: 1100px;
        margin: 3rem auto 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .warum-card {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        border-top: 4px solid #2563eb;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .warum-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(37,99,235,0.12);
    }
    .warum-card-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .warum-card h3 {
        font-size: 1.15rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 0.75rem;
    }
    .warum-card p {
        color: #6b7280;
        line-height: 1.7;
        font-size: 0.95rem;
    }

    /* ── Kultur Section ── */
    .kultur-section {
        padding: 5rem 2rem;
        background: white;
    }
    .kultur-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    .kultur-text h2 {
        font-size: 2rem;
        font-weight: 800;
        color: #1f2937;
        margin-bottom: 1.5rem;
    }
    .kultur-text p {
        color: #4b5563;
        line-height: 1.8;
        margin-bottom: 1.25rem;
    }
    .kultur-values {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .kultur-value {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 1.25rem;
        background: #f0f9ff;
        border-radius: 10px;
        border-left: 3px solid #2563eb;
    }
    .kultur-value-icon {
        font-size: 1.4rem;
        flex-shrink: 0;
        margin-top: 0.1rem;
    }
    .kultur-value-text strong {
        display: block;
        color: #1f2937;
        font-weight: 700;
        margin-bottom: 0.2rem;
    }
    .kultur-value-text span {
        color: #6b7280;
        font-size: 0.9rem;
    }

    /* ── Team Teaser ── */
    .team-teaser {
        padding: 4rem 2rem;
        background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
        text-align: center;
    }
    .team-teaser-avatars {
        display: flex;
        justify-content: center;
        gap: -0.5rem;
        margin: 1.5rem 0;
    }
    .team-teaser-avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        border: 3px solid white;
        overflow: hidden;
        margin: 0 -8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .team-teaser-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
    .team-teaser h2 {
        font-size: 1.75rem;
        font-weight: 800;
        color: #1f2937;
        margin-bottom: 1rem;
    }
    .team-teaser p {
        color: #4b5563;
        max-width: 500px;
        margin: 0 auto 2rem;
        line-height: 1.7;
    }

    /* ── Join Widget Section ── */
    .jobs-section {
        padding: 5rem 2rem;
        background: white;
    }
    .jobs-section-inner {
        max-width: 1000px;
        margin: 0 auto;
    }
    .jobs-section .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    #join-widget {
        min-height: 300px;
    }

    /* ── Benefits Section ── */
    .benefits-section {
        padding: 5rem 2rem;
        background: #f0f9ff;
    }
    .benefits-highlights {
        max-width: 1000px;
        margin: 3rem auto 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    .benefit-highlight {
        background: white;
        border-radius: 16px;
        padding: 2rem 1.5rem;
        text-align: center;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        border-top: 4px solid #10b981;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .benefit-highlight:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(16,185,129,0.12);
    }
    .benefit-highlight-icon {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }
    .benefit-highlight-value {
        font-size: 1.9rem;
        font-weight: 800;
        color: #1f2937;
        line-height: 1.1;
        margin-bottom: 0.3rem;
    }
    .benefit-highlight-label {
        font-size: 0.85rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.5rem;
    }
    .benefit-highlight-desc {
        font-size: 0.8rem;
        color: #9ca3af;
        line-height: 1.5;
    }
    .benefits-also {
        max-width: 1000px;
        margin: 2rem auto 0;
        text-align: center;
        color: #6b7280;
        font-size: 0.9rem;
    }
    .benefits-also strong {
        color: #374151;
    }
    @media (max-width: 768px) {
        .benefits-highlights { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
        .benefits-highlights { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    }

    /* ── Initiative CTA ── */
    .initiative-section {
        padding: 4rem 2rem;
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        color: white;
        text-align: center;
        border-top: 4px solid #10b981;
    }
    .initiative-inner {
        max-width: 650px;
        margin: 0 auto;
    }
    .initiative-section h2 {
        font-size: 1.75rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }
    .initiative-section p {
        opacity: 0.8;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    .initiative-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    .btn-green {
        background: #10b981;
        color: white;
        padding: 0.9rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s;
        display: inline-block;
    }
    .btn-green:hover {
        background: #059669;
        transform: translateY(-2px);
    }
    .btn-ghost {
        background: transparent;
        color: white;
        border: 2px solid rgba(255,255,255,0.4);
        padding: 0.9rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
        display: inline-block;
    }
    .btn-ghost:hover {
        border-color: white;
        background: rgba(255,255,255,0.08);
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
        .karriere-stats-grid { grid-template-columns: repeat(2, 1fr); }
        .warum-grid { grid-template-columns: 1fr; }
        .kultur-inner { grid-template-columns: 1fr; gap: 2rem; }
    }
    @media (max-width: 480px) {
        .karriere-stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    }
