/* ========= /css/header.css ========= */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--primary);
}
.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.header__left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger__line {
    width: 24px;
    height: 3px;
    background: var(--dark);
    transition: 0.2s;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary);
}
.logo__img {
    height: 48px;
    width: auto;
}
.logo__text {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.2;
}
.logo__text small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--secondary);
}
.nav__list {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav__list a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}
.nav__list a:hover {
    color: var(--primary);
}
.overlay {
    display: none;
}
@media (max-width: 1024px) {
    .nav { display: none; }
    .burger { display: flex; }
    .header__right .btn { display: none; }
}