
.faq-section {
    padding: clamp(60px, 6vw, 120px) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 6vw, 120px);
}

.faq-title {
    font-size: clamp(38px, 3.8vw, 56px);
    line-height: 1.05;
    margin: 16px 0;
    letter-spacing: -0.02em;
}

.faq-title span {
    color: var(--muted);
}

.faq-desc {
    color: var(--muted);
    max-width: 420px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.faq-contact {
    background: var(--surface);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    max-width: 380px;
}

.faq-contact h4 {
    margin-bottom: 6px;
    font-size: 18px;
}

.faq-contact p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 18px;
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    background: white;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.faq-question span {
    font-size: 22px;
    color: var(--muted);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    color: var(--muted);
    padding-bottom: 18px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    color: var(--ink);
}

@media (max-width: 900px) {

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-contact {
        max-width: 100%;
    }

    .faq-title {
        font-size: 38px;
    }

    .faq-question {
        font-size: 16px;
    }

}
@media (max-width:900px) {

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-title {
        font-size: 40px;
    }

    .faq-question {
        font-size: 16px;
    }

}
