body.page-faq,
.page-faq,
.page-faq main[data-page-shell],
.page-faq .faq-page-section,
.page-faq .faq-page-shell {
    min-height: 100vh;
    background: #030406 !important;
}

.page-faq {
    color: #f5f7fb;
}

.page-faq main[data-page-shell] {
    padding-top: 0;
}

.page-faq main[data-page-shell] > .content-section:first-child {
    padding-top: 0;
}

.page-faq .faq-page-section {
    overflow: clip;
    padding-top: 0;
    padding-bottom: clamp(56px, 8vw, 104px);
}

.page-faq .faq-page-shell {
    width: min(calc(100% - 48px), 1280px);
    margin: 0 auto;
}

/* =========================
   HERO
========================= */

.page-faq .faq-hero {
    position: relative;
    min-height: 300px;
    display: grid;
    place-items: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    padding: calc(var(--nav-height, 72px) + 42px) 24px 70px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(3, 4, 6, 0.98) 0%, rgba(3, 4, 6, 0.94) 38%, rgba(3, 4, 6, 0.72) 68%, rgba(3, 4, 6, 0.52) 100%),
        var(--faq-car-image);
    background-size: cover;
    background-position: 94% 28%;
    background-repeat: no-repeat;
}

.page-faq .faq-hero::before {
    content: none;
}

.page-faq .faq-hero::after {
    content: none;
}

.page-faq .faq-heading,
.page-faq .faq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}



.page-faq .faq-heading h2 {
    margin: 0;
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(30px, 3.4vw, 52px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: #f7f8fb;
    text-transform: none;
    white-space: nowrap;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
}

.page-faq .faq-heading p {
    max-width: 590px;
    margin: 18px auto 0;
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.72;
    color: rgba(235, 238, 245, 0.62);
    text-wrap: balance;
}

/* =========================
   ACCORDION
========================= */

.page-faq .faq-accordion {
    position: relative;
    display: block;
    max-width: 1200px;
    margin: -26px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 4px;
    background:
        linear-gradient(180deg, rgba(9, 13, 20, 0.92), rgba(5, 8, 13, 0.96));
    overflow: hidden;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.page-faq .faq-accordion::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.72), transparent);
    pointer-events: none;
    z-index: 3;
}

.page-faq .faq-item {
    position: relative;
    margin: 0;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.065);
    background:
        linear-gradient(180deg, rgba(8, 12, 19, 0.82), rgba(5, 8, 13, 0.86));
    box-shadow: none;
    overflow: hidden;
}

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

.page-faq .faq-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: #ff0000;
    box-shadow:
        0 0 18px rgba(255, 0, 0, 0.72),
        0 0 42px rgba(255, 0, 0, 0.22);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.28s ease;
}

.page-faq .faq-item::after {
    content: "";
    position: absolute;
    top: 78px;
    left: 96px;
    right: 88px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.8), transparent);
    box-shadow: 0 0 16px rgba(255, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.28s ease;
}

.page-faq .faq-item.is-open {
    background:
        radial-gradient(circle at 12% 42%, rgba(255, 0, 0, 0.13), transparent 28%),
        linear-gradient(180deg, rgba(11, 16, 25, 0.98), rgba(6, 10, 16, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 0, 0, 0.62),
        inset 0 -1px 0 rgba(255, 0, 0, 0.38);
}

.page-faq .faq-item.is-open::before,
.page-faq .faq-item.is-open::after {
    opacity: 1;
}

.page-faq .faq-question {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    height: 78px;
    min-height: 78px;
    padding: 0 28px;
    background: transparent;
    border: 0;
    color: #f4f6fb;
    text-align: left;
    cursor: pointer;
}

.page-faq .faq-question:hover .faq-question-text {
    color: #fff;
}

.page-faq .faq-question:focus-visible {
    outline: 1px solid rgba(255, 0, 0, 0.7);
    outline-offset: -2px;
}

.page-faq .faq-question-main {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
    flex: 1;
}

.page-faq .faq-index {
    width: 44px;
    flex: 0 0 44px;
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1.25rem, 1.8vw, 1.72rem);
    font-weight: 800;
    font-style: italic;
    line-height: 1;
    color: #ff0000;
    text-shadow: 0 0 18px rgba(255, 0, 0, 0.22);
}

.page-faq .faq-divider {
    width: 1px;
    height: 28px;
    flex: 0 0 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.page-faq .faq-question-text {
    min-width: 0;
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 1.16vw, 1.22rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.012em;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.22s ease;
}

.page-faq .faq-toggle {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.015);
    transition:
        border-color 0.24s ease,
        background 0.24s ease,
        box-shadow 0.24s ease,
        transform 0.24s ease;
}

.page-faq .faq-toggle::before,
.page-faq .faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    background: rgba(255, 255, 255, 0.78);
    transform: translate(-50%, -50%);
    transition:
        transform 0.24s ease,
        opacity 0.24s ease,
        background 0.24s ease;
}

.page-faq .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.page-faq .faq-question:hover .faq-toggle {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.035);
}

.page-faq .faq-item.is-open .faq-toggle {
    border-color: rgba(255, 0, 0, 0.78);
    background: rgba(255, 0, 0, 0.05);
    box-shadow: 0 0 16px rgba(255, 0, 0, 0.18);
}

.page-faq .faq-item.is-open .faq-toggle::before,
.page-faq .faq-item.is-open .faq-toggle::after {
    background: #ff0000;
}

.page-faq .faq-item.is-open .faq-toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.page-faq .faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.34s ease, opacity 0.24s ease;
}

.page-faq .faq-item.is-open .faq-answer {
    opacity: 1;
}

.page-faq .faq-answer-inner {
    position: relative;
    z-index: 2;
    padding: 18px 96px 32px;
}

.page-faq .faq-answer p,
.page-faq .faq-intro {
    margin: 0;
    color: rgba(231, 235, 244, 0.68);
    font-size: clamp(0.96rem, 1.02vw, 1.05rem);
    line-height: 1.78;
}

.page-faq .faq-intro {
    padding: 0 0 0.95rem;
    font-weight: 500;
}

.page-faq .faq-list-items {
    display: grid;
    gap: 0.9rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-faq .faq-list-items li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 0;
    color: rgba(224, 229, 238, 0.8);
    line-height: 1.75;
}

.page-faq .faq-list-items i {
    margin: 0;
    margin-top: 0.2rem;
    color: #ff0000;
}

/* =========================
   SUPPORT CTA
========================= */

.page-faq .faq-support-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.55rem;
    max-width: 1200px;
    margin: clamp(36px, 5vw, 58px) auto 0;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 4px;
    background:
        radial-gradient(circle at 10% 50%, rgba(255, 0, 0, 0.16), transparent 18%),
        linear-gradient(180deg, rgba(10, 14, 22, 0.82), rgba(6, 9, 14, 0.94));
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(18px);
}

.page-faq .faq-support-icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 0, 0, 0.25) 0%, rgba(255, 0, 0, 0.08) 56%, transparent 74%);
    color: #ff0000;
    font-size: 1.45rem;
    box-shadow:
        inset 0 0 0 1px rgba(255, 0, 0, 0.2),
        0 0 28px rgba(255, 0, 0, 0.12);
}

.page-faq .faq-support-copy h3 {
    margin: 0 0 0.35rem;
    color: #f4f6fb;
    font-size: clamp(1.25rem, 1.75vw, 1.55rem);
    line-height: 1.2;
}

.page-faq .faq-support-copy p {
    margin: 0;
    color: rgba(224, 229, 238, 0.66);
    font-size: 1rem;
}

.page-faq .faq-support-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-width: 188px;
    padding: 0.98rem 1.45rem;
    border-radius: 4px;
    background: linear-gradient(180deg, #ef1d28 0%, #c80711 100%);
    color: #fff;
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(255, 0, 0, 0.2);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.page-faq .faq-support-link:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 14px 34px rgba(255, 0, 0, 0.3);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1023px) {
    .page-faq .faq-page-shell {
        width: min(calc(100% - 36px), 1280px);
    }

    .page-faq .faq-hero {
        min-height: 260px;
        padding: calc(var(--nav-height, 72px) + 34px) 22px 58px;
        background-position: 88% 52%;
    }

    .page-faq .faq-accordion {
        margin-top: -18px;
    }

    .page-faq .faq-question {
        height: 76px;
        min-height: 76px;
        padding: 0 22px;
    }

    .page-faq .faq-question-main {
        gap: 18px;
    }

    .page-faq .faq-item::after {
        top: 76px;
        left: 84px;
        right: 58px;
    }

    .page-faq .faq-answer-inner {
        padding: 18px 84px 26px;
    }

    .page-faq .faq-support-card {
        grid-template-columns: auto 1fr;
    }

    .page-faq .faq-support-link {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .page-faq .faq-page-shell {
        width: min(calc(100% - 28px), 1280px);
    }

    .page-faq .faq-hero {
        min-height: 230px;
        padding: calc(var(--nav-height, 72px) + 26px) 16px 48px;
        background-position: 78% 60%;
    }

    .page-faq .faq-heading::before {
        margin-bottom: 12px;
        padding-left: 34px;
        font-size: 0.64rem;
        letter-spacing: 0.18em;
        background-size: 24px 1px;
    }

    .page-faq .faq-heading h2 {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 1.04;
        white-space: normal;
    }

    .page-faq .faq-heading p {
        max-width: 420px;
        margin-top: 12px;
        font-size: 14.5px;
        line-height: 1.62;
    }

    .page-faq .faq-accordion {
        margin-top: -12px;
        border-radius: 4px;
    }

    .page-faq .faq-question {
        height: auto;
        min-height: 72px;
        gap: 0.8rem;
        padding: 0.92rem 0.92rem;
    }

    .page-faq .faq-question-main {
        gap: 0.78rem;
    }

    .page-faq .faq-index {
        width: 34px;
        flex-basis: 34px;
        font-size: 1.12rem;
    }

    .page-faq .faq-divider {
        height: 24px;
    }

    .page-faq .faq-question-text {
        font-size: 0.95rem;
        line-height: 1.38;
    }

    .page-faq .faq-toggle {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .page-faq .faq-item::after {
        top: 72px;
        left: 58px;
        right: 42px;
    }

    .page-faq .faq-answer-inner {
        padding: 16px 16px 22px 58px;
    }

    .page-faq .faq-answer p,
    .page-faq .faq-intro {
        font-size: 0.94rem;
        line-height: 1.72;
    }

    .page-faq .faq-support-card {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 1rem;
        border-radius: 4px;
    }

    .page-faq .faq-support-icon {
        width: 58px;
        height: 58px;
        font-size: 1.25rem;
    }

    .page-faq .faq-support-link {
        min-width: 0;
        width: 100%;
        border-radius: 4px;
    }
}
