/* One authoritative header implementation shared by every main page. */
.header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: rgba(255, 253, 248, 0.94) !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(20, 33, 61, 0.1) !important;
    border-radius: 0 !important;
    box-shadow: 0 8px 28px rgba(20, 33, 61, 0.06) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    font-family: Manrope, sans-serif !important;
}

.header > .container {
    box-sizing: border-box !important;
    width: min(1344px, calc(100% - 96px)) !important;
    max-width: none !important;
    height: 72px !important;
    margin-inline: auto !important;
    padding-inline: 32px !important;
}

.header .nav {
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 72px !important;
    gap: 24px !important;
}

.header .logo {
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    gap: 16px !important;
    color: #10243f !important;
    font-family: Manrope, sans-serif !important;
    text-decoration: none !important;
}

.header .logo svg,
.header .logo .logo-icon {
    width: 50px !important;
    height: 50px !important;
    flex: 0 0 50px !important;
}

.header .logo-text {
    color: #10243f !important;
    font-family: Manrope, sans-serif !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
}

.header .nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 32px !important;
}

.header .nav-links a {
    position: relative !important;
    color: #1d2939 !important;
    font-family: Manrope, sans-serif !important;
    font-size: 15.04px !important;
    font-weight: 850 !important;
    line-height: 24.064px !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
}

.header .nav-links a::after {
    bottom: -9px !important;
    height: 3px !important;
    background: #f59e0b !important;
}

.header .nav-links a:hover,
.header .nav-links a.active {
    color: #2457c5 !important;
}

.header .header-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
}

.header .header-cta.btn-primary {
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 228.125px !important;
    min-width: 228.125px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 16px !important;
    border: 1px solid #f59e0b !important;
    border-radius: 4px !important;
    background: #f59e0b !important;
    color: #10243f !important;
    font-family: Manrope, sans-serif !important;
    font-size: 14.4px !important;
    font-weight: 900 !important;
    line-height: 42px !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
}

@media (max-width: 1199px) {
    .header > .container {
        width: min(1080px, calc(100% - 64px)) !important;
    }
}

@media (max-width: 1023px) {
    .header .nav-links,
    .header .header-actions {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .header > .container {
        width: calc(100% - 32px) !important;
        padding-inline: 16px !important;
    }
}
