/* =========================
   FAQ
========================= */

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.faq-question {
    width: 100%;
    min-height: 78px;
    padding: 22px 26px;
    border: none;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.faq-question span:first-child {
    display: block;
    margin: 0;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
}

.faq-icon {
    flex: 0 0 auto;
    font-size: 26px;
    line-height: 1;
    color: #c2410c;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 26px;
    background: #ffffff;
}

.faq-answer p {
    margin: 0;
    padding: 0 0 24px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.faq-answer a {
    color: #ea580c;
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-item.is-open .faq-answer {
    max-height: 2000px;
}

@media (max-width: 640px) {
    .faq-question {
        min-height: 68px;
        padding: 18px 20px;
    }

    .faq-question span:first-child {
        font-size: 17px;
        line-height: 1.4;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer p {
        padding-bottom: 20px;
        font-size: 14px;
    }

    .faq-icon {
        font-size: 24px;
    }
}

.faq-item.is-open {
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.18);
}