.top-bar{
    background:var(--header-bg);
    background-image:var(--header-glow);
    color:rgba(255,255,255,0.7);
    font-size:1.2rem;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,0.06);
    backdrop-filter:blur(10px);
}

.top-bar .top-container{
    width:100%;
    padding:0 36px;
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:space-between;
}

.top-info{
    display:flex;
    gap:32px;
    align-items:center;
}

.top-info li{
    position:relative;
    padding-right:32px;
}

.top-info li:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:16px;
    background:rgba(255,255,255,0.08);
}

.top-bar ul{
    display:flex;
    gap:20px;
    list-style:none;
    padding:0;
    margin:0;
    align-items:center;
}

.top-right{
    display:flex;
    gap:24px;
    align-items:center;
}

.faq-btn{
    padding:6px 12px;
    border-radius:8px;
    background:rgba(255,255,255,0.06);
    font-weight:600;
    color:#ffffff;
    transition:.2s;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.faq-btn:hover{
    background:var(--gradient-main);
    color:#fff;
}

.calc-btn{
    background:linear-gradient(
        135deg,
        #7b2cff 0%,
        #5b3fff 60%,
        #3b82f6 100%
    );
    color:#fff;
    font-weight:700;
    box-shadow:0 6px 18px rgba(91, 63, 255, 0.25);
}

.calc-btn:hover{
    transform:translateY(-2px);
    filter:brightness(1.1);
}

.social-links{
    display:flex;
    gap:16px;
}

.social-links a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:8px;
    background:rgba(255,255,255,0.06);
    transition:all .2s ease;
}

.social-links svg{
    width:18px;
    height:18px;
    fill:rgba(255,255,255,0.7);
    transition:.2s;
}

.social-links a:hover{
    background:var(--gradient-main);
    transform:translateY(-2px);
}

.social-links a:hover svg{
    fill:#fff;
}