/* ==========================================================================
    Адаптивность
   ========================================================================== */

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    body {
        position: relative;
        width: 100%;
        overflow-x: hidden;
    }

    .background-symbols {
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: -1;
        overflow: hidden;
    }

    .background-symbols__shape {
        position: absolute;
        opacity: 0.15;
        will-change: transform, opacity;
    }

    .background-symbols__shape svg {
        display: block;
        stroke: #ffffff;
        width: 100%;
        height: 100%;
    }

    @keyframes floatUp {
        0% {
            transform: translateY(110vh) rotate(0deg) scale(var(--scale, 1));
        }
        100% {
            transform: translateY(-20vh) rotate(360deg) scale(var(--scale, 1));
        }
    }

    @keyframes floatDiagLeft {
        0% {
            transform: translateY(110vh) translateX(15vw) rotate(0deg) scale(var(--scale, 1));
        }
        100% {
            transform: translateY(-20vh) translateX(-15vw) rotate(360deg) scale(var(--scale, 1));
        }
    }

    @keyframes floatDiagRight {
        0% {
            transform: translateY(110vh) translateX(-15vw) rotate(0deg) scale(var(--scale, 1));
        }
        100% {
            transform: translateY(-20vh) translateX(15vw) rotate(360deg) scale(var(--scale, 1));
        }
    }

    .faq-hero {
        position: relative;
        width: 100%;
        min-height: 60vh;
        padding: 80px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: linear-gradient(180deg, rgba(17, 17, 16, 0.8) 0%, rgba(41, 40, 41, 0.2) 100%);
    }

    .faq-hero__title {
        font-size: 80px;
        line-height: 90px;
    }

    .faq-hero__subtitle {
        font-size: 24px;
        line-height: 32px;
    }

    .faq-container {
        max-width: 100%;
        margin: 40px auto;
        padding: 0 15px;
    }

    .faq-section {
        margin-bottom: 40px;
    }

    .faq-section__title {
        font-size: 28px;
        line-height: 35px;
        margin: 0 0 20px 0;
        padding-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .faq-section__icon {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        color: #E4AD2B;
        filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.5));
    }

    .faq-item {
        margin-bottom: 12px;
        border: 2px solid rgba(228, 173, 43, 0.2);
        border-radius: 10px;
        overflow: hidden;
        background: linear-gradient(180deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    }

    .faq-item__question {
        width: 100%;
        padding: 16px 20px;
        background: transparent;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        text-align: left;
    }

    .faq-item__question span:first-child {
        color: white;
        font-size: 17px;
        font-family: "Lucida Sans Unicode", sans-serif;
        font-weight: 500;
        line-height: 24px;
        flex: 1;
        padding-right: 15px;
    }

    .faq-item__icon {
        color: #E4AD2B;
        font-size: 26px;
        font-weight: 300;
        line-height: 1;
        min-width: 35px;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-shrink: 0;
    }

    .faq-item_active .faq-item__icon {
        transform: rotate(45deg);
    }

    .faq-item__answer {
        max-height: 0;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.2);
    }

    .faq-item_active .faq-item__answer {
        max-height: 400px;
    }

    .faq-item__answer p {
        padding: 15px 20px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 16px;
        font-family: "Lucida Sans Unicode", sans-serif;
        font-weight: 400;
        line-height: 26px;
        margin: 0;
    }
}
