/* =========================
   PROMO BAR
========================= */

.promo-bar {
    background: #214554;
    color: white;
    text-align: center;
    padding: 14px;
    font-size: 14px;
    font-weight: 500;
}

/* =========================
   HEADER
========================= */

.header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0,0,0,.05);
}

.header-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--accent);
}

.header-phone {
    color: var(--primary);
    font-weight: 700;
}