body.zx-faq-page {
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 234, 255, 0.12), transparent 34rem),
        linear-gradient(180deg, #05070b 0%, #02070a 50%, #000 100%);
    color: #eef8fb;
}

.faq-page {
    --faq-cyan: #00eaff;
    --faq-red: #ff2638;
    --faq-orange: #ff6b2e;
    --faq-panel: rgba(6, 14, 20, 0.82);
    --faq-line: rgba(0, 234, 255, 0.24);
    --faq-muted: #9bb4bd;
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.faq-shell {
    width: min(1180px, 92vw);
    margin-inline: auto;
}

.faq-hero {
    position: relative;
    min-height: clamp(430px, 58vw, 620px);
    display: grid;
    align-items: end;
    overflow: hidden;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.28)), var(--faq-hero-image);
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--faq-line);
}

.faq-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), #02070a 100%),
        repeating-linear-gradient(90deg, rgba(0, 234, 255, 0.05) 0 1px, transparent 1px 80px);
    pointer-events: none;
}

.faq-hero__content {
    position: relative;
    z-index: 1;
    width: min(1180px, 92vw);
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.faq-kicker {
    margin: 0 0 0.85rem;
    color: var(--faq-cyan);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.faq-hero h1,
.faq-intro h2,
.faq-cta h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
}

.faq-hero h1 {
    max-width: 900px;
    font-size: clamp(3.2rem, 8vw, 7.5rem);
    line-height: 0.9;
    letter-spacing: 0.08em;
}

.faq-hero__content > p:not(.faq-kicker) {
    max-width: 680px;
    margin: 1.2rem 0 0;
    color: #d8e8ee;
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    line-height: 1.75;
}

.faq-hero__actions,
.faq-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.65rem;
}

.faq-hero__actions a,
.faq-cta__buttons a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--faq-cyan);
    padding: 0.78rem 1rem;
    color: #fff;
    background: rgba(0, 18, 26, 0.76);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 900;
}

.faq-hero__actions a:hover,
.faq-cta__buttons a:hover {
    border-color: var(--faq-red);
    box-shadow: 0 0 24px rgba(255, 38, 56, 0.24);
}

.faq-intro {
    display: grid;
    grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: start;
    margin-top: clamp(3rem, 5vw, 5rem);
    padding: clamp(1.4rem, 3vw, 2rem);
    border-left: 2px solid var(--faq-red);
    background: rgba(7, 16, 22, 0.58);
}

.faq-intro h2,
.faq-cta h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: 0.08em;
}

.faq-intro p,
.faq-cta p {
    margin: 0;
    color: #cfe1e6;
    line-height: 1.8;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.faq-group {
    border: 1px solid var(--faq-line);
    background: var(--faq-panel);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.faq-group header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.2rem 0.8rem;
    border-bottom: 1px solid rgba(0, 234, 255, 0.16);
}

.faq-group header span {
    color: var(--faq-red);
    font-weight: 900;
    letter-spacing: 0.14em;
}

.faq-group h2 {
    margin: 0;
    color: var(--faq-cyan);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.faq-list {
    padding: 0.5rem 1.2rem 1.2rem;
}

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

.faq-list details:last-child {
    border-bottom: 0;
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 0;
    color: #fff;
    font-weight: 800;
    line-height: 1.45;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    color: var(--faq-cyan);
    margin-left: 1rem;
}

.faq-list details[open] summary::after {
    content: "-";
    color: var(--faq-red);
}

.faq-list p {
    margin: -0.2rem 0 1rem;
    color: var(--faq-muted);
    line-height: 1.75;
}

.faq-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    margin-top: 1.2rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(255, 38, 56, 0.32);
    background: linear-gradient(135deg, rgba(84, 0, 10, 0.34), rgba(0, 20, 30, 0.72));
}

.faq-cta__buttons {
    justify-content: flex-end;
    margin-top: 0;
}

@media (max-width: 860px) {
    .zx-faq-page .main-nav {
        display: grid;
        grid-template-columns: 1fr auto;
        width: 100%;
        box-sizing: border-box;
    }

    .zx-faq-page .nav-actions {
        grid-column: 1 / -1;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 0.75rem;
        box-sizing: border-box;
    }

    .faq-intro,
    .faq-grid,
    .faq-cta {
        grid-template-columns: 1fr;
    }

    .faq-cta__buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .faq-hero__actions a,
    .faq-cta__buttons a {
        width: 100%;
    }

    .faq-group header {
        align-items: flex-start;
    }
}
