/* ===============================
   BUXNESIA FAQ HOME
================================ */

.faq-home {
    position: relative;
    padding: 80px 20px;
    background: transparent;
}

.faq-container {
    max-width: 920px;
    margin: 0 auto;
}

.faq-title {
    margin-bottom: 36px;

    text-align: center;
    color: #ffffff;

    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 950;
    letter-spacing: -0.045em;
}

/* ===============================
   FAQ ITEM
================================ */

.faq-item {
    position: relative;
    overflow: hidden;

    margin-bottom: 14px;
    padding: 0;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;

    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
    box-shadow: 0 18px 45px rgba(0,0,0,.24);

    transition: .25s ease;
}

.faq-item:hover {
    border-color: rgba(34,211,238,.24);
    transform: translateY(-2px);
}

/* ===============================
   QUESTION
================================ */

.faq-question {
    width: 100%;
    min-height: 68px;

    background: transparent;
    border: none;
    outline: none;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding: 20px 22px;

    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.4;

    cursor: pointer;
    text-align: left;
}

.faq-icon {
    flex: 0 0 auto;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #07111f;
    font-size: 20px;
    font-weight: 900;

    background: linear-gradient(135deg, #22d3ee, #facc15);
    box-shadow: 0 0 22px rgba(34,211,238,.20);

    transition: .25s ease;
}

/* ===============================
   ANSWER
================================ */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
}

.faq-answer p {
    padding: 0 22px 22px;
    margin: 0;

    color: #94a3b8;
    font-size: 14px;
    line-height: 1.8;
}

/* ===============================
   ACTIVE STATE
================================ */

.faq-item.active {
    border-color: rgba(34,211,238,.28);
    box-shadow:
        0 24px 60px rgba(0,0,0,.32),
        0 0 30px rgba(34,211,238,.10);
}

.faq-item.active .faq-answer {
    max-height: 320px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #8b5cf6, #22d3ee);
    color: #ffffff;
}

/* ===============================
   MORE BUTTON
================================ */

.faq-more {
    margin-top: 34px;
    text-align: center;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 576px) {
    .faq-home {
        padding: 64px 16px;
    }

    .faq-title {
        margin-bottom: 28px;
    }

    .faq-question {
        min-height: 62px;
        padding: 18px;
        font-size: 14px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .faq-answer p {
        padding: 0 18px 20px;
        font-size: 13px;
    }
}