:root {
    --navy: #0A1628;
    --navy-light: #0A1628;
    --blue: #087ea4;
    --cyan: #00A0E3;
    --white: #ffffff;
    --text: #d9e8ed;
    --muted: #9fb5be;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            rgba(3, 18, 31, 0.94),
            rgba(6, 43, 65, 0.88)
        ),
        url("background.jpg") center center / cover no-repeat fixed;

    display: flex;
    align-items: center;
    justify-content: center;
}

body::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(33, 182, 215, 0.12),
            transparent 35%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(8, 126, 164, 0.14),
            transparent 30%
        );

    animation: glow 8s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        opacity: 0.65;
    }

    to {
        opacity: 1;
    }
}

.container {
    position: relative;
    z-index: 1;

    width: min(1100px, 92%);
    min-height: 90vh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 55px 65px;

    background: rgba(4, 25, 40, 0.72);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 18px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(10px);
}

header {
    display: flex;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    display: block;
    width: 280px;
    height: auto;
    max-width: 100%;
}
.logo span {
    color: var(--cyan);
}

.logo-subtitle {
    display: block;

    margin-top: 5px;

    font-size: 0.72rem;
    font-weight: 400;

    letter-spacing: 0.18em;

    color: var(--muted) !important;
}

.hero {
    max-width: 760px;

    margin: auto 0;

    padding: 80px 0;
}

.badge {
    display: inline-block;

    margin-bottom: 25px;
    padding: 8px 15px;

    border: 1px solid rgba(33, 182, 215, 0.45);

    border-radius: 50px;

    background: rgba(33, 182, 215, 0.08);

    color: var(--cyan);

    font-size: 0.75rem;
    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

h1 {
    margin-bottom: 25px;

    font-size: clamp(2.8rem, 6vw, 5.2rem);

    line-height: 1.02;

    font-weight: 300;

    letter-spacing: -0.04em;
}

h1 strong {
    color: var(--cyan);
    font-weight: 600;
}

.hero-text {
    max-width: 650px;

    color: var(--text);

    font-size: 1.15rem;

    line-height: 1.8;
}

.contact {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-top: 40px;
}

.contact a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 190px;

    padding: 14px 22px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 0.9rem;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.contact .primary {
    background: var(--cyan);

    color: #03202d;

    box-shadow:
        0 8px 25px rgba(33, 182, 215, 0.18);
}

.contact .secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);

    background: rgba(255, 255, 255, 0.04);

    color: var(--white);
}

.contact a:hover {
    transform: translateY(-3px);
}

.contact .primary:hover {
    background: #55cbe4;

    box-shadow:
        0 12px 30px rgba(33, 182, 215, 0.3);
}

.contact .secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

footer {
    padding-top: 30px;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    color: var(--muted);

    font-size: 0.78rem;

    line-height: 1.8;
}

.footer-company {
    color: var(--text);

    font-weight: 600;
}

.footer-links {
    margin-top: 5px;
}

.footer-links a {
    color: var(--muted);

    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--cyan);
}


/* ===========================
   Impressum
   =========================== */

.impressum-content {
    max-width: 700px;

    color: var(--text);

    font-size: 1rem;

    line-height: 1.7;
}

.impressum-content h2 {
    margin-top: 30px;
    margin-bottom: 10px;

    color: var(--cyan);

    font-size: 1.05rem;

    font-weight: 600;
}

.impressum-content h2:first-child {
    margin-top: 0;
}

.impressum-content p {
    margin-bottom: 15px;
}

.impressum-content a {
    color: var(--white);

    text-decoration: none;

    border-bottom:
        1px solid rgba(33, 182, 215, 0.4);
}

.impressum-content a:hover {
    color: var(--cyan);
}


/* ===========================
   Mobile
   =========================== */

@media (max-width: 700px) {

    body {
        background-attachment: scroll;
    }

    .container {
        width: 94%;

        min-height: 94vh;

        padding: 35px 25px;

        border-radius: 12px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .hero {
        padding: 60px 0;
    }

    h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-text {
        font-size: 1rem;

        line-height: 1.7;
    }

    .contact {
        flex-direction: column;
    }

    .contact a {
        width: 100%;
    }

    footer {
        font-size: 0.72rem;
    }

    .impressum-content {
        font-size: 0.92rem;
    }
}
.impressum-content ul {
    margin: 10px 0 20px 25px;
    padding: 0;
}

.impressum-content li {
    margin-bottom: 7px;
    color: var(--text);
}

.impressum-content strong {
    color: var(--white);
}
@media (max-width: 700px) {
    .logo img {
        width: 220px;
    }
}