/* ═══════════════════════════════════════════════════════════
   FAQ Accordion
   ═══════════════════════════════════════════════════════════ */

.lp-faq {
    max-width: 820px;
    margin: 0 auto;
}

.lp-faq__item {
    background: linear-gradient(180deg, rgba(13,33,55,0.5) 0%, rgba(10,25,41,0.7) 100%);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .25s ease;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.03) inset,
        0 4px 12px rgba(0, 0, 0, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.15);
}
.lp-faq__item:hover {
    border-color: rgba(6, 182, 212, 0.25);
    box-shadow:
        0 1px 0 rgba(6, 182, 212, 0.1) inset,
        0 10px 24px rgba(0, 0, 0, 0.35),
        0 2px 6px rgba(0, 0, 0, 0.2);
}
.lp-faq__item.is-open {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow:
        0 1px 0 rgba(6, 182, 212, 0.18) inset,
        0 16px 32px rgba(0, 0, 0, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.25),
        0 0 24px rgba(6, 182, 212, 0.12);
}

.lp-faq__q {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
    line-height: 1.4;
}

.lp-faq__icon {
    width: 28px; height: 28px;
    flex-shrink: 0;
    position: relative;
    transition: transform .25s ease;
    color: var(--accent-cyan);
}
.lp-faq__icon::before,
.lp-faq__icon::after {
    content: '';
    position: absolute;
    left: 6px; right: 6px;
    top: 13px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .25s ease;
}
.lp-faq__icon::after { transform: rotate(90deg); }

.lp-faq__item.is-open .lp-faq__icon::after { transform: rotate(0deg); opacity: 0; }

.lp-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.lp-faq__a-inner {
    padding: 0 24px 22px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}
