.faq-landing {
    --faq-accent: #ff4f40;
    --faq-accent-dark: #db3e32;
    --faq-ink: #17202e;
    --faq-muted: #667085;
    --faq-line: #e3e6eb;
    --faq-surface: #f6f7f9;
    color: var(--faq-ink);
    overflow: hidden;
}

.faq-landing a {
    text-decoration: none;
}

.faq-hero {
    position: relative;
    padding: 104px 0 76px;
    background: #fff;
}

.faq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 82% 28%, rgba(255, 79, 64, .11), transparent 32%);
    pointer-events: none;
}

.faq-hero .container {
    position: relative;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 79, 64, .2);
    border-radius: 999px;
    background: rgba(255, 79, 64, .05);
    color: var(--faq-accent);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.faq-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--faq-ink);
    font-size: clamp(48px, 5.2vw, 74px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.faq-hero h1 span {
    color: var(--faq-accent);
}

.faq-hero__lead {
    max-width: 680px;
    margin: 26px 0 0;
    color: var(--faq-muted);
    font-size: 18px;
    line-height: 1.6;
}

.faq-hero__animation {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    margin-left: auto;
    transform: scale(1.12);
    transform-origin: center right;
}

.faq-animation__player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .25s ease;
}

.faq-animation.is-ready .faq-animation__player {
    opacity: 1;
}

.faq-content {
    padding: 58px 0 104px;
    background: var(--faq-surface);
}

.faq-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 980px;
    margin: 0 auto 28px;
}

.faq-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-filter {
    min-height: 42px;
    padding: 9px 16px;
    border: 1px solid #dfe3e9;
    border-radius: 999px;
    background: #fff;
    color: var(--faq-muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.faq-filter:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 79, 64, .45);
    color: var(--faq-accent);
}

.faq-filter.is-active {
    border-color: var(--faq-accent);
    background: var(--faq-accent);
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 79, 64, .18);
}

.faq-filter:focus-visible,
.faq-question:focus-visible {
    outline: 3px solid rgba(255, 79, 64, .25);
    outline-offset: 3px;
}

.faq-result-count {
    flex: 0 0 auto;
    margin: 0;
    color: var(--faq-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--faq-line);
    border-radius: 18px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 79, 64, .32);
    box-shadow: 0 16px 34px rgba(23, 32, 46, .07);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: var(--faq-ink);
    text-align: left;
}

.faq-question__content {
    display: grid;
    gap: 6px;
}

.faq-question__category {
    color: var(--faq-accent);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.faq-question__text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -.015em;
}

.faq-question__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 79, 64, .08);
    color: var(--faq-accent);
    font-size: 18px;
    transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

.faq-question[aria-expanded='true'] .faq-question__icon {
    transform: rotate(45deg);
    background: var(--faq-accent);
    color: #fff;
}

.faq-question[aria-expanded='true'] .faq-question__text {
    color: var(--faq-accent);
}

.faq-answer {
    padding: 0 88px 24px 24px;
    color: var(--faq-muted);
    font-size: 16px;
    line-height: 1.65;
}

.faq-answer p {
    margin: 0;
}

.faq-answer p + p,
.faq-answer p + ul,
.faq-answer p + ol,
.faq-answer ul + p,
.faq-answer ol + p {
    margin-top: 14px;
}

.faq-answer ul,
.faq-answer ol {
    margin-bottom: 0;
    padding-left: 22px;
}

.faq-answer li + li {
    margin-top: 8px;
}

.faq-answer strong {
    color: var(--faq-ink);
}

.faq-answer a {
    color: var(--faq-accent);
    font-weight: 700;
}

.faq-answer a:hover {
    color: var(--faq-accent-dark);
}

@media (max-width: 991px) {
    .faq-hero {
        padding: 82px 0 62px;
    }

    .faq-hero__animation {
        max-width: 600px;
        margin: 8px auto 0;
        transform: none;
        transform-origin: center;
    }
}

@media (max-width: 767px) {
    .faq-hero {
        padding: 58px 0 0;
    }

    .faq-hero::before {
        background: radial-gradient(circle at 70% 58%, rgba(255, 79, 64, .09), transparent 38%);
    }

    .faq-hero .row {
        --bs-gutter-y: 0;
    }

    .faq-eyebrow {
        display: flex;
        width: fit-content;
        margin: 0 auto 19px;
        font-size: 11px;
    }

    .faq-hero h1 {
        font-size: 38px;
        line-height: 1.1;
        text-align: center;
    }

    .faq-hero__lead {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
    }

    .faq-hero .col-lg-5 {
        position: relative;
        min-height: 230px;
    }

    .faq-hero__animation {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        max-width: 390px;
        margin: 0 auto;
        aspect-ratio: auto;
    }

    .faq-content {
        padding: 38px 0 72px;
    }

    .faq-filter-bar {
        display: none;
    }

    .faq-filters {
        display: none;
    }

    .faq-result-count {
        margin-top: 0;
    }

    .faq-list {
        gap: 12px;
    }

    .faq-item {
        border-radius: 16px;
    }

    .faq-question {
        gap: 16px;
        padding: 19px 18px;
    }

    .faq-question__text {
        font-size: 17px;
        line-height: 1.4;
    }

    .faq-question__icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 18px 20px;
        font-size: 15px;
        line-height: 1.65;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-animation__player,
    .faq-filter,
    .faq-item,
    .faq-question__icon {
        transition: none;
    }
}
