:root {
    --bg: #0b0d12;
    --bg-soft: #12161f;
    --bg-mid: #161b25;
    --panel: rgba(20, 25, 35, 0.88);
    --panel-strong: rgba(12, 16, 24, 0.95);
    --text: #f4f7fb;
    --muted: #a7b2c5;

    --primary: #00eaff;
    --primary-dark: #00bcd4;
    --accent: #009dff;

    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    --radius: 18px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
        linear-gradient(rgba(8, 10, 15, 0.75), rgba(8, 10, 15, 0.95)),
        radial-gradient(circle at top right, rgba(0, 234, 255, 0.08), transparent 25%),
        radial-gradient(circle at bottom left, rgba(0, 157, 255, 0.08), transparent 30%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

main {
    min-height: 100vh;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 12, 18, 0.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #08110a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 0 22px rgba(0, 234, 255, 0.35);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 20px;
    letter-spacing: 0.5px;
}

.logo-text span {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a {
    color: var(--muted);
    font-weight: 700;
    font-size: 15px;
    transition: 0.2s ease;
}

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

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    background: var(--panel-strong);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    margin: 6px 0;
    border-radius: 999px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 90px;
    background:
        linear-gradient(rgba(8, 10, 15, 0.45), rgba(8, 10, 15, 0.75)), 
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
    /*    linear-gradient(to right, rgba(7, 9, 13, 0.9) 20%, rgba(7, 9, 13, 0.55) 70%, rgba(7, 9, 13, 0.85) 100%); */
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 234, 255, 0.12);
    border: 1px solid rgba(0, 234, 255, 0.32);
    color: var(--primary);
    box-shadow: 0 0 16px rgba(0, 234, 255, 0.12);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-text h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    margin-bottom: 18px;
    max-width: 760px;
}

.hero-text h1 span {
    color: var(--primary);
    text-shadow: 0 0 18px rgba(0, 234, 255, 0.2);
}

.hero-text p {
    max-width: 720px;
    font-size: 18px;
    color: #dce5f2;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    transition: 0.2s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #08110a;
    box-shadow: 0 10px 24px rgba(0, 234, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 12px 28px rgba(0, 234, 255, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 234, 255, 0.4);
    color: var(--primary);
    box-shadow: 0 0 18px rgba(0, 234, 255, 0.12);
}

.hero-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.hero-card h3 {
    font-size: 24px;
    margin-bottom: 22px;
}

.info-list {
    display: grid;
    gap: 14px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-label {
    color: var(--muted);
    font-weight: 600;
}

.info-value {
    color: var(--text);
    font-weight: 800;
    text-align: right;
}

.section-dark,
.section-mid {
    padding: 90px 0;
}

.section-dark {
    background: transparent;
}

.section-mid {
    background: linear-gradient(180deg, rgba(18, 22, 31, 0.7), rgba(12, 15, 22, 0.88));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--primary);
    text-shadow: 0 0 12px rgba(0, 234, 255, 0.18);
    margin-bottom: 12px;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-head p {
    color: var(--muted);
    font-size: 17px;
}

.feature-grid,
.faction-grid,
.news-grid,
.stats-grid {
    display: grid;
    gap: 24px;
}

.feature-grid,
.faction-grid,
.news-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.faction-card,
.news-card,
.stat-box {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--shadow);
    transition: 0.2s ease;
}

.feature-card:hover,
.faction-card:hover,
.news-card:hover,
.stat-box:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 234, 255, 0.18);
    box-shadow:
        var(--shadow),
        0 0 22px rgba(0, 234, 255, 0.08);
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
    background: rgba(0, 234, 255, 0.12);
    border: 1px solid rgba(0, 234, 255, 0.22);
    box-shadow: 0 0 14px rgba(0, 234, 255, 0.08);
}

.feature-card h3,
.faction-card h3,
.news-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-card p,
.faction-card p,
.news-card p {
    color: var(--muted);
    font-size: 15px;
}


.feature-card-image {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    min-height: 390px;
}

.feature-image-wrap {
    position: relative;
    height: 175px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.feature-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(8, 10, 15, 0.08), rgba(8, 10, 15, 0.72)),
        linear-gradient(135deg, rgba(0, 234, 255, 0.18), transparent 48%);
    pointer-events: none;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.86;
    transition: 0.25s ease;
}

.feature-card-image:hover .feature-image {
    transform: scale(1.06);
    opacity: 1;
}

.feature-icon-overlay {
    position: absolute;
    left: 22px;
    bottom: 18px;
    z-index: 2;
    margin-bottom: 0;
    backdrop-filter: blur(8px);
}

.feature-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 26px 28px;
}

.feature-card-content h3 {
    margin-bottom: 12px;
}

.feature-card-content p {
    color: #d2dbea;
}

.faction-card-image {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    min-height: 360px;
}

.faction-image-wrap {
    position: relative;
    height: 170px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.faction-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(8, 10, 15, 0.05), rgba(8, 10, 15, 0.65)),
        linear-gradient(135deg, rgba(0, 234, 255, 0.16), transparent 45%);
    pointer-events: none;
}

.faction-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.86;
    transition: 0.25s ease;
}

.faction-card-image:hover .faction-image {
    transform: scale(1.06);
    opacity: 1;
}

.faction-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 26px 28px;
}

.faction-card-content h3 {
    margin-bottom: 12px;
}

.faction-card-content p {
    color: #d2dbea;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
}

.stat-box h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 6px;
    text-shadow: 0 0 12px rgba(0, 234, 255, 0.16);
}

.stat-box p {
    color: var(--muted);
    font-weight: 700;
}

.news-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 234, 255, 0.12);
    border: 1px solid rgba(0, 234, 255, 0.24);
    color: var(--primary);
    box-shadow: 0 0 12px rgba(0, 234, 255, 0.08);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.join-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.08), rgba(0, 157, 255, 0.06));
    border: 1px solid rgba(0, 234, 255, 0.18);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.join-box h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 10px;
}

.join-box p {
    color: var(--muted);
    max-width: 720px;
}

.join-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.site-footer {
    background: #090b10;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr;
    gap: 30px;
    padding: 60px 0 32px;
}

.footer-box h3,
.footer-box h4 {
    margin-bottom: 16px;
}

.footer-box p,
.footer-box li,
.footer-box a {
    color: var(--muted);
    font-size: 15px;
}

.footer-box ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 18px 0;
}

.footer-bottom p {
    color: #8f98aa;
    font-size: 14px;
    text-align: center;
}

.page-hero {
    padding: 90px 0 40px;
}

.page-hero-small {
    padding-bottom: 10px;
}

.page-hero-content {
    max-width: 760px;
}

.page-hero-content h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 14px;
}

.page-hero-content p {
    color: var(--muted);
    font-size: 17px;
}


.team-grid {
    display: block;
}

.team-showcase {
    display: grid;
    gap: 54px;
}

.team-category-section {
    display: grid;
    gap: 24px;
}

.team-category-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.team-category-line {
    display: block;
    width: 90px;
    height: 3px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 18px rgba(0, 234, 255, 0.35);
}

.team-role-title {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    color: var(--text);
    text-shadow: 0 0 16px rgba(0, 234, 255, 0.18);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-category-head p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 16px;
}

.team-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    justify-content: center;
}

.team-member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 315px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)),
        var(--panel);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px 22px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: 0.25s ease;
    overflow: hidden;
    position: relative;
}

.team-member-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at top, rgba(0,234,255,0.16), transparent 42%);
    opacity: 0;
    transition: 0.25s ease;
    pointer-events: none;
}

.team-member-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 234, 255, 0.28);
    box-shadow:
        var(--shadow),
        0 0 28px rgba(0, 234, 255, 0.16);
}

.team-member-card:hover::before {
    opacity: 1;
}

.team-avatar-wrap {
    position: relative;
    z-index: 1;
    width: 116px;
    height: 116px;
    margin-bottom: 20px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 24px rgba(0, 234, 255, 0.18);
}

.team-member-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(10, 12, 18, 0.95);
    background: rgba(255, 255, 255, 0.04);
    transition: 0.25s ease;
}

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

.team-member-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.team-member-name {
    font-size: 21px;
    line-height: 1.25;
    font-weight: 900;
    color: var(--text);
    word-break: break-word;
}

.team-member-rank {
    color: var(--primary);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(0, 234, 255, 0.18);
}

.team-member-roles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

.team-role-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(0, 234, 255, 0.10);
    border: 1px solid rgba(0, 234, 255, 0.24);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 234, 255, 0.08);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}



@media (max-width: 1100px) {
    .hero-content,
    .feature-grid,
    .faction-grid,
    .news-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .join-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    .main-nav {
        position: absolute;
        top: 82px;
        left: 16px;
        right: 16px;
        background: rgba(10, 12, 18, 0.98);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 90px 0 70px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .feature-grid,
    .faction-grid,
    .news-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .team-card-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        min-height: 74px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-text p,
    .section-head p,
    .join-box p,
    .page-hero-content p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons,
    .join-actions {
        width: 100%;
    }

    .join-box {
        padding: 28px 22px;
    }

    .team-member-card {
        min-height: auto;
        padding: 26px 18px;
    }

    .team-member-name {
        font-size: 19px;
    }
}

/* Datenschutz / Rechtliche Seiten */
.legal-page {
    padding: 80px 0;
}

.legal-container {
    width: min(100% - 32px, 980px);
    margin: 0 auto;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 42px;
    box-shadow: var(--shadow);
}

.legal-container h1 {
    font-size: clamp(32px, 4vw, 46px);
    margin-bottom: 32px;
    color: var(--text);
}

.legal-container h2 {
    font-size: 24px;
    margin: 34px 0 12px;
    color: var(--primary);
}

.legal-container p {
    color: #dce5f2;
    margin-bottom: 14px;
    font-size: 16px;
}

.legal-container ul {
    margin: 14px 0 22px 22px;
    padding-left: 18px;
    color: #dce5f2;
}

.legal-container li {
    margin-bottom: 8px;
}

.legal-container a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-container a:hover {
    color: var(--accent);
}

@media (max-width: 640px) {
    .legal-page {
        padding: 50px 0;
    }

    .legal-container {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .legal-container h2 {
        font-size: 21px;
    }
}

/* Team Tabs */
.team-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 46px;
    padding: 8px;
    width: fit-content;
    max-width: 100%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.team-tab-button {
    min-width: 150px;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s ease;
}

.team-tab-button:hover {
    color: var(--primary);
    border-color: rgba(0, 234, 255, 0.24);
}

.team-tab-button.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #08110a;
    box-shadow: 0 0 22px rgba(0, 234, 255, 0.22);
}

.team-tab-panel {
    display: none;
}

.team-tab-panel.active {
    display: block;
}

@media (max-width: 640px) {
    .team-tabs {
        width: 100%;
        border-radius: 18px;
        flex-direction: column;
    }

    .team-tab-button {
        width: 100%;
    }
}


/* Team Organigramm */
.team-org-section {
    display: grid;
    gap: 30px;
    margin-top: 18px;
    padding: 34px 0 0;
}

.team-org-tree {
    display: grid;
    gap: 34px;
    position: relative;
}

.team-org-level {
    display: grid;
    gap: 18px;
    position: relative;
}

.team-org-level-connector::after {
    content: "";
    width: 2px;
    height: 28px;
    background: linear-gradient(180deg, var(--primary), transparent);
    box-shadow: 0 0 14px rgba(0, 234, 255, 0.28);
    position: absolute;
    left: 50%;
    bottom: -31px;
    transform: translateX(-50%);
}

.team-org-level-title {
    justify-self: center;
    align-self: start;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 234, 255, 0.10);
    border: 1px solid rgba(0, 234, 255, 0.24);
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 14px rgba(0, 234, 255, 0.10);
}

.team-org-members {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.team-org-card {
    width: 210px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)),
        var(--panel);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.team-org-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at top, rgba(0,234,255,0.16), transparent 45%);
    opacity: 0;
    transition: 0.25s ease;
    pointer-events: none;
}

.team-org-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 234, 255, 0.28);
    box-shadow:
        var(--shadow),
        0 0 24px rgba(0, 234, 255, 0.14);
}

.team-org-card:hover::before {
    opacity: 1;
}

.team-org-avatar {
    position: relative;
    z-index: 1;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 234, 255, 0.38);
    box-shadow: 0 0 18px rgba(0, 234, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
}

.team-org-name {
    position: relative;
    z-index: 1;
    color: var(--text);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
    word-break: break-word;
}

.team-org-rank {
    position: relative;
    z-index: 1;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.team-org-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    position: relative;
    padding-top: 34px;
}

.team-org-split::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25%;
    right: 25%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 14px rgba(0, 234, 255, 0.28);
}

.team-org-split::after {
    content: "";
    position: absolute;
    top: -34px;
    left: 50%;
    width: 2px;
    height: 34px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--primary), var(--primary));
    box-shadow: 0 0 14px rgba(0, 234, 255, 0.28);
}

.team-org-branch {
    position: relative;
    display: grid;
    justify-items: center;
    align-items: start;
    align-content: start;
}

.team-org-branch::before {
    content: "";
    position: absolute;
    top: -34px;
    left: 50%;
    width: 2px;
    height: 34px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--primary), transparent);
    box-shadow: 0 0 14px rgba(0, 234, 255, 0.22);
}

.team-org-branch-inner {
    display: grid;
    gap: 18px;
    width: 100%;
    align-content: start;
    align-items: start;
}

@media (max-width: 760px) {
    .team-org-split {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .team-org-split::before,
    .team-org-split::after,
    .team-org-branch::before,
    .team-org-level-connector::after {
        display: none;
    }
}

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

    .team-org-card {
        width: 100%;
        min-height: auto;
    }
}

/* News-System */
.sl-news-page,
.sl-article-page {
    width: 100%;
    min-height: 60vh;
}

.sl-news-hero {
    padding: 90px 0 48px;
    background:
        radial-gradient(circle at top, rgba(0, 234, 255, 0.12), transparent 44%),
        linear-gradient(180deg, rgba(18, 22, 31, 0.72), rgba(12, 15, 22, 0.92));
    border-bottom: 1px solid var(--border);
}

.sl-news-hero__inner,
.sl-news-section {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.sl-news-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    text-shadow: 0 0 12px rgba(0, 234, 255, 0.18);
}

.sl-news-hero h1,
.sl-news-section h2,
.sl-article h1,
.sl-article-not-found h1,
.sl-related-news h2 {
    margin: 0;
    color: var(--text);
    line-height: 1.08;
}

.sl-news-hero h1,
.sl-article h1,
.sl-article-not-found h1 {
    font-size: clamp(34px, 5vw, 56px);
}

.sl-news-hero p {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.sl-news-section {
    padding: 54px 0 80px;
}

.sl-news-section__head {
    margin-bottom: 28px;
}

.sl-news-section h2,
.sl-related-news h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.sl-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sl-news-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--panel);
    box-shadow: var(--shadow);
    transition: 0.2s ease;
}

.sl-news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 234, 255, 0.18);
    box-shadow:
        var(--shadow),
        0 0 22px rgba(0, 234, 255, 0.08);
}

.sl-news-card__image {
    position: relative;
    display: block;
    height: 210px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.sl-news-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(8, 10, 15, 0.04), rgba(8, 10, 15, 0.72)),
        linear-gradient(135deg, rgba(0, 234, 255, 0.16), transparent 46%);
    pointer-events: none;
}

.sl-news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.88;
    transition: 0.25s ease;
}

.sl-news-card:hover .sl-news-card__image img {
    transform: scale(1.06);
    opacity: 1;
}

.sl-news-card__image span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0, 234, 255, 0.12);
    border: 1px solid rgba(0, 234, 255, 0.28);
    color: var(--primary);
    box-shadow: 0 0 12px rgba(0, 234, 255, 0.10);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
}

.sl-news-card__body {
    padding: 22px;
}

.sl-news-meta,
.sl-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: var(--muted);
    font-size: 14px;
}

.sl-news-meta {
    margin-bottom: 12px;
}

.sl-news-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.25;
}

.sl-news-card h3 a {
    color: var(--text);
    text-decoration: none;
}

.sl-news-card h3 a:hover {
    color: var(--primary);
}

.sl-news-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.65;
}

.sl-news-readmore,
.sl-article-back,
.sl-article-not-found a {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
}

.sl-news-readmore:hover,
.sl-article-back:hover,
.sl-article-not-found a:hover {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sl-news-empty {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--panel);
    color: var(--text);
    box-shadow: var(--shadow);
}

.sl-news-empty p {
    color: var(--muted);
}

.sl-article,
.sl-related-news,
.sl-article-not-found {
    width: min(100% - 32px, 980px);
    margin: 0 auto;
    padding: 70px 0;
}

.sl-article-header {
    padding-bottom: 26px;
}

.sl-article-back {
    margin-bottom: 22px;
}

.sl-article-meta {
    margin-top: 18px;
}

.sl-article-image {
    margin: 10px 0 34px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.04);
}

.sl-article-image img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    opacity: 0.92;
}

.sl-article-content {
    padding: 8px 0 0;
    color: #dce5f2;
    font-size: 17px;
    line-height: 1.85;
}

.sl-article-content p {
    margin: 0 0 22px;
}

.sl-article-not-found {
    color: var(--text);
    text-align: center;
}

.sl-article-not-found p {
    color: var(--muted);
}

.sl-article-not-found a {
    margin-top: 12px;
}

.sl-related-news {
    padding-top: 10px;
}

.sl-related-news__head {
    margin-bottom: 20px;
}

.sl-related-news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.sl-related-news__card {
    display: block;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--panel);
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: 0.2s ease;
}

.sl-related-news__card span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 14px;
}

.sl-related-news__card strong {
    color: var(--text);
    line-height: 1.35;
}

.sl-related-news__card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 234, 255, 0.18);
    box-shadow:
        var(--shadow),
        0 0 22px rgba(0, 234, 255, 0.08);
}

.sl-related-news__card:hover strong {
    color: var(--primary);
}

@media (max-width: 980px) {
    .sl-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .sl-article,
    .sl-related-news,
    .sl-article-not-found {
        padding-top: 48px;
    }

    .sl-related-news__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .sl-news-hero {
        padding-top: 70px;
    }

    .sl-news-grid {
        grid-template-columns: 1fr;
    }

    .sl-news-card__image {
        height: 190px;
    }
}


/* Unternehmensübersicht */
.company-section {
    padding: 70px 0 90px;
}

.company-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 30px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.company-toolbar-info h2 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    margin-bottom: 6px;
}

.company-toolbar-info p {
    color: var(--muted);
    font-size: 15px;
}

.company-filter {
    min-height: 46px;
    min-width: 230px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font: inherit;
    font-weight: 800;
    outline: none;
}

.company-filter option {
    background: #10141d;
    color: var(--text);
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.company-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--panel);
    box-shadow: var(--shadow);
    transition: 0.2s ease;
}

.company-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 234, 255, 0.18);
    box-shadow:
        var(--shadow),
        0 0 22px rgba(0, 234, 255, 0.08);
}

.company-card-image {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.company-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(8, 10, 15, 0.04), rgba(8, 10, 15, 0.74)),
        linear-gradient(135deg, rgba(0, 234, 255, 0.16), transparent 46%);
    pointer-events: none;
}

.company-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    transition: 0.25s ease;
}

.company-card:hover .company-card-image img {
    transform: scale(1.06);
    opacity: 1;
}

.company-status {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(0, 234, 255, 0.12);
    border: 1px solid rgba(0, 234, 255, 0.28);
    color: var(--primary);
    box-shadow: 0 0 12px rgba(0, 234, 255, 0.10);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
}

.company-status-closed {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--muted);
}

.company-status-hiring {
    background: rgba(0, 234, 255, 0.16);
}

.company-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.company-type {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 234, 255, 0.10);
    border: 1px solid rgba(0, 234, 255, 0.22);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-card h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 24px;
    line-height: 1.2;
}

.company-description {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.company-details {
    display: grid;
    gap: 10px;
    margin: auto 0 20px;
}

.company-detail {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.company-detail span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.company-detail strong,
.company-detail a {
    color: var(--text);
    font-size: 14px;
    font-weight: 900;
    word-break: break-word;
}

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

.company-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.company-actions .btn {
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
}

.company-empty {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--panel);
    color: var(--muted);
    box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
    .company-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .company-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .company-filter {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .company-section {
        padding-top: 50px;
    }

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

    .company-detail {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
/* Header Dropdown-Menü */
.main-nav {
    align-items: center;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

.nav-dropdown-icon {
    font-size: 0.75em;
    line-height: 1;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    min-width: 190px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    background: rgba(10, 10, 14, 0.96);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 50;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    white-space: nowrap;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
    .main-nav {
        align-items: stretch;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 10px 0;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        margin-top: 4px;
        padding: 4px 0 4px 14px;
        border: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        transform: none;
    }
}

/* Über uns Seite */
.about-hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 70px;
    background:
        radial-gradient(circle at top left, rgba(0, 234, 255, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(0, 157, 255, 0.10), transparent 36%);
}

.about-section {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 24px;
    align-items: stretch;
}

.about-card,
.about-feature-card,
.about-timeline-content {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.about-card {
    padding: 34px;
}

.about-card-large p {
    color: #dce5f2;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.8;
}

.about-card-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.about-card h2 {
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.16;
}

.about-team-card {
    background:
        linear-gradient(180deg, rgba(0, 234, 255, 0.07), rgba(255, 255, 255, 0.02)),
        var(--panel);
}

.about-team-group {
    margin-top: 24px;
}

.about-team-group h3 {
    color: var(--muted);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.about-name-list {
    display: grid;
    gap: 10px;
}

.about-name-list span {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-weight: 900;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.about-feature-card {
    padding: 26px;
    transition: 0.2s ease;
}

.about-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 234, 255, 0.18);
    box-shadow:
        var(--shadow),
        0 0 22px rgba(0, 234, 255, 0.08);
}

.about-feature-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.about-feature-card p {
    color: var(--muted);
    font-size: 15px;
}

.about-timeline-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.about-timeline {
    position: relative;
    display: grid;
    gap: 22px;
}

.about-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 190px;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 14px rgba(0, 234, 255, 0.28);
}

.about-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.about-timeline-item::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 184px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 18px rgba(0, 234, 255, 0.45);
    z-index: 2;
}

.about-timeline-date {
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 22px;
    text-align: right;
}

.about-timeline-content {
    padding: 24px;
}

.about-timeline-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.about-timeline-content p {
    color: var(--muted);
}

@media (max-width: 1100px) {
    .about-grid,
    .about-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .about-grid,
    .about-feature-grid,
    .about-timeline-item {
        grid-template-columns: 1fr;
    }

    .about-timeline::before,
    .about-timeline-item::before {
        display: none;
    }

    .about-timeline-date {
        padding-top: 0;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .about-card {
        padding: 26px 20px;
    }
}
/* FAQ */

.faq-section {
    padding: 80px 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(20,20,20,0.85);
    backdrop-filter: blur(10px);
}

.faq-question {
    width: 100%;
    padding: 20px;
    border: none;
    background: transparent;
    color: #fff;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    color: #ccc;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}
/* ==============================
   RP-Einsteigerbereich
   Datei: rp-einsteiger.php
   Diese Ergänzung unten an die styles.css anhängen
============================== */

.rp-beginner-page {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 80px;
}

.rp-beginner-hero {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 76px 34px;
    margin-bottom: 42px;
    background:
        linear-gradient(135deg, rgba(0 , 234, 255, 0.42), rgba(8, 8, 12, 0.94)),
        radial-gradient(circle at top right, rgba(0, 234, 255, 0.22), transparent 36%),
        rgba(14, 14, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.rp-beginner-hero::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(0, 234, 255, 0.2);
    filter: blur(10px);
}

.rp-beginner-hero__content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.rp-beginner-kicker,
.rp-beginner-heading span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #4dd5ff;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rp-beginner-hero h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 1;
}

.rp-beginner-hero p,
.rp-beginner-card p,
.rp-beginner-term p,
.rp-beginner-step p,
.rp-beginner-cta p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.rp-beginner-section {
    margin-top: 42px;
}

.rp-beginner-heading {
    margin-bottom: 22px;
}

.rp-beginner-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.rp-beginner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.rp-beginner-grid--intro {
    grid-template-columns: 2fr 1fr 1fr;
}

.rp-beginner-card,
.rp-beginner-term,
.rp-beginner-step {
    background: rgba(16, 16, 24, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.rp-beginner-card--large {
    min-height: 100%;
}

.rp-beginner-card--accent {
    border-color: rgba(0, 234, 255, 0.34);
    background:
        linear-gradient(135deg, rgba(0, 234, 255, 0.18), rgba(16, 16, 24, 0.92));
}

.rp-beginner-card h2,
.rp-beginner-card h3,
.rp-beginner-term strong,
.rp-beginner-step h3 {
    color: #ffffff;
}

.rp-beginner-card h2,
.rp-beginner-card h3,
.rp-beginner-step h3 {
    margin: 0 0 12px;
}

.rp-beginner-card p:last-child,
.rp-beginner-term p:last-child,
.rp-beginner-step p:last-child,
.rp-beginner-cta p:last-of-type {
    margin-bottom: 0;
}

.rp-beginner-card ul {
    margin: 14px 0 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.rp-beginner-card li::marker {
    color: #4df3ff;
}

.rp-beginner-terms {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.rp-beginner-term strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.rp-beginner-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.rp-beginner-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(0, 234, 255, 0.14);
    color: #4df9ff;
    font-weight: 800;
}

.rp-beginner-two-col {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 18px;
}

.rp-beginner-cta {
    margin-top: 46px;
    padding: 38px;
    text-align: center;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(0, 234, 255, 0.28), rgba(16, 16, 24, 0.92)),
        rgba(16, 16, 24, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.rp-beginner-cta h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.rp-beginner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 13px 24px;
    border-radius: 999px;
    background: #4dd5ff;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 28px rgba(77, 213, 255, 0.28);
}

.rp-beginner-button:hover {
    transform: translateY(-2px);
    background: #4df3ff;
    box-shadow: 0 16px 34px rgba(77, 213, 255, 0.32);
}

@media (max-width: 980px) {
    .rp-beginner-grid,
    .rp-beginner-grid--intro,
    .rp-beginner-steps,
    .rp-beginner-two-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .rp-beginner-page {
        width: min(100% - 22px, 1180px);
        padding-top: 28px;
    }

    .rp-beginner-hero {
        padding: 48px 22px;
        border-radius: 22px;
    }

    .rp-beginner-grid,
    .rp-beginner-grid--intro,
    .rp-beginner-terms,
    .rp-beginner-steps,
    .rp-beginner-two-col {
        grid-template-columns: 1fr;
    }

    .rp-beginner-card,
    .rp-beginner-term,
    .rp-beginner-step,
    .rp-beginner-cta {
        padding: 22px;
        border-radius: 20px;
    }
}

/* Adminbereich / Login */
.admin-login-header,
.admin-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 12, 18, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.admin-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 18px;
}

.admin-nav a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 900;
    transition: 0.2s ease;
}

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

.admin-login-page,
.admin-page {
    min-height: 100vh;
    padding: 70px 0;
}

.admin-login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100% - 32px, 560px);
    margin: 0 auto;
}

.admin-login-card,
.admin-panel,
.admin-dashboard-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.admin-login-card {
    width: 100%;
    padding: 38px;
}

.admin-login-card h1,
.admin-page-head h1 {
    margin-bottom: 12px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
}

.admin-login-card p,
.admin-page-head p {
    color: var(--muted);
    margin-bottom: 24px;
}

.admin-page-head {
    margin-bottom: 30px;
}

.admin-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.admin-dashboard-card {
    display: block;
    padding: 26px;
    transition: 0.2s ease;
}

.admin-dashboard-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 234, 255, 0.18);
    box-shadow: var(--shadow), 0 0 22px rgba(0, 234, 255, 0.08);
}

.admin-dashboard-card span {
    display: block;
    font-size: 34px;
    margin-bottom: 12px;
}

.admin-dashboard-card h2,
.admin-panel h2 {
    margin-bottom: 10px;
}

.admin-dashboard-card p {
    color: var(--muted);
}

.admin-panel {
    margin-bottom: 22px;
    padding: 26px;
}

.admin-list h2 {
    margin: 28px 0 16px;
}

.admin-panel summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    color: var(--text);
    font-size: 18px;
}

.admin-panel summary span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.admin-form {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.admin-grid-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 900;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font: inherit;
    padding: 13px 14px;
    outline: none;
}

.admin-form textarea {
    resize: vertical;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    border-color: rgba(0, 234, 255, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 234, 255, 0.08);
}

.admin-full,
.admin-permission-box {
    grid-column: 1 / -1;
}

.admin-check {
    display: flex !important;
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: 10px !important;
}

.admin-check input,
.admin-permission-box input {
    width: auto;
}

.admin-permission-box {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.admin-permission-box div {
    display: grid;
    gap: 8px;
}

.admin-alert {
    margin-bottom: 20px;
    padding: 15px 18px;
    border-radius: 16px;
    font-weight: 800;
}

.admin-alert-success {
    background: rgba(0, 234, 255, 0.10);
    border: 1px solid rgba(0, 234, 255, 0.25);
    color: var(--primary);
}

.admin-alert-error {
    background: rgba(255, 75, 75, 0.12);
    border: 1px solid rgba(255, 75, 75, 0.28);
    color: #ff8d8d;
}

.admin-danger-btn {
    margin-top: 12px;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 75, 75, 0.28);
    border-radius: 12px;
    background: rgba(255, 75, 75, 0.12);
    color: #ff8d8d;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.admin-danger-btn:hover {
    filter: brightness(1.1);
}

@media (max-width: 1100px) {
    .admin-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .admin-header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
    }

    .admin-nav {
        justify-content: flex-start;
    }

    .admin-grid-form,
    .admin-permission-box,
    .admin-card-grid {
        grid-template-columns: 1fr;
    }

    .admin-login-card,
    .admin-panel {
        padding: 24px;
    }
}

/* Admin Uploads & Rechteauswahl */
.admin-form input[type="file"] {
    padding: 11px 14px;
    cursor: pointer;
}

.admin-form input[type="file"]::file-selector-button {
    margin-right: 12px;
    padding: 9px 14px;
    border: 1px solid rgba(0, 234, 255, 0.28);
    border-radius: 11px;
    background: rgba(0, 234, 255, 0.12);
    color: var(--primary);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.admin-image-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.admin-image-preview img {
    width: 140px;
    height: 86px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.admin-image-preview span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 900;
}

.admin-permission-box {
    align-items: stretch;
    padding: 0;
    border: 0;
    background: transparent;
}

.admin-permission-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.admin-permission-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-permission-title span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 234, 255, 0.10);
    border: 1px solid rgba(0, 234, 255, 0.20);
}

.admin-switch {
    display: flex !important;
    align-items: center;
    grid-template-columns: none !important;
    gap: 10px !important;
    color: var(--muted) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    cursor: pointer;
}

.admin-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.admin-switch span {
    position: relative;
    width: 46px;
    height: 25px;
    flex: 0 0 46px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.13);
    transition: 0.2s ease;
}

.admin-switch span::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--muted);
    transition: 0.2s ease;
}

.admin-switch input:checked + span {
    background: rgba(0, 234, 255, 0.22);
    border-color: rgba(0, 234, 255, 0.42);
    box-shadow: 0 0 16px rgba(0, 234, 255, 0.10);
}

.admin-switch input:checked + span::after {
    left: 24px;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(0, 234, 255, 0.35);
}


/* Team Rollen-Badges / Organigramm */
.team-org-badges {
    position: relative;
    z-index: 1;
    margin-top: 2px;
}

.team-org-card .team-role-badge {
    min-height: 28px;
    font-size: 11px;
}
