.site-header {
    position: relative;
    z-index: 20;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(239, 139, 22, 0.55);
}

.header-container {
    width: min(1440px, 100%);
    margin: 0 auto;
}

.top-contact-bar {
    color: #ffffff;
    background: #050505;
}

.top-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 42px;
    padding: 0 28px;
}

.top-contact-left,
.top-contact-link {
    display: flex;
    align-items: center;
}

.top-contact-left {
    flex: 1;
    gap: 16px;
    min-width: 0;
}

.top-contact-link {
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.top-icon {
    color: #ff8a00;
    width: 16px;
    height: 16px;
    font-size: 16px;
    font-weight: 800;
}

.top-separator {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.45);
}

.top-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.top-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: #ffffff;
    overflow: hidden;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.top-social-links img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-social-links .svg-icon {
    width: 15px;
    height: 15px;
    font-size: 15px;
    color: #ffffff;
}

.top-social-links a:hover {
    border-color: #ff8a00;
    color: #ff8a00;
    transform: translateY(-1px);
}

.main-nav-wrap {
    background: #ffffff;
}

.main-nav-inner {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 92px;
    padding: 0 28px;
}

.brand-block {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 92px;
    padding: 14px 34px 13px 18px;
    color: #ffffff;
    background: #07101d;
    clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.brand-block img {
    display: block;
    width: min(178px, 78%);
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

.brand-block::after {
    content: "";
    position: absolute;
    top: 0;
    right: 32px;
    width: 2px;
    height: 100%;
    background: #ef8b16;
    transform: skewX(-15deg);
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.6vw, 28px);
    min-width: 0;
}

.primary-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    color: #111111;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1px;
    height: 3px;
    border-radius: 999px;
    background: #ef8b16;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: #ef8b16;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
    transform: scaleX(1);
}

.quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 132px;
    height: 46px;
    padding: 0 8px 0 18px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, #0b68d8, #0038a8);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0, 67, 178, 0.22);
}

.quote-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #ffffff;
    background: #020202;
    font-size: 16px;
    line-height: 1;
}

.quote-arrow .svg-icon {
    width: 16px;
    height: 16px;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 6px;
    background: #07101d;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
}
