body {
    --promo-height: 54px;
    --promo-header-gap: 10px;
}

.promo-banner {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background:
        radial-gradient(circle at center, rgba(229, 9, 20, 0.18), transparent 42%),
        linear-gradient(90deg, #120404 0%, #2a0709 55%, #120404 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.promo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: var(--promo-height);
    padding: 9px 24px;
    color: #ffffff;
}

.promo-banner-urgency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(229, 9, 20, 0.16);
    border: 1px solid rgba(255, 92, 103, 0.24);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.promo-banner-urgency::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4d57;
    box-shadow: 0 0 0 0 rgba(255, 77, 87, 0.7);
    animation: promoPulse 1.7s infinite;
}

.promo-banner-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.4;
}

.promo-banner-copy strong {
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.promo-banner-note {
    color: rgba(255, 255, 255, 0.76);
}

.promo-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.promo-time {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    padding: 8px 11px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    min-width: 60px;
    justify-content: center;
}

.promo-time strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.promo-time em {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-banner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff2a34 0%, #c90914 100%);
    border: 1px solid rgba(255, 82, 94, 0.38);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(229, 9, 20, 0.26);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.promo-banner-link:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #ff3a43 0%, #d40a16 100%);
    border-color: rgba(255, 104, 114, 0.5);
    box-shadow: 0 14px 28px rgba(229, 9, 20, 0.34);
    color: #ffffff;
}

@keyframes promoPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 87, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(255, 77, 87, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 87, 0);
    }
}

.navbar {
    position: relative;
    top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}

.mobile-menu {
    top: 0;
}

.navbar-cta {
    gap: 0;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1202;
    background: rgba(11, 11, 11, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

body.menu-open .navbar .navbar-brand img {
    position: relative;
    z-index: 1;
}

body.menu-open .mobile-menu {
    top: var(--mobile-nav-height, 78px);
    z-index: 1201;
}

@media (max-width: 1024px) {
    .navbar-cta {
        gap: 0;
    }
}

@media (max-width: 768px) {
    body {
        --promo-height: 120px;
    }

    .hero-home {
        padding: 140px 0 88px !important;
    }

    .contact-hero,
    .reseller-hero {
        padding: 140px 0 78px !important;
    }

    .page-header {
        padding: 150px 0 72px !important;
    }

    .navbar {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .promo-banner-inner {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: center;
        align-items: center;
        gap: 8px 10px;
        padding: 8px 16px;
    }

    .promo-banner-copy {
        grid-column: 1 / -1;
        text-align: center;
        font-size: 0.87rem;
    }

    .promo-banner-urgency {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .promo-timer {
        gap: 6px;
        justify-self: end;
    }

    .promo-time {
        min-width: 52px;
        padding: 6px 8px;
    }

    .promo-banner-link {
        padding: 7px 12px;
        font-size: 0.78rem;
        justify-self: start;
    }
}

@media (max-width: 480px) {
    body {
        --promo-height: 132px;
    }

    .hero-home {
        padding: 140px 0 84px !important;
    }

    .contact-hero,
    .reseller-hero {
        padding: 140px 0 74px !important;
    }

    .page-header {
        padding: 144px 0 68px !important;
    }

    .promo-banner-inner {
        grid-template-columns: 1fr;
    }

    .promo-timer,
    .promo-banner-link {
        justify-self: center;
    }

    .promo-time {
        min-width: 48px;
    }

    .promo-time strong {
        font-size: 0.9rem;
    }
}
