/* =============================================
   Site Header - Uniforme su tutte le pagine
   ============================================= */

.site-header {
    background-color: #fff;
    padding: 2.5rem 1rem 2rem;
    text-align: center;
}

.site-header__inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.site-header__logo-link {
    display: inline-block;
    text-decoration: none;
}

.site-header__logo {
    display: block;
    max-width: 280px;
    height: auto;
}

.site-header__subtitle {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.05rem;
    color: #333;
    margin: 0.25rem 0 0.75rem;
    line-height: 1.5;
}

/* Navigation buttons */
.site-header__nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.site-header__nav-btn {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    background-color: #112e50;
    border: 2px solid #112e50;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
}

.site-header__nav-btn:hover {
    background-color: #1a4270;
    border-color: #1a4270;
    color: #fff;
}

.site-header__nav-btn--active {
    background-color: #112e50;
    border-color: #c9a84c;
    box-shadow: 0 0 0 2px #c9a84c;
    color: #fff;
}

/* Mobile: pulsanti impilati verticalmente */
@media (max-width: 768px) {
    .site-header {
        padding: 2rem 1rem 1.5rem;
    }

    .site-header__logo {
        max-width: 220px;
    }

    .site-header__subtitle {
        font-size: 0.95rem;
    }

    .site-header__nav {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .site-header__nav-btn {
        width: 100%;
        max-width: 340px;
        padding: 0.85rem 1.5rem;
    }
}

/* =============================================
   Pricing title H2 - dimensione aumentata
   ============================================= */

.pricing__title {
    font-size: 3rem !important;
    font-weight: 600;
    color: #112e50;
}

@media (max-width: 768px) {
    .pricing__title {
        font-size: 1.75rem !important;
    }
}
