.faq-accordion {
    max-width: 48rem;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    text-align: left;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.faq-trigger:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-item.is-open .faq-trigger {
    background: rgba(249, 115, 22, 0.1);
}

.faq-question {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fdba74;
    line-height: 1.45;
    transition: color 0.25s ease;
}

.faq-item.is-open .faq-question {
    color: #fb923c;
}

.faq-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: 1px solid rgba(249, 115, 22, 0.45);
    background: rgba(249, 115, 22, 0.08);
    position: relative;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fb923c;
    border-radius: 1px;
    transform: translate(-50%, -50%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
    background: rgba(249, 115, 22, 0.22);
    border-color: rgba(249, 115, 22, 0.65);
}

.faq-item.is-open .faq-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
    opacity: 0;
}

.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-panel {
    grid-template-rows: 1fr;
}

.faq-panel-inner {
    overflow: hidden;
}

.faq-panel-inner p {
    padding: 0 1.5rem 1.35rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    font-size: 0.95rem;
}

.faq-trigger:focus-visible {
    outline: 2px solid #f97316;
    outline-offset: -2px;
}

@media (max-width: 640px) {
    .faq-trigger {
        padding: 1.15rem 1.15rem;
    }

    .faq-question {
        font-size: 0.98rem;
    }

    .faq-panel-inner p {
        padding: 0 1.15rem 1.15rem;
        font-size: 0.9rem;
    }
}
