.faq-page {
    position: relative;
    background-color: #08111f;
    background-image:
        radial-gradient(circle at 14% 18%, rgba(164, 92, 255, 0.16), transparent 28%),
        radial-gradient(circle at 84% 14%, rgba(88, 190, 255, 0.11), transparent 24%),
        radial-gradient(circle at 68% 72%, rgba(126, 105, 255, 0.10), transparent 30%),
        linear-gradient(
            180deg,
            #050914 0%,
            #07101f 38%,
            #08111f 100%
        );
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow-x: hidden;
}

.faq-page::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 50%;
    width: 980px;
    height: 980px;
    transform: translateX(-50%);
    background:
        radial-gradient(ellipse at 18% 30%, rgba(180, 116, 255, 0.18), transparent 34%),
        radial-gradient(ellipse at 78% 22%, rgba(90, 190, 255, 0.13), transparent 30%),
        radial-gradient(ellipse at 58% 88%, rgba(116, 82, 255, 0.12), transparent 36%);
    filter: blur(20px);
    opacity: 0.75;
    pointer-events: none;
    z-index: 0;
}

.faq-shell {
    position: relative;
    z-index: 1;
    padding: 30px 0 80px;
}

.faq-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    padding: 34px 36px;
    border-radius: 28px;
    background:
        linear-gradient(160deg, rgba(10, 18, 38, 0.96), rgba(15, 28, 58, 0.92)),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(126, 170, 255, 0.22);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 24px rgba(93, 162, 255, 0.10);
}

.faq-hero::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -10px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(93, 162, 255, 0.18), transparent 65%);
    pointer-events: none;
}

.faq-kicker {
    margin-bottom: 10px;
    color: #a86cff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.faq-title {
    max-width: none;
    margin: 0 0 14px;
    color: #f7f9ff;
    font-size: 46px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.4px;
    white-space: nowrap;
}

.faq-title span {
    color: #5da2ff;
}

@media (max-width: 980px) {
    .faq-title {
        white-space: normal;
    }
}

.faq-subtitle {
    max-width: 760px;
    color: #aeb8d6;
    font-size: 19px;
    line-height: 1.7;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(14, 22, 44, 0.96), rgba(8, 14, 30, 0.96));
    border: 1px solid rgba(132, 170, 255, 0.18);
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(168, 108, 255, 0.34);
    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.28),
        0 0 18px rgba(93, 162, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.faq-item.is-open {
    border-color: rgba(93, 162, 255, 0.42);
    background:
        linear-gradient(180deg, rgba(18, 29, 58, 0.98), rgba(9, 16, 34, 0.98));
    box-shadow:
        0 20px 46px rgba(0, 0, 0, 0.30),
        0 0 26px rgba(93, 162, 255, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.faq-question {
    position: relative;
    width: 100%;
    padding: 26px 72px 26px 28px;
    border: none;
    background: transparent;
    color: #f4f7ff;
    text-align: left;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.4;
    cursor: pointer;
    transition: color 0.22s ease;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
    color: #ffffff;
}

.faq-question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 26px;
    width: 34px;
    height: 34px;
    transform: translateY(-50%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #dce7ff;
    font-size: 24px;
    font-weight: 400;
    background: rgba(93, 162, 255, 0.16);
    border: 1px solid rgba(132, 170, 255, 0.22);
    box-shadow: 0 0 18px rgba(93, 162, 255, 0.12);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.faq-question[aria-expanded="true"]::after {
    content: "-";
    transform: translateY(-50%) rotate(180deg);
    background: rgba(168, 108, 255, 0.18);
    border-color: rgba(168, 108, 255, 0.38);
    box-shadow: 0 0 22px rgba(168, 108, 255, 0.18);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    color: #b9c3e0;
    font-size: 17px;
    line-height: 1.75;
    opacity: 0;
    white-space: pre-line;
    transition: max-height 0.34s ease, opacity 0.24s ease, padding-bottom 0.34s ease;
}

.faq-item.is-open .faq-answer {
    padding-bottom: 26px;
    opacity: 1;
}

.faq-answer p + p {
    margin-top: 12px;
}

.faq-answer a {
    color: #88bcff;
}
