:root {
    --bg-start: #08192b; /* dunkles Navy, Start */
    --bg-end: #0a1120; /* sehr dunkles Blau, Ende */
    --accent: #ff5563; /* korall-rot wie Call-to-Action */
    --ink: #ffffff; /* Text auf dunklem Grund */
    --muted: #9aa4b2; /* dezente Sekundärfarbe */
    --pill-outer: #0b0b0b; /* schwarzer Randpill für CTA */
    --pill-inner: #ffffff; /* weiße Innenkapsel */
    --bg-mid: color-mix(in oklab, var(--bg-start) 50%, var(--bg-end) 50%);
}

body {
    font-family: "Montserrat", sans-serif!important;
}

.hero {
    min-height: 100dvh;
    background: radial-gradient(1200px 600px at 10% 0%, rgba(31, 75, 145, .35), transparent),
    radial-gradient(900px 450px at 85% 20%, rgba(1, 99, 133, .18), transparent),
    linear-gradient(180deg, var(--bg-start), var(--bg-end));
}

.logo-pill {
    background: white;
    border-radius: 9999px;
    padding: .4rem .8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.countdown .unit {
    min-width: 5.5rem;
}

.glass {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .7);
}

.form-card {
    border-radius: 1.25rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

/* Honeypot: keep accessible but off-screen for real users */
.hp-wrap {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.nav-shell {
    background: rgba(255, 255, 255, .92);
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
}

.nav-shell .nav-link {
    color: #0a0a0a;
    font-weight: 600;
}

.nav-shell .navbar-brand {
    color: #0a0a0a;
    font-weight: 700;
    letter-spacing: .02em;
}

.duo-pill {
    display: inline-block;
    background: var(--pill-outer);
    border-radius: 9999px;
    padding: .2rem;
}

.duo-pill .inner {
    display: inline-block;
    background: var(--pill-inner);
    color: #0a0a0a;
    border-radius: 9999px;
    padding: .5rem 1.1rem;
    font-weight: 700;
}

img.logo {
    max-width: 200px;
}

h1 {
    color: white !important;
}

.text-secondary {
    color: gray !important;
}

.btn-primary {
    background: rgb(255, 80, 90);
    border-color: rgb(255, 80, 90);
}

.btn-primary:hover {
    color: rgb(255, 80, 90);
    background: white;
    border-color: rgb(255, 80, 90);
}

.btn-primary:focus, .btn-primary:focus-visible {
    box-shadow: 0 0 0 .2rem rgba(255, 80, 90, .25);
}

.text-bg-primary {
    color: #fff !important;
    background-color: rgba(255, 80, 90) !important;
}

.fw-bold {
    color: var(--bg-mid);
}

#brands {
    padding-bottom: 0!important;
}

.impressum {
    color: var(--ink) !important;
}

.flybutton {
    position: fixed;
    bottom: 0px;
    align-items: center;
    width: 100%;
    left: 0;
    box-shadow: inset 0px -40px 15px -30px #000000;
    opacity: .8;
}

.flybutton a {
    margin-bottom: 15px;
}


/* Brand strip (no background) */
.brand-logos img { max-height: 48px; width: auto; display: block; }
@media (min-width: 576px){ .brand-logos img { max-height: 56px; } }
@media (min-width: 992px){ .brand-logos img { max-height: 64px; } }

/* Mailguard CTA Banner */
.mailguard-cta {
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mailguard-cta:hover {
    transform: translateY(-2px);
}

.mailguard-banner {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.25rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
    border: 2px solid rgba(255, 80, 90, 0.2);
    transition: all 0.3s ease;
}

.mailguard-cta:hover .mailguard-banner {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    border-color: rgba(255, 80, 90, 0.4);
}

.mailguard-banner h3 {
    color: var(--bg-mid);
    margin-bottom: 0.5rem;
}

.mailguard-banner .text-muted {
    color: #6c757d !important;
    font-size: 0.95rem;
}

.mailguard-btn-wrapper .btn {
    white-space: nowrap;
    transition: all 0.3s ease;
}

.mailguard-cta:hover .btn {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .mailguard-banner {
        text-align: center;
    }
    
    .mailguard-banner h3 {
        font-size: 1.1rem;
    }
}

/* Small screens: tighten spacing */
@media (max-width: 575.98px) {
    .brand-pill {
        min-width: 150px;
        height: 56px;
    }

    .brand-pill img {
        max-height: 24px;
    }
}

@media (max-width: 480px) {
    .brand-text {
        display: none;
    }

    .gap-tight {
        gap: .5rem !important;
    }
}