/* ==========================================================================
   UNIGLAS Azubi-Microsite – Sci-Fi / Neon Game-Style
   Aufgebaut in einzelnen Sektionen, damit sie sich später
   1:1 als Contao-Inhaltselemente übernehmen lassen.
   ========================================================================== */

/* -------- 1. Tokens / Variablen -------- */
:root {
    --color-bg: #000000;       /* identisch zum Video-Hintergrund -> nahtloser Übergang */
    --color-bg-2: #0a0a14;
    --color-bg-3: #11112a;
    --color-text: #e6e9ff;
    --color-text-dim: #a3a9c9;

    --neon-pink: #ff2db5;
    --neon-pink-soft: #ff7ad1;
    --neon-cyan: #4ffce8;
    --neon-cyan-soft: #93fff3;
    --neon-green: #39ff14;
    --neon-blue: #4d8bff;

    --border-neon: 1px solid rgba(79, 252, 232, 0.6);
    --shadow-pink: 0 0 12px rgba(255, 45, 181, 0.55), 0 0 28px rgba(255, 45, 181, 0.35);
    --shadow-cyan: 0 0 10px rgba(79, 252, 232, 0.55), 0 0 24px rgba(79, 252, 232, 0.3);

    --radius-pill: 999px;
    --radius-md: 8px;

    --font-display: "Orbitron", "Rajdhani", "Eurostile", "Segoe UI", sans-serif;
    --font-body: "Rajdhani", "Titillium Web", "Segoe UI", system-ui, sans-serif;

    --container: 1200px;
}

/* -------- 2. Reset / Basics -------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: var(--neon-cyan); text-decoration: none; }
a:hover { color: var(--neon-pink); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* -------- 3. Typo -------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 0.6em;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.05; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.15; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.text-neon-pink   { color: var(--neon-pink);  text-shadow: var(--shadow-pink); }
.text-neon-cyan   { color: var(--neon-cyan);  text-shadow: var(--shadow-cyan); }
.text-neon-green  { color: var(--neon-green); text-shadow: 0 0 10px rgba(57,255,20,.6); }

/* -------- 4. Buttons -------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: var(--shadow-pink);
}
.btn:hover {
    background: var(--neon-pink);
    color: #fff;
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(0,0,0,0.4);
}
.btn--cyan {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
}
.btn--cyan:hover { background: var(--neon-cyan); color: #021317; }
.btn[hidden] { display: none; }

/* -------- 5. HUD-Rahmen (wiederverwendbar) -------- */
.hud-frame {
    position: relative;
    border: var(--border-neon);
    padding: 32px;
    background: rgba(8, 8, 24, 0.6);
    backdrop-filter: blur(2px);
}
.hud-frame::before,
.hud-frame::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid var(--neon-cyan);
}
.hud-frame::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.hud-frame::after  { bottom: -2px; right: -2px; border-left: none; border-top: none; }

/* Pink-Variante */
.hud-frame--pink { border: 1px solid rgba(255, 45, 181, 0.6); }
.hud-frame--pink::before, .hud-frame--pink::after { border-color: var(--neon-pink); }

/* -------- 6. Header (Logo zentriert, Sprach-Flags rechts) -------- */
.site-header {
    position: absolute;       /* schwebt über dem Hero-Hintergrund */
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 22px 0 0;
    background: transparent;
}
.site-header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.site-header .logo {
    grid-column: 2;
    display: inline-flex;
    justify-content: center;
}
.site-header .logo img,
.site-header .logo svg { height: 28px; width: auto; display: block; }

.lang-switch {
    grid-column: 3;
    justify-self: end;
    display: flex;
    gap: 8px;
    align-items: center;
}
.lang-switch a {
    display: block;
    width: 22px;
    height: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    overflow: hidden;
    line-height: 0;
    transition: transform 0.15s ease, border-color 0.15s ease;
}
.lang-switch a:hover { border-color: #fff; transform: scale(1.1); }
.lang-switch a svg { width: 100%; height: 100%; display: block; }

/* Solid-Variante (Detailseiten ohne riesigem Hero-BG) */
.site-header--solid {
    position: relative;
    background: transparent;
    padding-top: 24px;
    padding-bottom: 16px;
}

/* Detailseiten: Logo im Footer in passender Höhe */
.footer-brand .logo img { height: 34px; display: block; }

/* -------- 7. Hero mit Circuit-Board-Hintergrund -------- */
.hero {
    position: relative;
    min-height: clamp(540px, 50vw, 760px); /* PDF-Verhältnis: 770/1531 ≈ 0.5 der Breite */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #061226;
    background-image: url("../img/bg-hero.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.85) 92%, #000 100%);
    pointer-events: none;
}
.hero__content {
    position: relative;
    z-index: 2;
    padding: 130px 24px 90px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/* Hero-Text – exakt zum PDF-Verhältnis (WILLKOMMEN & AUSBILDUNG = 107/1531 ≈ 7vw) */
.hero__welcome,
.hero__title {
    font-family: var(--font-display);
    font-weight: 600;
    color: #ff7fd1;
    font-size: clamp(1.9rem, 6.2vw, 6.2rem);
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: uppercase;
    line-height: 1;
    text-shadow:
        0 0 4px rgba(255,255,255,0.4),
        0 0 12px rgba(255,45,181,0.95),
        0 0 28px rgba(255,45,181,0.85),
        0 0 60px rgba(255,45,181,0.6);
    white-space: nowrap;
}
.hero__title { font-size: clamp(1.6rem, 5.4vw, 5.4rem); margin-top: 8px; }
.hero__sub {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(0.9rem, 1.6vw, 1.4rem);
    letter-spacing: 0.35em;
    color: #fff;
    margin: 18px 0 14px;
    text-transform: uppercase;
    text-shadow: 0 0 4px rgba(255,255,255,0.18);
}
.hero__tagline {
    font-family: var(--font-display);
    font-weight: 500;
    color: #93fff3;
    font-size: clamp(0.85rem, 2.1vw, 2rem);
    letter-spacing: 0.06em;
    margin: 36px 0 0;
    text-transform: uppercase;
    line-height: 1.1;
    white-space: nowrap;
    text-shadow:
        0 0 4px rgba(255,255,255,0.4),
        0 0 12px rgba(79,252,232,0.95),
        0 0 24px rgba(79,252,232,0.75),
        0 0 48px rgba(79,252,232,0.5);
}
@media (max-width: 600px) {
    .hero__tagline { white-space: normal; font-size: 1.05rem; line-height: 1.3; }
}

/* -------- 8. Job-Picker -------- */
.section { padding: 110px 0; position: relative; }
.section__title {
    text-align: center;
    margin: 0 auto 56px;
    font-family: var(--font-display);
    font-weight: 600;
    color: #93fff3;
    font-size: clamp(1.1rem, 2.5vw, 2.2rem);
    letter-spacing: 0.04em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow:
        0 0 5px rgba(79,252,232,0.95),
        0 0 18px rgba(79,252,232,0.7),
        0 0 36px rgba(79,252,232,0.5);
}
.section__title--pink {
    color: #ff5fc6;
    text-shadow:
        0 0 6px rgba(255,45,181,0.95),
        0 0 22px rgba(255,45,181,0.75),
        0 0 46px rgba(255,45,181,0.55);
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 26px;
    max-width: 1150px;
    margin: 0 auto;
    align-items: stretch;
}
/* Spaltenzahl an die verfügbare Breite koppeln: 3 Spalten nur, wenn die
   Buttons breit genug für eine Zeile sind – sonst 2 bzw. 1 Spalte. */
@media (max-width: 1179px) { .job-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 800px; } }
@media (max-width: 800px)  { .job-grid { grid-template-columns: 1fr; max-width: 460px; } }
.job-btn {
    appearance: none;
    background: transparent;
    border: 1.5px solid #4fb3c9;
    border-radius: 999px;
    color: #ff5fc6;
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-wrap: break-word;
    padding: 16px 22px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.25;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    text-shadow:
        0 0 4px rgba(255,45,181,0.85),
        0 0 12px rgba(255,45,181,0.55);
}
.job-btn:hover,
.job-btn.is-active {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 14px rgba(79,252,232,0.6);
}

/* -------- 9. Berufs-Vorschau (Stage) -------- */
.stage {
    margin-top: 60px;
    text-align: center;
    position: relative;
}
.stage__media {
    position: relative;
    display: block;
    max-width: 1200px;
    width: 100%;
    aspect-ratio: 16/9;
    margin: 0 auto;
    overflow: hidden;
    background: transparent;
}
.stage__media-fallback {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
    pointer-events: none;
}
.stage__media video {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: transparent;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.stage__media.is-playing video { opacity: 1; }
.stage__cta {
    margin-top: 30px;
}

/* -------- 10. FAQ (Sci-Fi Korridor) -------- */
.faq-section {
    background-color: #000;
    background-image:
        linear-gradient(180deg, #000 0%, rgba(0,0,0,0.35) 14%, rgba(0,0,0,0.35) 86%, #000 100%),
        url("../img/bg-faq.jpg");
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    position: relative;
    overflow: hidden;
}
.faq-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.faq-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.faq-row .faq-item { flex: 0 0 auto; width: 540px; max-width: 100%; }
.faq-deco {
    flex: 1;
    position: relative;
    height: 28px;
    background:
        linear-gradient(90deg, transparent, var(--neon-cyan)) center calc(50% - 6px) / 100% 1.5px no-repeat,
        linear-gradient(90deg, transparent, var(--neon-cyan)) center calc(50% + 6px) / 100% 1.5px no-repeat;
    filter: drop-shadow(0 0 3px var(--neon-cyan));
}
.faq-deco--right {
    background:
        linear-gradient(90deg, var(--neon-cyan), transparent) center calc(50% - 6px) / 100% 1.5px no-repeat,
        linear-gradient(90deg, var(--neon-cyan), transparent) center calc(50% + 6px) / 100% 1.5px no-repeat;
}
.faq-deco::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 6px var(--neon-cyan);
    transform: translateY(-50%);
}
.faq-deco--left::before  { left: 0; }
.faq-deco--right::before { right: 0; }
.faq-item {
    position: relative;
    border: 1.5px solid var(--neon-cyan);
    background: rgba(8, 22, 30, 0.55);
    padding: 36px 110px;
    border-radius: 4px;
    clip-path: polygon(
        60px 0, calc(100% - 60px) 0, 100% 50%,
        calc(100% - 60px) 100%, 60px 100%, 0 50%);
    box-shadow: 0 0 24px rgba(79,252,232,0.35);
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 110px;
    justify-content: center;
}
.faq-item:hover { box-shadow: 0 0 30px rgba(79,252,232,0.5); }
.faq-item__q {
    /* innere pinke Pill */
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.82rem;
    padding: 12px 32px;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: var(--shadow-pink);
    transition: background 0.2s, color 0.2s;
    max-width: 100%;
    line-height: 1.25;
    text-align: center;
}
.faq-item__q:hover { background: var(--neon-pink); color: #fff; }
.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--color-text);
    text-align: center;
    width: 100%;
}
.faq-item.is-open .faq-item__a {
    max-height: 320px;
    padding-top: 18px;
}

/* -------- 11. Standorte -------- */
.locations-section {
    background-color: #000;
    background-image:
        linear-gradient(180deg, #000 0%, rgba(0,0,0,0.20) 18%, rgba(0,0,0,0.20) 80%, #000 100%),
        url("../img/bg-locations.jpg");
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    position: relative;
}
.locations-frame {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 90px;
    background: rgba(0,0,0,0.55);
    position: relative;
}
/* Cyan-Border 4 Seiten */
.locations-frame { border: 2px solid var(--neon-cyan); box-shadow: 0 0 28px rgba(79,252,232,0.45), inset 0 0 28px rgba(79,252,232,0.08); }
/* Eck-Brackets */
.locations-frame::before,
.locations-frame::after {
    content: "";
    position: absolute;
    width: 56px;
    height: 56px;
    border: 3px solid var(--neon-cyan);
}
.locations-frame::before { top: -10px; left: -10px; border-right: 0; border-bottom: 0; }
.locations-frame::after  { bottom: -10px; right: -10px; border-left: 0; border-top: 0; }
/* Unterer Cyan-Tab in der Mitte */
.locations-frame > .frame-tab {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 18px;
    background: var(--neon-cyan);
    clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 100%, 0 100%);
    box-shadow: 0 0 24px var(--neon-cyan);
}
/* Oben mittige Deko: 3 kleine Punkte */
.locations-frame::after { content: ""; }
.locations-frame > .frame-top {
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.locations-frame > .frame-top span {
    width: 10px; height: 10px;
    background: var(--neon-cyan);
    transform: rotate(45deg);
    box-shadow: 0 0 8px var(--neon-cyan);
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 56px;
}
.location {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 4px rgba(255,255,255,0.15);
}
.location::before {
    content: "";
    width: 20px; height: 26px;
    background: var(--neon-pink);
    clip-path: path("M10 0C4.48 0 0 4.48 0 10c0 7.5 10 16 10 16s10-8.5 10-16C20 4.48 15.52 0 10 0Zm0 13.5a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Z");
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px var(--neon-pink));
}

/* -------- 12. Footer -------- */
.site-footer {
    background: #02020a;
    border-top: 1px solid rgba(79, 252, 232, 0.15);
    padding: 60px 0 30px;
    color: var(--color-text-dim);
    font-size: 0.92rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}
.footer-grid h4 {
    color: var(--neon-cyan);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 6px; }
.footer-grid a { color: var(--color-text-dim); }
.footer-grid a:hover { color: var(--neon-cyan); }
.footer-brand .logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    display: inline-block;
}
.footer-brand .logo span { color: var(--neon-cyan); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 18px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ==========================================================================
   DETAIL-SEITE (z.B. Kaufmann/-frau Groß- und Außenhandel)
   ========================================================================== */

.detail-header {
    padding: 40px 0 60px;
    text-align: center;
    background: radial-gradient(ellipse at top, #1a0a2e 0%, #000000 60%);
    position: relative;
}
.detail-header .eyebrow {
    font-family: var(--font-display);
    font-weight: 400;
    color: #ff5fc6;
    letter-spacing: 0.22em;
    font-size: clamp(0.78rem, 1.4vw, 1.25rem);
    margin-bottom: 18px;
    text-shadow:
        0 0 5px rgba(255,45,181,0.85),
        0 0 14px rgba(255,45,181,0.55);
    text-transform: uppercase;
    line-height: 1;
}
.detail-header h1 {
    color: var(--neon-pink);
    text-shadow: var(--shadow-pink);
}
.detail-header .gender {
    font-family: var(--font-display);
    font-weight: 400;
    color: #ff5fc6;
    letter-spacing: 0.22em;
    font-size: clamp(0.7rem, 1.1vw, 1rem);
    text-shadow:
        0 0 5px rgba(255,45,181,0.7),
        0 0 14px rgba(255,45,181,0.4);
    margin-top: 18px;
}

/* Detail-Titel: reiner pinker Neon-Text (kein Pill) */
.detail-header h1 {
    font-family: var(--font-display);
    font-weight: 600;
    color: #ff5fc6;
    font-size: clamp(1.4rem, 3.6vw, 3.4rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0 auto;
    max-width: 100%;
    text-shadow:
        0 0 8px rgba(255,45,181,0.95),
        0 0 22px rgba(255,45,181,0.8),
        0 0 50px rgba(255,45,181,0.55);
}
.detail-intro {
    max-width: 820px;
    margin: 32px auto 0;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.6;
    font-size: 0.88rem;
    text-shadow: 0 0 6px rgba(255,255,255,0.15);
}

/* Charakter + Info-Karten */
.character-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    padding: 80px 0;
}
.character-block__media {
    position: relative;
    aspect-ratio: 16/12;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: transparent;
}
.character-block__media-fallback {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
    pointer-events: none;
}
.character-block__media video {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: transparent;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.character-block__media.is-playing video { opacity: 1; }
.character-block__cta { text-align: center; margin-top: 24px; }
.character-block__lead {
    text-align: center;
    margin-top: 24px;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-display);
    font-size: 0.85rem;
}

.info-stack { display: flex; flex-direction: column; gap: 28px; }
.info-card {
    border: 1px solid var(--neon-pink);
    background: rgba(20, 8, 20, 0.6);
    padding: 28px 32px;
    box-shadow: 0 0 16px rgba(255, 45, 181, 0.22);
    position: relative;
}
.info-card::before, .info-card::after {
    content: "";
    position: absolute;
    width: 18px; height: 18px;
    border: 2px solid var(--neon-pink);
}
.info-card::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.info-card::after  { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }

.info-card h3 {
    color: var(--neon-cyan);
    text-shadow: var(--shadow-cyan);
    text-align: center;
    margin-bottom: 16px;
}
.info-card ul {
    list-style: none; padding: 0; margin: 0;
    color: var(--color-text);
    font-size: 0.95rem;
}
.info-card li {
    padding: 6px 0 6px 20px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.78rem;
    line-height: 1.5;
}
.info-card li::before {
    content: "›";
    color: var(--neon-pink);
    position: absolute;
    left: 0; top: 4px;
    font-weight: 700;
}

/* Video-Vorschau */
.preview-section { padding: 80px 0; text-align: center; }
.preview-section h2 { color: var(--neon-cyan); text-shadow: var(--shadow-cyan); margin-bottom: 36px; }
.preview-video-wrap {
    max-width: 920px;
    margin: 0 auto;
    border: 1px solid rgba(79,252,232,0.4);
    box-shadow: 0 0 26px rgba(79,252,232,0.25);
}
.preview-video-wrap video { width: 100%; display: block; }

/* Home-Base / Gesellschafter */
.homebase-section {
    padding: 80px 0;
    background-color: #000;
    background-image:
        linear-gradient(180deg, #000 0%, rgba(0,0,0,0.5) 16%, rgba(0,0,0,0.5) 84%, #000 100%),
        url("../img/bg-homebase.jpg");
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    position: relative;
}
.homebase-section h2 {
    color: var(--neon-cyan);
    text-shadow: var(--shadow-cyan);
    text-align: center;
    margin-bottom: 48px;
}
.homebase-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 56px;
    align-items: start;
}
/* Linker HUD-Frame mit dekorativem Streifen unten */
.partner-list {
    position: relative;
    border: 1.5px solid var(--neon-cyan);
    background: rgba(8, 14, 22, 0.4);
    padding: 36px 40px 44px;
    box-shadow:
        0 0 24px rgba(79,252,232,0.35),
        inset 0 0 24px rgba(79,252,232,0.08);
}
.partner-list::before,
.partner-list::after {
    content: "";
    position: absolute;
    width: 36px; height: 36px;
    border: 3px solid var(--neon-cyan);
    pointer-events: none;
}
.partner-list::before { top: -8px; left: -8px; border-right: 0; border-bottom: 0; }
.partner-list::after  { bottom: -8px; right: -8px; border-left: 0; border-top: 0; }
.partner-list ul { list-style: none; padding: 0; margin: 0; }
.partner-list li {
    padding: 11px 0;
    cursor: pointer;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: color 0.2s;
}
.partner-list li.is-active,
.partner-list li:hover { color: var(--neon-pink); text-shadow: var(--shadow-pink); }

/* HUD-Deko-Band unter der Partner-Liste */
.homebase-deco {
    position: relative;
    margin-top: 22px;
    height: 38px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--neon-cyan);
}
.homebase-deco .hex {
    width: 26px; height: 28px;
    border: 2px solid var(--neon-cyan);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    background: rgba(79,252,232,0.12);
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px var(--neon-cyan));
}
.homebase-deco .bar {
    flex: 1;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan) 0%, var(--neon-cyan) 80%, transparent 100%);
    box-shadow: 0 0 10px var(--neon-cyan);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}
.homebase-deco .arrow {
    width: 16px; height: 22px;
    background: var(--neon-cyan);
    clip-path: polygon(0 0, 50% 50%, 0 100%, 30% 100%, 80% 50%, 30% 0);
    filter: drop-shadow(0 0 6px var(--neon-cyan));
    flex-shrink: 0;
}

/* Rechter HUD-Frame Adress-Karte */
.partner-card {
    position: relative;
    border: 1.5px solid var(--neon-cyan);
    background: rgba(8, 14, 22, 0.4);
    padding: 40px 36px;
    box-shadow:
        0 0 22px rgba(79,252,232,0.35),
        inset 0 0 18px rgba(79,252,232,0.08);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.7;
}
.partner-card::before,
.partner-card::after {
    content: "";
    position: absolute;
    width: 32px; height: 32px;
    border: 3px solid var(--neon-cyan);
    pointer-events: none;
}
.partner-card::before { top: -8px; left: -8px; border-right: 0; border-bottom: 0; }
.partner-card::after  { bottom: -8px; right: -8px; border-left: 0; border-top: 0; }
.partner-card strong {
    display: block;
    color: var(--neon-pink);
    font-size: 1.05rem;
    margin-bottom: 14px;
    letter-spacing: 0.12em;
    text-shadow: var(--shadow-pink);
}
.partner-card a { color: var(--neon-cyan); text-decoration: underline; }

/* Level-Up Karrierecards */
.levelup-section {
    padding: 80px 0 100px;
    text-align: center;
}
.levelup-section h2 {
    color: var(--neon-pink);
    text-shadow: var(--shadow-pink);
    margin-bottom: 24px;
}
.levelup-section .intro {
    max-width: 880px;
    margin: 0 auto 48px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--color-text-dim);
    line-height: 1.7;
}
.levelup-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.level-card {
    flex: 0 1 calc((100% - 56px) / 3);
    max-width: calc((100% - 56px) / 3);
    position: relative;
    border: 2px solid var(--neon-pink);
    padding: 56px 26px 32px;
    background: rgba(20, 8, 20, 0.55);
    box-shadow: 0 0 22px rgba(255,45,181,0.3);
    clip-path: polygon(
        18px 0, calc(100% - 18px) 0,
        100% 18px, 100% calc(100% - 18px),
        calc(100% - 18px) 100%, 18px 100%,
        0 calc(100% - 18px), 0 18px);
}
/* Hexagon-Deko über jeder Karte */
.level-card::before {
    content: "";
    position: absolute;
    top: -22px; left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 50px;
    background: var(--color-bg);
    border: 2px solid var(--neon-pink);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    box-shadow: 0 0 14px rgba(255,45,181,0.55);
}
.level-card::after {
    content: "";
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 22px;
    background: var(--neon-pink);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    box-shadow: 0 0 10px var(--neon-pink);
    z-index: 1;
}
.level-card h3 {
    color: var(--neon-cyan);
    text-shadow: var(--shadow-cyan);
    margin-bottom: 16px;
    letter-spacing: 0.08em;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    overflow-wrap: anywhere;
    -webkit-hyphens: auto;
    hyphens: auto;
}
.level-card p {
    margin: 0;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--color-text);
}

/* -------- 13. Responsive -------- */
@media (max-width: 900px) {
    .character-block, .homebase-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
    .level-card { flex-basis: calc((100% - 28px) / 2); max-width: calc((100% - 28px) / 2); }
    .section { padding: 72px 0; }
    .hero { min-height: 720px; }
    .locations-frame { padding: 40px 28px; }
}

@media (max-width: 640px) {
    body { font-size: 16px; }

    .site-header { padding-top: 16px; }
    .site-header .logo img { height: 22px; }
    .lang-switch { gap: 6px; }
    .lang-switch a { width: 18px; height: 12px; }

    .hero { min-height: 520px; }
    .hero__content { padding: 70px 14px 40px; gap: 2px; }
    .hero__welcome { font-size: clamp(1.4rem, 8.5vw, 2.4rem); white-space: normal; line-height: 1.05; }
    .hero__title   { font-size: clamp(1.3rem, 7.6vw, 2.2rem); white-space: normal; margin-top: 6px; line-height: 1.05; }
    .hero__sub     { font-size: 0.78rem; letter-spacing: 0.22em; margin: 8px 0 4px; }
    .hero__tagline { font-size: 0.85rem; letter-spacing: 0.05em; white-space: normal; margin-top: 18px; line-height: 1.3; }

    .section { padding: 56px 0; }
    .section__title { font-size: clamp(1rem, 4.4vw, 1.4rem); margin-bottom: 32px; }

    .job-grid { gap: 14px; }
    .job-btn { padding: 13px 18px; font-size: 0.82rem; letter-spacing: 0.1em; }

    .stage { margin-top: 40px; }
    .stage__media { aspect-ratio: 4/3; }

    .faq-list { gap: 18px; }
    .faq-row { gap: 6px; }
    .faq-row .faq-item { width: auto; flex: 1; }
    .faq-deco { display: none; }
    .faq-item { padding: 20px 26px; min-height: 80px;
        clip-path: polygon(22px 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 22px 100%, 0 50%); }
    .faq-item__q { font-size: 0.78rem; padding: 8px 22px; min-width: 0; }

    .locations-frame { padding: 36px 22px 44px; }
    .locations-grid { grid-template-columns: 1fr; gap: 14px; }
    .location { justify-content: flex-start; font-size: 0.82rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .levelup-grid { gap: 24px; }
    .level-card { flex-basis: 100%; max-width: 100%; }
    .footer-brand .logo img { height: 26px; }

    /* Detailseite */
    .detail-header { padding: 24px 0 36px; }
    .detail-header .eyebrow { font-size: 0.72rem; margin-bottom: 12px; }
    .detail-header h1 { font-size: clamp(1.1rem, 6.8vw, 1.9rem); line-height: 1.08; }
    .detail-header .gender { font-size: 0.68rem; margin-top: 12px; }
    .detail-intro { font-size: 0.86rem; line-height: 1.5; }
    .character-block { padding: 40px 0 28px; gap: 28px; }
    .info-card { padding: 22px 22px; }
    .info-card h3 { font-size: 1rem; }
    .info-card li { font-size: 0.78rem; }
    .preview-section { padding: 48px 0; }
    .preview-video-wrap { margin: 0 4px; }
    .homebase-section { padding: 48px 0; }
    .partner-list { padding: 24px 22px 32px; }
    .partner-list li { font-size: 0.82rem; padding: 9px 0; }
    .partner-card { padding: 28px 22px; font-size: 0.82rem; }
    .level-card { padding: 48px 20px 26px; }
}

@media (max-width: 400px) {
    .hero { min-height: 480px; }
    .hero__welcome { font-size: clamp(1.2rem, 8vw, 2rem); }
    .hero__title   { font-size: clamp(1.1rem, 7.2vw, 1.85rem); }
    .detail-header h1 { font-size: 1.3rem; }
}

/* ==========================================================================
   14. FAQ-PAGE (eigene Seite mit Accordion-Karten)
   ========================================================================== */
.faq-page { padding-top: 60px; padding-bottom: 120px; }
.faq-stack {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-card {
    position: relative;
    border: 1.5px solid var(--neon-cyan);
    background: rgba(8, 22, 30, 0.55);
    box-shadow: 0 0 20px rgba(79,252,232,0.25);
    transition: box-shadow 0.25s, border-color 0.25s;
}
.faq-card:hover { box-shadow: 0 0 28px rgba(79,252,232,0.45); }
.faq-card::before, .faq-card::after {
    content: "";
    position: absolute;
    width: 18px; height: 18px;
    border: 2px solid var(--neon-cyan);
    pointer-events: none;
}
.faq-card::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.faq-card::after  { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.faq-card__q {
    width: 100%;
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--neon-pink);
    font-family: var(--font-display);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 22px 60px 22px 28px;
    cursor: pointer;
    position: relative;
    text-shadow: 0 0 6px rgba(255,45,181,0.6);
}
.faq-card__q::after {
    content: "+";
    position: absolute;
    right: 24px; top: 50%;
    transform: translateY(-50%);
    color: var(--neon-cyan);
    font-size: 1.6rem;
    line-height: 1;
    transition: transform 0.25s;
    text-shadow: var(--shadow-cyan);
}
.faq-card.is-open .faq-card__q::after { transform: translateY(-50%) rotate(45deg); }
.faq-card__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
    color: var(--color-text);
    font-size: 0.98rem;
    line-height: 1.65;
}
.faq-card.is-open .faq-card__a {
    max-height: 800px;
    padding: 0 28px 24px;
}
.faq-card__a ul { padding-left: 20px; margin: 8px 0; }
.faq-card__a li { padding: 3px 0; }
.faq-back { text-align: center; margin-top: 56px; }

/* ==========================================================================
   15. ABLAUF-SEITEN (Bewerbung / Ausbildung)
   ========================================================================== */
.steps-section, .levels-section { padding: 60px 0 100px; }
.steps-section {
    background-color: #000;
    background-image:
        linear-gradient(180deg, #000 0%, rgba(0,0,0,0.5) 16%, rgba(0,0,0,0.5) 84%, #000 100%),
        url("../img/bg-steps.jpg");
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    position: relative;
}
.levels-section {
    background-color: #000;
    background-image:
        linear-gradient(180deg, #000 0%, rgba(0,0,0,0.5) 16%, rgba(0,0,0,0.5) 84%, #000 100%),
        url("../img/bg-levels.jpg");
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    position: relative;
}
.step-list {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0 auto;
    max-width: 920px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.step-card {
    position: relative;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 24px;
    align-items: center;
    border: 1.5px solid var(--neon-pink);
    background: rgba(20, 8, 20, 0.55);
    padding: 24px 28px;
    box-shadow: 0 0 18px rgba(255,45,181,0.25);
    transition: transform 0.25s, box-shadow 0.25s;
}
.step-card:hover { transform: translateY(-2px); box-shadow: 0 0 26px rgba(255,45,181,0.4); }
.step-card::before, .step-card::after {
    content: "";
    position: absolute;
    width: 18px; height: 18px;
    border: 2px solid var(--neon-pink);
}
.step-card::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.step-card::after  { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.step-card__num {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--neon-cyan);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    letter-spacing: 0.04em;
    text-shadow: var(--shadow-cyan);
    text-align: center;
}
.step-card__body h3 {
    color: var(--neon-cyan);
    text-shadow: var(--shadow-cyan);
    margin: 0 0 8px;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
}
.step-card__body p { margin: 0; color: var(--color-text); font-size: 0.98rem; line-height: 1.6; }

.achievement-card {
    max-width: 920px;
    margin: 56px auto 0;
    padding: 36px 40px;
    border: 2px solid var(--neon-cyan);
    background: linear-gradient(135deg, rgba(79,252,232,0.08), rgba(255,45,181,0.08));
    box-shadow: 0 0 28px rgba(79,252,232,0.4);
    text-align: center;
    position: relative;
    clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
}
.achievement-card__badge {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--neon-pink);
    font-size: 0.85rem;
    margin-bottom: 14px;
    text-shadow: var(--shadow-pink);
}
.achievement-card p {
    margin: 0;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #fff;
}
.achievement-card--final { background: linear-gradient(135deg, rgba(255,45,181,0.12), rgba(79,252,232,0.08)); border-color: var(--neon-pink); box-shadow: 0 0 28px rgba(255,45,181,0.45); }

.page-cta {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Levels (Ausbildung) */
.level-stages {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}
.stage-card {
    position: relative;
    border: 1.5px solid var(--neon-cyan);
    background: rgba(8, 22, 30, 0.55);
    padding: 28px 30px 30px;
    box-shadow: 0 0 22px rgba(79,252,232,0.28);
}
.stage-card::before, .stage-card::after {
    content: "";
    position: absolute;
    width: 18px; height: 18px;
    border: 2px solid var(--neon-cyan);
}
.stage-card::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.stage-card::after  { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.stage-card--final { border-color: var(--neon-pink); box-shadow: 0 0 22px rgba(255,45,181,0.35); }
.stage-card--final::before, .stage-card--final::after { border-color: var(--neon-pink); }
.stage-card__head { margin-bottom: 14px; }
.stage-card__num {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--neon-pink);
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    text-transform: uppercase;
    margin-bottom: 6px;
    text-shadow: 0 0 8px rgba(255,45,181,0.7);
}
.stage-card__head h3 {
    color: var(--neon-cyan);
    text-shadow: var(--shadow-cyan);
    margin: 0;
    font-size: 1.1rem;
}
.stage-card p { margin: 0 0 10px; color: var(--color-text); font-size: 0.95rem; line-height: 1.55; }
.stage-card ul { padding-left: 18px; margin: 6px 0 0; }
.stage-card li { padding: 4px 0; color: var(--color-text); font-size: 0.94rem; line-height: 1.5; }
.stage-card li strong { color: var(--neon-pink); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; }

.extra-quests {
    max-width: 1000px;
    margin: 56px auto 0;
    padding: 36px;
    border: 1.5px dashed rgba(79,252,232,0.5);
    background: rgba(8, 14, 22, 0.4);
}
.extra-quests__title {
    color: var(--neon-pink);
    text-shadow: var(--shadow-pink);
    text-align: center;
    margin: 0 0 22px;
    font-size: 1.1rem;
}
.extra-quests__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.extra-quest {
    border-left: 3px solid var(--neon-pink);
    padding: 12px 16px;
    background: rgba(255,45,181,0.06);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--color-text);
}
.extra-quests__outro {
    margin: 16px 0 0;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
    line-height: 1.6;
    text-align: center;
    color: var(--color-text-dim);
}

/* Knigge-Video-Section */
.knigge-section { padding: 60px 0 100px; text-align: center; background: radial-gradient(ellipse at center, #100922 0%, #000 70%); }
.knigge-section .section__title { color: var(--neon-pink); text-shadow: var(--shadow-pink); margin-bottom: 28px; }
.knigge-lead {
    max-width: 760px;
    margin: 0 auto 22px;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.6;
}
.knigge-list {
    max-width: 620px;
    margin: 0 auto 22px;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 22px;
    text-align: left;
}
.knigge-list li {
    position: relative;
    padding-left: 26px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--color-text);
}
.knigge-list li::before {
    content: "▶";
    color: var(--neon-cyan);
    position: absolute;
    left: 0; top: 1px;
    font-size: 0.8rem;
    text-shadow: var(--shadow-cyan);
}
.knigge-tip {
    max-width: 760px;
    margin: 0 auto 36px;
    color: var(--color-text-dim);
    font-size: 0.95rem;
    font-style: italic;
}
.knigge-tip strong { color: var(--neon-pink); font-style: normal; }
.preview-video-wrap--lg {
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(79,252,232,0.5);
    box-shadow: 0 0 36px rgba(79,252,232,0.35);
}
.preview-video-wrap--lg video { width: 100%; display: block; aspect-ratio: 16/9; }

/* ==========================================================================
   16. ELTERN-SEITE
   ========================================================================== */
.eltern-section {
    padding: 60px 0 100px;
    background-color: #000;
    background-image:
        linear-gradient(180deg, #000 0%, rgba(0,0,0,0.5) 16%, rgba(0,0,0,0.5) 84%, #000 100%),
        url("../img/bg-eltern.jpg");
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    position: relative;
}
.eltern-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.eltern-card {
    position: relative;
    border: 1.5px solid var(--neon-cyan);
    background: rgba(8, 22, 30, 0.55);
    padding: 28px 28px 30px;
    box-shadow: 0 0 22px rgba(79,252,232,0.25);
    transition: transform 0.25s, box-shadow 0.25s;
}
.eltern-card:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(79,252,232,0.45); }
.eltern-card::before, .eltern-card::after {
    content: "";
    position: absolute;
    width: 18px; height: 18px;
    border: 2px solid var(--neon-cyan);
}
.eltern-card::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.eltern-card::after  { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.eltern-card h3 {
    color: var(--neon-pink);
    text-shadow: var(--shadow-pink);
    font-size: 1rem;
    margin: 0 0 12px;
    letter-spacing: 0.06em;
}
.eltern-card p { margin: 0; color: var(--color-text); font-size: 0.95rem; line-height: 1.6; }

/* ==========================================================================
   17. STANDORT-POPUPS (Hover/Klick)
   ========================================================================== */
.location {
    cursor: pointer;
    position: relative;
    transition: color 0.2s, text-shadow 0.2s;
}
.location:hover,
.location.is-open { color: var(--neon-pink); text-shadow: 0 0 8px rgba(255,45,181,0.7); }
.location__pop {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 280px;
    max-width: 340px;
    padding: 16px 18px;
    background: rgba(2, 8, 14, 0.96);
    border: 1.5px solid var(--neon-cyan);
    box-shadow: 0 0 22px rgba(79,252,232,0.5), inset 0 0 10px rgba(79,252,232,0.1);
    color: var(--color-text);
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.9rem;
    line-height: 1.55;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 30;
    pointer-events: none;
    text-align: left;
}
.location__pop::before {
    content: "";
    position: absolute;
    top: -8px; left: 24px;
    width: 14px; height: 14px;
    background: rgba(2, 8, 14, 0.96);
    border-top: 1.5px solid var(--neon-cyan);
    border-left: 1.5px solid var(--neon-cyan);
    transform: rotate(45deg);
}
.location__pop strong {
    display: block;
    color: var(--neon-pink);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    margin-bottom: 6px;
    text-shadow: 0 0 8px rgba(255,45,181,0.5);
}
.location__pop a { color: var(--neon-cyan); }
.location__pop .location__pop-row { margin: 2px 0; }
.location:hover .location__pop,
.location.is-open .location__pop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
/* Pop nach links bei rechter Spalte */
.locations-grid > .location:nth-child(3n) .location__pop { left: auto; right: 0; }
.locations-grid > .location:nth-child(3n) .location__pop::before { left: auto; right: 24px; }

/* ==========================================================================
   18. RECRUITING-VIDEO-SECTION (Startseite, zwischen Berufe und FAQ)
   ========================================================================== */
.recruiting-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, #0a0a1f 0%, #000 70%);
    position: relative;
}
.recruiting-section .section__title { color: var(--neon-pink); text-shadow: var(--shadow-pink); }
.recruiting-section .intro {
    max-width: 760px;
    margin: -20px auto 36px;
    text-align: center;
    color: var(--color-text-dim);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
    line-height: 1.7;
}
.recruiting-video-wrap {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(255,45,181,0.45);
    box-shadow: 0 0 30px rgba(255,45,181,0.3), 0 0 60px rgba(79,252,232,0.15);
}
.recruiting-video-wrap::before, .recruiting-video-wrap::after {
    content: "";
    position: absolute;
    width: 28px; height: 28px;
    border: 2px solid var(--neon-pink);
    pointer-events: none;
}
.recruiting-video-wrap::before { top: -6px; left: -6px; border-right: 0; border-bottom: 0; }
.recruiting-video-wrap::after  { bottom: -6px; right: -6px; border-left: 0; border-top: 0; }
.recruiting-video-wrap video { width: 100%; display: block; }

/* ==========================================================================
   19. BERUFSSEITE: Video prominent (großer Hero-Block)
   ========================================================================== */
.character-block--hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0 40px;
}
.character-block--hero .character-block__media {
    aspect-ratio: 16/9;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    border: 0;
    box-shadow: none;
    background: transparent;
}
.character-block--hero .character-block__lead { max-width: 820px; margin: 0 auto; }
.character-block--hero .character-block__cta { margin-top: 8px; }

/* Info-Cards in 3-Spalten unter Video */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 16px;
    padding-bottom: 40px;
}

/* ==========================================================================
   20. BERUFSSEITE: Ablauf-/Eltern-Link-Section
   ========================================================================== */
.cross-links-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #000 0%, #08081a 100%);
}
.cross-links-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.cross-link {
    display: block;
    padding: 28px 26px;
    border: 1.5px solid var(--neon-cyan);
    background: rgba(8, 22, 30, 0.5);
    color: var(--color-text);
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    text-align: center;
}
.cross-link:hover {
    transform: translateY(-3px);
    border-color: var(--neon-pink);
    box-shadow: 0 0 24px rgba(255,45,181,0.35);
    color: var(--color-text);
}
.cross-link::before, .cross-link::after {
    content: "";
    position: absolute;
    width: 14px; height: 14px;
    border: 2px solid var(--neon-cyan);
    transition: border-color 0.25s;
}
.cross-link::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.cross-link::after  { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.cross-link:hover::before, .cross-link:hover::after { border-color: var(--neon-pink); }
.cross-link h3 {
    color: var(--neon-cyan);
    text-shadow: var(--shadow-cyan);
    margin: 0 0 8px;
    font-size: 1rem;
    letter-spacing: 0.08em;
    transition: color 0.25s;
}
.cross-link:hover h3 { color: var(--neon-pink); text-shadow: var(--shadow-pink); }
.cross-link p {
    margin: 0;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--color-text-dim);
}

/* ==========================================================================
   21. Responsive Ergänzungen
   ========================================================================== */
@media (max-width: 900px) {
    .level-stages { grid-template-columns: 1fr; }
    .extra-quests__grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .step-card { grid-template-columns: 80px 1fr; gap: 16px; padding: 20px 22px; }
    .step-card__num { font-size: 2rem; }
    .knigge-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .faq-card__q { font-size: 0.85rem; padding: 18px 50px 18px 22px; letter-spacing: 0.06em; }
    .faq-card__q::after { right: 18px; font-size: 1.4rem; }
    .step-card { grid-template-columns: 1fr; text-align: center; }
    .stage-card { padding: 22px 22px; }
    .achievement-card { padding: 26px 22px; }
    .eltern-card { padding: 22px 22px; }
    .location__pop { min-width: 240px; }
    .locations-grid > .location:nth-child(3n) .location__pop { left: 0; right: auto; }
    .locations-grid > .location:nth-child(3n) .location__pop::before { left: 24px; right: auto; }
}
