:root{
    --faq-brand-black: #001D32;
    --faq-card-bg: rgba(246, 246, 246, 0.9);
    --faq-card-border: rgba(0, 0, 0, 0.05);
    --faq-divider: #D8DDE0;
    --faq-zinc-700: #3F3F47;
    --faq-radius: 30px;
    --faq-gap-outer: 40px;
    --faq-pad-x: clamp(16px, 6vw, 100px);
    --faq-pad-y: clamp(24px, 6vw, 60px);
    --faq-wrap-max: 1330px;
    --faq-icon-size: clamp(18px, 2vw, 30px);
    --faq-icon-border: 5px;
}

.faq-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url(/iv-pages/ru/videonablyudenie-dlya-prodazhi-sim-kart/faq/img/background.png) center / 100% 100% no-repeat;
    padding: 0;
    gap: var(--faq-gap-outer);
}

.faq-wrap{
    width: min(90%, var(--faq-wrap-max));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--faq-gap-outer);
    margin: 0 auto;
    padding: 80px 0;
}

.faq-title{
    margin: 0;
    font-family: "Golos Text", Roboto, Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 6vw, 64px);
    line-height: 1.06;
    text-align: center;
    color: var(--faq-brand-black);
}

.faq-card{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: var(--faq-pad-y) var(--faq-pad-x);
    width: 100%;
    background: var(--faq-card-bg);
    border: 1px solid var(--faq-card-border);
    backdrop-filter: blur(30px);
    border-radius: var(--faq-radius);
}

.faq-item{
    display: flex;
    flex-direction: column;
    padding: clamp(16px, 2.2vw, 24px) 0;
    gap: 10px;
    border-bottom: 1px solid var(--faq-divider);
}

.faq-item:last-child{
    border-bottom: none;
}

.faq-q{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(28px, 6.5vw, 92px);
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-qtext{
    font-family: "Golos Text", Roboto, Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 3.3vw, 34px);
    line-height: clamp(26px, 4vw, 52px);
    color: var(--faq-brand-black);
}

.faq-icon{
    position: relative;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-icon::before,
.faq-icon::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--faq-brand-black);
}

.faq-icon::before{
    width: clamp(16px, 2.2vw, 26px);
    height: 3px;
}

.faq-icon::after{
    width: 3px;
    height: clamp(16px, 2.2vw, 26px);
}

.faq-item--open .faq-icon::after{
    display: none;
}

.faq-a{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 300ms ease, opacity 300ms ease;
}

.faq-item--open .faq-a{
    max-height: 1000px;
    opacity: 1;
}

.faq-atext{
    font-family: "Golos Text", Roboto, Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 2.2vw, 24px);
    line-height: clamp(20px, 3.2vw, 36px);
    color: var(--faq-zinc-700);
    margin: 0;
}

@media (max-width: 900px) {
    .faq-section {
        background: url(/iv-pages/ru/videonablyudenie-dlya-prodazhi-sim-kart/faq/img/mobileBackground.png) center / 100% 100% no-repeat;
    }

    .faq-card {
        border-radius: 14px;
    }
}