/* ============================================================
   Rain Tuning & Technik – Stylesheet
   Hauptfarben: Blau & Silber
   ============================================================ */

:root {
    --blue-dark: #0a1a2f;
    --blue: #0d3b66;
    --blue-light: #1e6fbf;
    --blue-accent: #2aa1ff;
    --silver: #c0c5cc;
    --silver-light: #e6e8eb;
    --silver-dark: #8a8f97;
    --white: #ffffff;
    --black: #0b0f15;
    --text: #1a2330;
    --text-light: #5a6577;
    --shadow: 0 10px 30px rgba(10, 26, 47, 0.15);
    --radius: 10px;
    --transition: 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

/* ===== Custom Scrollbar ===== */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--blue-light) var(--blue-dark);
}
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #07111f, #0a1a2f);
    border-left: 1px solid rgba(255,255,255,0.04);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--blue-light), var(--blue-accent));
    border-radius: 10px;
    border: 2px solid #07111f;
    box-shadow: inset 0 0 6px rgba(255,255,255,0.15);
    transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--blue-accent), #7dc8ff);
    box-shadow: 0 0 10px rgba(42,161,255,0.6), inset 0 0 6px rgba(255,255,255,0.25);
}
::-webkit-scrollbar-corner { background: #07111f; }

body {
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--silver-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--blue-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-accent); }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.accent { color: var(--blue-accent); }

/* ===== RP-Banner ===== */
.hero__disclaimer {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--silver);
    opacity: 0.85;
    font-style: italic;
}
.contact-info__note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--silver);
    opacity: 0.8;
}
.footer__rp {
    max-width: 1200px;
    margin: 1rem auto 0;
    padding: 0.75rem 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.75rem;
    color: var(--silver-dark);
    opacity: 0.7;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* ===== Form Status ===== */
.form__status {
    margin-top: 0.25rem;
    min-height: 1.4em;
    font-weight: 500;
    font-size: 0.95rem;
}
.form__status--success { color: #6dd58c; }
.form__status--error   { color: #ff7a7a; }
.form__status--info    { color: var(--silver); }

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 17, 31, 0.85);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.header.is-scrolled {
    background: rgba(7, 17, 31, 0.95);
    border-bottom-color: rgba(255,255,255,0.1);
    box-shadow: 0 10px 32px rgba(0,0,0,0.55);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    transition: padding 0.3s ease;
}
.header.is-scrolled .header__inner { padding: 0.55rem 1.25rem; }

/* Logo + Brand */
.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}
.logo img {
    height: 48px;
    transition: height 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(42,161,255,0.35));
}
.header.is-scrolled .logo img { height: 38px; }
.logo__text {
    font-family: "Orbitron", "Inter", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--silver-light);
    text-transform: uppercase;
}
.logo__text em {
    font-style: normal;
    background: linear-gradient(180deg, #7dc8ff, #2aa1ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Pill-Navigation */
.nav__list {
    display: flex;
    gap: 0.35rem;
    list-style: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 0.3rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.nav__link {
    display: inline-block;
    color: var(--silver-light);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.05rem;
    border-radius: 999px;
    position: relative;
    transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}
.nav__link:hover {
    color: var(--white);
    background: rgba(42,161,255,0.12);
}
.nav__link.is-active {
    color: var(--white);
    background: linear-gradient(90deg, rgba(30,111,191,0.45), rgba(42,161,255,0.45));
    box-shadow: 0 0 0 1px rgba(42,161,255,0.45) inset, 0 4px 16px rgba(42,161,255,0.25);
}
.nav__link--cta {
    background: linear-gradient(90deg, var(--blue-light), var(--blue-accent));
    color: var(--white) !important;
    box-shadow: 0 4px 16px rgba(42,161,255,0.4);
}
.nav__link--cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(42,161,255,0.55);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    cursor: pointer;
    padding: 0.6rem;
    transition: background var(--transition);
}
.nav__toggle:hover { background: rgba(42,161,255,0.18); }
.nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--silver-light);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(circle at 80% 20%, rgba(42,161,255,0.25), transparent 55%),
        radial-gradient(circle at 15% 85%, rgba(30,111,191,0.35), transparent 55%),
        linear-gradient(135deg, #07111f 0%, #0a1a2f 40%, #0d3b66 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

/* Animierte Glow-Blobs */
.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: blobFloat 14s ease-in-out infinite;
}
.hero__blob--1 {
    width: 480px; height: 480px;
    top: -120px; left: -120px;
    background: radial-gradient(circle, #2aa1ff 0%, transparent 70%);
}
.hero__blob--2 {
    width: 520px; height: 520px;
    bottom: -160px; right: -140px;
    background: radial-gradient(circle, #1e6fbf 0%, transparent 70%);
    animation-delay: -5s;
}
.hero__blob--3 {
    width: 320px; height: 320px;
    top: 40%; left: 55%;
    background: radial-gradient(circle, #ffffff33 0%, transparent 70%);
    animation-delay: -9s;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(40px, -30px) scale(1.1); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><path d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-opacity='0.045' stroke-width='1'/></svg>"),
        linear-gradient(180deg, transparent 60%, rgba(7, 17, 31, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}
.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 5rem 1.25rem;
}

/* Logo mit Halo */
.hero__logo-wrap {
    position: relative;
    width: 220px;
    margin: 0 auto 1.75rem;
    animation: fadeUp 0.9s ease both;
}
.hero__logo-wrap::before {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,161,255,0.35) 0%, transparent 65%);
    filter: blur(20px);
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}
.hero__logo {
    width: 100%;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.55)) drop-shadow(0 0 18px rgba(42,161,255,0.25));
}
@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.08); }
}

.hero h1 {
    font-family: "Orbitron", "Inter", sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #c0c5cc 60%, #8a8f97 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 30px rgba(42,161,255,0.15);
    animation: fadeUp 1s 0.15s ease both;
}
.hero h1 .accent {
    background: linear-gradient(180deg, #7dc8ff 0%, #2aa1ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Trenner unter Titel */
.hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.25rem auto 0.5rem;
    max-width: 360px;
    color: var(--blue-accent);
    animation: fadeUp 1s 0.25s ease both;
}
.hero__divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--silver) 50%, transparent);
}
.hero__divider i {
    font-style: normal;
    font-size: 0.85rem;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(42,161,255,0.6);
}

.hero__subtitle {
    font-size: 1.1rem;
    margin-top: 0.25rem;
    color: var(--silver);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 500;
    animation: fadeUp 1s 0.35s ease both;
}
.hero__text {
    max-width: 640px;
    margin: 1.5rem auto 2.25rem;
    font-size: 1.1rem;
    color: rgba(230, 232, 235, 0.85);
    animation: fadeUp 1s 0.45s ease both;
}
.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.55s ease both;
}

/* Scroll-Indikator */
.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(230, 232, 235, 0.5);
    border-radius: 14px;
    z-index: 2;
    transition: border-color var(--transition);
}
.hero__scroll:hover { border-color: var(--blue-accent); }
.hero__scroll span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--blue-accent);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
    0%   { opacity: 0; transform: translate(-50%, -4px); }
    50%  { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}
.btn:hover::before { left: 130%; }
.btn--primary {
    background: linear-gradient(90deg, var(--blue-light), var(--blue-accent));
    color: var(--white);
    box-shadow: 0 6px 24px rgba(42,161,255,0.4);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(42,161,255,0.55);
    color: var(--white);
}
.btn--outline {
    background: rgba(255,255,255,0.04);
    color: var(--silver-light);
    border-color: var(--silver);
    backdrop-filter: blur(6px);
}
.btn--outline:hover {
    background: var(--silver-light);
    color: var(--blue-dark);
    transform: translateY(-2px);
}

/* ===== Sections ===== */
.section {
    padding: 5rem 0;
    background: var(--white);
}
.section--dark {
    background: linear-gradient(180deg, var(--blue-dark), var(--blue));
    color: var(--silver-light);
}
.section--dark a { color: var(--blue-accent); }
.section--dark .section__title { color: var(--white); }

.section__title {
    font-family: "Orbitron", "Inter", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue-dark);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 0.75rem;
}
.section__title::after {
    content: '';
    position: absolute;
    left: 50%; bottom: 0;
    transform: translateX(-50%);
    width: 70px; height: 3px;
    background: linear-gradient(90deg, var(--blue-light), var(--blue-accent));
    border-radius: 2px;
}
.section__subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}
.section--dark .section__subtitle { color: var(--silver); }

/* ===== Grids ===== */
.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.align-center { align-items: center; }

/* ===== Cards ===== */
.card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--blue-light);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(13,59,102,0.25);
    border-top-color: var(--blue-accent);
}
.card__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.card h3 {
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}
.card p { color: var(--text-light); }

/* ===== About ===== */
.about {
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 30%, rgba(42,161,255,0.18), transparent 55%),
        radial-gradient(circle at 10% 90%, rgba(30,111,191,0.18), transparent 55%);
    pointer-events: none;
}
.about .container { position: relative; z-index: 1; }

.eyebrow {
    display: inline-block;
    font-family: "Orbitron", "Inter", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blue-accent);
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(42,161,255,0.4);
    border-radius: 999px;
    background: rgba(42,161,255,0.08);
    margin-bottom: 1rem;
}
.section__title--left {
    text-align: left;
    margin-left: 0;
}
.section__title--left::after {
    left: 0;
    transform: none;
}
.about__text p { margin-bottom: 1rem; color: rgba(230,232,235,0.85); }

/* Feature-Liste */
.feature-list {
    list-style: none;
    margin: 1.75rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.feature-list__icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-accent));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(42,161,255,0.4);
}
.feature-list strong {
    display: block;
    color: var(--white);
    font-size: 0.98rem;
    margin-bottom: 0.15rem;
}
.feature-list span:not(.feature-list__icon) {
    color: var(--silver);
    font-size: 0.88rem;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat { text-align: center; }
.stat__num {
    display: block;
    font-family: "Orbitron", "Inter", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    background: linear-gradient(180deg, #ffffff 0%, #7dc8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}
.stat__label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--silver);
}

/* Logo-Frame rechts */
.about__logo {
    position: relative;
    padding: 0;
    background: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.about__logo-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
        radial-gradient(circle at 50% 40%, rgba(42,161,255,0.25), transparent 65%);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    overflow: hidden;
}
.about__logo-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(42,161,255,0.6), transparent 40%, transparent 60%, rgba(42,161,255,0.4));
    z-index: -1;
    filter: blur(8px);
    opacity: 0.6;
}
.about__logo-frame::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(42,161,255,0.18) 60deg, transparent 120deg, transparent 360deg);
    animation: rotateGlow 12s linear infinite;
    pointer-events: none;
    z-index: 0;
}
.about__logo-frame img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}
@keyframes rotateGlow {
    to { transform: rotate(360deg); }
}

.about__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
}
.about__badge span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--silver);
}
.about__badge strong {
    font-family: "Orbitron", "Inter", sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
}

.checklist {
    list-style: none;
    margin-top: 1.5rem;
}
.checklist li {
    padding: 0.4rem 0;
    color: var(--silver-light);
}

/* ===== Galerie ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.gallery__item {
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    min-height: 240px;
    transition: transform var(--transition);
}
.gallery__item:hover { transform: scale(1.03); }
.gallery__item img { max-height: 180px; width: auto; }
.gallery__item--light {
    background: linear-gradient(135deg, var(--white), var(--silver-light));
}
.gallery__item--dark {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}
.gallery__item--silver {
    background: linear-gradient(135deg, var(--silver), var(--silver-dark));
}

/* ===== Formular ===== */
.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}
.form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-weight: 500;
    color: var(--silver-light);
}
.form input,
.form textarea,
.form select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--silver-dark);
    border-radius: 6px;
    background: rgba(255,255,255,0.95);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form input:focus,
.form textarea:focus,
.form select:focus {
    outline: none;
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 3px rgba(42,161,255,0.25);
}

/* Helle Variante (Bewerbungs-Section) */
.form--light {
    background: linear-gradient(180deg, #ffffff, #f3f5f8);
    border: 1px solid rgba(13, 59, 102, 0.12);
    box-shadow: 0 18px 50px rgba(13, 59, 102, 0.12);
    max-width: 820px;
    margin: 0 auto;
}
.form--light label { color: var(--blue-dark); }
.form--light input,
.form--light textarea,
.form--light select {
    background: #ffffff;
    border-color: rgba(13, 59, 102, 0.2);
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Datei-Upload */
.upload { display: flex; flex-direction: column; gap: 0.75rem; }
.upload__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 1.75rem 1rem;
    border: 2px dashed rgba(13, 59, 102, 0.3);
    border-radius: 10px;
    background: rgba(42, 161, 255, 0.05);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
    text-align: center;
}
.upload__label:hover {
    border-color: var(--blue-accent);
    background: rgba(42, 161, 255, 0.1);
    transform: translateY(-2px);
}
.upload__icon { font-size: 1.75rem; }
.upload__title { font-weight: 600; color: var(--blue-dark); letter-spacing: 0.3px; }
.upload__hint { font-size: 0.82rem; color: var(--text-light); }
.upload__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0;
    margin: 0;
}
.upload__item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.85rem;
    background: #ffffff;
    border: 1px solid rgba(13, 59, 102, 0.15);
    border-radius: 8px;
    font-size: 0.92rem;
}
.upload__file-name { color: var(--blue-dark); font-weight: 500; word-break: break-all; }
.upload__file-size { color: var(--text-light); font-size: 0.82rem; }
.upload__remove {
    background: rgba(255, 80, 80, 0.1);
    color: #c0392b;
    border: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    transition: background var(--transition);
}
.upload__remove:hover { background: rgba(255, 80, 80, 0.25); }
@media (max-width: 600px) {
    .form__row { grid-template-columns: 1fr; }
}
.contact-info {
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
}
.contact-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
}
.contact-info p { margin-bottom: 0.75rem; }

/* ===== Page-Hero (Unterseiten) ===== */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 20%, rgba(42,161,255,0.25), transparent 55%),
        radial-gradient(circle at 15% 85%, rgba(30,111,191,0.3), transparent 55%),
        linear-gradient(135deg, #07111f 0%, #0a1a2f 50%, #0d3b66 100%);
    isolation: isolate;
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.page-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.page-hero h1 {
    font-family: "Orbitron", "Inter", sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #c0c5cc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 1rem 0 0.75rem;
}
.page-hero h1 .accent {
    background: linear-gradient(180deg, #7dc8ff, #2aa1ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.page-hero__text {
    color: rgba(230, 232, 235, 0.85);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 1.5rem;
}
.page-hero__back {
    display: inline-block;
    padding: 0.5rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    color: var(--silver-light);
    font-size: 0.9rem;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
    transition: background var(--transition), border-color var(--transition);
}
.page-hero__back:hover {
    background: rgba(42,161,255,0.18);
    border-color: rgba(42,161,255,0.5);
    color: var(--white);
}

/* ===== Apply-Layout ===== */
.apply-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2.5rem;
    align-items: start;
}
.apply-info {
    position: sticky;
    top: 100px;
    background: linear-gradient(180deg, #ffffff, #f3f5f8);
    border: 1px solid rgba(13, 59, 102, 0.12);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: 0 18px 50px rgba(13, 59, 102, 0.12);
}
.apply-info h3 {
    color: var(--blue-dark);
    margin-bottom: 1rem;
    font-family: "Orbitron", "Inter", sans-serif;
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.apply-info__sub { margin-top: 1.75rem; }
.apply-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.apply-list li {
    padding: 0.45rem 0;
    color: var(--text);
    border-bottom: 1px dashed rgba(13, 59, 102, 0.12);
    font-size: 0.95rem;
}
.apply-list li:last-child { border-bottom: 0; }

/* Helle Variante der Feature-Liste */
.feature-list--light {
    grid-template-columns: 1fr;
    margin: 0;
}
.feature-list--light strong { color: var(--blue-dark); }
.feature-list--light span:not(.feature-list__icon) { color: var(--text-light); }

.form__title {
    font-family: "Orbitron", "Inter", sans-serif;
    color: var(--blue-dark);
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}
.form__intro {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .apply-layout { grid-template-columns: 1fr; }
    .apply-info { position: static; }
}

/* ===== Footer ===== */
.footer {
    background: var(--black);
    color: var(--silver);
    padding: 2rem 0;
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer__logo { height: 45px; }
.footer__links {
    list-style: none;
    display: flex;
    gap: 1.25rem;
}
.footer__links a { color: var(--silver); }
.footer__links a:hover { color: var(--blue-accent); }

/* ===== Responsiv ===== */
@media (max-width: 900px) {
    .grid--2, .grid--3, .gallery { grid-template-columns: 1fr; }
    .feature-list { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(3, 1fr); }
    .section__title--left { text-align: center; }
    .section__title--left::after { left: 50%; transform: translateX(-50%); }

    .nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--blue-dark);
        width: 240px;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition);
    }
    .nav.open { max-height: 400px; }
    .nav__list {
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    .nav__toggle { display: flex; }

    .footer__inner { justify-content: center; text-align: center; }
}
