.faq-page {
    background: var(--paper);
}

.faq-hero {
    padding: 120px 0 56px;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, .16), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(238, 246, 255, .7)),
        var(--paper);
}

.faq-hero h1 {
    margin: 0 0 18px;
    max-width: 850px;
    font-size: clamp(46px, 8vw, 98px);
    line-height: .92;
    letter-spacing: -0.07em;
    color: var(--ink);
}

.faq-hero p {
    max-width: 780px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.8;
}

.faq-section {
    padding: 56px 0 100px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 28px;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
}

.faq-sidebar-card {
    padding: 18px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(17, 24, 39, .08);
    border: 1px solid rgba(17, 24, 39, .08);
}

.faq-sidebar-card > strong {
    display: block;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.faq-tabs {
    display: grid;
    gap: 8px;
}

.faq-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 16px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 900;
    transition: .2s ease;
}

.faq-tab small {
    display: inline-grid;
    place-items: center;
    min-width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(17, 24, 39, .07);
    color: var(--muted);
    font-size: 12px;
}

.faq-tab:hover,
.faq-tab.active {
    background: var(--orange);
    color: #fff;
}

.faq-tab:hover small,
.faq-tab.active small {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.faq-content-head {
    margin-bottom: 22px;
    padding: 26px;
    border-radius: 28px;
    background: var(--dark);
    color: #fff;
    box-shadow: 0 24px 70px rgba(13, 27, 42, .18);
}

.faq-content-head span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--orange);
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
}

.faq-content-head h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 52px);
    letter-spacing: -0.05em;
}

.faq-content-head p {
    max-width: 740px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    line-height: 1.7;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .08);
    box-shadow: 0 16px 40px rgba(17, 24, 39, .06);
}

.faq-question {
    width: 100%;
    min-height: 68px;
    padding: 18px 22px;
    border: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    color: var(--ink);
    font-size: 18px;
    font-weight: 950;
    cursor: pointer;
}

.faq-question i {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--soft-orange);
    color: var(--orange);
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    transition: .2s ease;
}

.faq-answer {
    display: none;
    padding: 0 22px 22px;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-item.is-open .faq-question i {
    background: var(--orange);
    color: #fff;
    transform: rotate(45deg);
}

.faq-empty {
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    color: var(--muted);
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(17, 24, 39, .06);
}

@media (max-width: 992px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
    }

    .faq-tabs {
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .faq-tab {
        white-space: nowrap;
        min-width: max-content;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 100px 0 40px;
    }

    .faq-section {
        padding: 36px 0 80px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px;
    }

    .faq-answer {
        padding: 0 16px 18px;
    }
}