.header-gradient,
.inner-header {
    position: sticky;
    top: 0;
    z-index: 120;
    background: linear-gradient(90deg, #bb2682, #572b6f);
    box-shadow: 0 10px 30px rgba(87, 43, 111, 0.16);
    padding: 14px 0;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    min-height: 72px;
}

.header-nav--home {
    flex-wrap: nowrap;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    text-decoration: none;
    min-width: 0;
    flex-shrink: 0;
}

.logo-img {
    height: 58px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
    min-width: 0;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
}

.logo-sub {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    letter-spacing: 0.2px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.nav-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-action-link:hover {
    background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 900px) {
    .header-gradient,
    .inner-header {
        padding: 12px 0;
    }

    .header-nav,
    .header-nav--home {
        flex-wrap: wrap;
        align-items: center;
        gap: 12px 18px;
        min-height: auto;
    }

    .nav-links,
    .nav-links--home {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .logo-wrapper {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .header-gradient,
    .inner-header {
        padding: 10px 0;
    }

    .header-nav,
    .header-nav--home {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .logo-wrapper {
        justify-content: center;
        margin: 0;
        width: 100%;
        gap: 12px;
    }

    .logo-img {
        height: 46px;
    }

    .logo-main {
        font-size: 20px;
    }

    .logo-sub {
        display: none;
    }

    .nav-links,
    .nav-links--home {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 12px;
    }

    .nav-links li,
    .nav-links--home li {
        min-width: 0;
        flex: 0 0 auto;
    }

    .nav-links a,
    .nav-links--home a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        padding: 0 16px;
        text-align: center;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        font-size: 14px;
        white-space: nowrap;
    }

    .nav-links .nav-action-link,
    .nav-links--home .nav-action-link {
        min-width: 160px;
        background: rgba(255, 255, 255, 0.18);
    }
}

@media (max-width: 430px) {
    .logo-img {
        height: 42px;
    }

    .logo-main {
        font-size: 18px;
    }

    .nav-links,
    .nav-links--home {
        gap: 8px 10px;
    }

    .nav-links a,
    .nav-links--home a {
        font-size: 13px;
        min-height: 38px;
        padding: 0 14px;
    }

    .nav-links .nav-action-link,
    .nav-links--home .nav-action-link {
        min-width: 140px;
    }
}