.faq-page {
    background: var(--cream);
    color: var(--forest2);
    overflow: hidden;
}

.page-container,
.faq-hero__container {
    width: min(100% - 32px, 1280px);
    margin-inline: auto;
}

.faq-list-container {
    width: min(100% - 32px, 1024px);
    margin-inline: auto;
}

.section-eyebrow {
    margin: 0;
    color: var(--leaf);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.section-eyebrow--light {
    color: var(--mint);
}

.section-title {
    margin: 12px 0 0;
    color: var(--forest2);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.04em;
}

.section-description {
    max-width: 768px;
    margin: 0;
    color: var(--zinc-700);
    font-size: 18px;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 48px;
}

.section-header--split {
    display: grid;
    gap: 24px;
    align-items: end;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.button:hover {
    transform: translateY(-4px);
}

.button--primary {
    background: var(--forest);
    color: var(--white);
    box-shadow: var(--shadow-card);
}

.button--secondary {
    border: 1px solid rgba(11, 51, 38, .10);
    background: rgba(255, 255, 255, .70);
    color: var(--forest2);
    box-shadow: 0 1px 4px rgba(16, 32, 24, .08);
    backdrop-filter: blur(14px);
}

.button--light {
    margin-top: 32px;
    background: var(--white);
    color: var(--forest2);
}

.button--light:hover {
    background: var(--emerald-100);
}

/* Hero */

.faq-hero {
    position: relative;
    overflow: hidden;
}

.faq-hero__decor {
    position: absolute;
    border-radius: 999px;
    filter: blur(64px);
    pointer-events: none;
}

.faq-hero__decor--right {
    top: -160px;
    right: 0;
    width: 512px;
    height: 512px;
    background: rgba(47, 125, 75, .20);
}

.faq-hero__decor--left {
    bottom: 0;
    left: 0;
    width: 320px;
    height: 320px;
    background: rgba(167, 243, 208, .30);
}

.faq-hero__container {
    position: relative;
    display: grid;
    gap: 48px;
    padding-block: 96px;
}

.faq-hero__title {
    max-width: 1024px;
    margin: 16px 0 0;
    color: var(--forest2);
    font-size: 40px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.faq-hero__text {
    max-width: 768px;
    margin: 24px 0 0;
    color: var(--zinc-700);
    font-size: 18px;
    line-height: 1.8;
}

.faq-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

/* Preview */

.faq-preview {
    position: relative;
}

.faq-preview__window {
    padding: 24px;
    border: 1px solid rgba(11, 51, 38, .10);
    border-radius: 40px;
    background: rgba(255, 255, 255, .65);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px);
}

.faq-preview__dots {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.faq-preview__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
}

.faq-preview__dot--red {
    background: #fca5a5;
}

.faq-preview__dot--yellow {
    background: #fde047;
}

.faq-preview__dot--green {
    background: #86efac;
}

.faq-preview__mock {
    display: grid;
    gap: 12px;
}

.faq-preview__line {
    width: 66.666%;
    height: 36px;
    border-radius: 999px;
    background: var(--emerald-100);
}

.faq-preview__item {
    height: 64px;
    border-radius: 24px;
    background: var(--emerald-50);
}

.faq-preview__item--cream {
    background: var(--cream);
}

.faq-preview__item--strong {
    background: var(--emerald-100);
}

.faq-preview__item--white {
    background: var(--white);
}

.faq-preview__badge {
    position: absolute;
    right: -12px;
    bottom: -24px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .80);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
}

.faq-preview__badge strong {
    display: block;
    color: var(--forest2);
    font-size: 24px;
    line-height: 1.2;
}

.faq-preview__badge span {
    color: var(--zinc-600);
    font-size: 14px;
    font-weight: 700;
}

.float {
    animation: faqFloat 7s ease-in-out infinite;
}

@keyframes faqFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Categories */

.faq-categories {
    padding-bottom: 80px;
}

.category-grid {
    display: grid;
    gap: 24px;
}

.category-card {
    min-height: 100%;
}

.category-card__link {
    display: block;
    min-height: 100%;
    padding: 28px;
    border: 1px solid rgba(11, 51, 38, .10);
    border-radius: 32px;
    background: rgba(255, 255, 255, .65);
    color: inherit;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(16, 32, 24, .08);
    backdrop-filter: blur(14px);
    transition: transform .25s ease, box-shadow .25s ease;
}

.category-card__link:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.category-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: var(--emerald-100);
    font-size: 24px;
}

.category-card__title {
    display: block;
    color: var(--forest2);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.3;
}

.category-card__description {
    display: block;
    margin-top: 12px;
    color: var(--zinc-600);
    line-height: 1.75;
}

/* FAQ List */

.faq-list-section {
    padding-block: 96px;
    background: rgba(255, 255, 255, .70);
}

.faq-groups {
    display: grid;
    gap: 48px;
}

.faq-group {
    scroll-margin-top: 96px;
}

.faq-group__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.faq-group__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 16px;
    background: var(--emerald-100);
    font-size: 20px;
}

.faq-group__header h3 {
    margin: 0;
    color: var(--forest2);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
}

.faq-items {
    display: grid;
    gap: 20px;
}

.faq-item {
    padding: 24px;
    border: 1px solid rgba(11, 51, 38, .10);
    border-radius: 28px;
    background: rgba(248, 244, 232, .70);
    box-shadow: 0 1px 4px rgba(16, 32, 24, .08);
    transition: box-shadow .25s ease, transform .25s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-card);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    color: var(--forest2);
    font-weight: 900;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__plus {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--emerald-100);
    color: var(--forest);
    transition: transform .25s ease;
}

.faq-item[open] .faq-item__plus {
    transform: rotate(45deg);
}

.faq-item__answer p {
    margin: 16px 0 0;
    color: var(--zinc-600);
    line-height: 1.75;
}

/* CTA */

.faq-cta {
    padding-block: 96px;
}

.faq-cta__box {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 40px;
    background: var(--forest);
    color: var(--white);
    box-shadow: var(--shadow-card);
}

.faq-cta__decor {
    position: absolute;
    top: -96px;
    right: -96px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: rgba(47, 125, 75, .25);
    filter: blur(64px);
}

.faq-cta__content {
    position: relative;
    max-width: 768px;
}

.faq-cta h2 {
    margin: 16px 0 0;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.faq-cta p:not(.section-eyebrow) {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .70);
    font-size: 18px;
    line-height: 1.8;
}

/* Responsive */

@media (min-width: 768px) {
    .faq-hero__title {
        font-size: 60px;
    }

    .section-title {
        font-size: 48px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-cta__box {
        padding: 64px;
    }

    .faq-cta h2 {
        font-size: 60px;
    }
}

@media (min-width: 1024px) {
    .faq-hero__container {
        grid-template-columns: 1fr .9fr;
        align-items: center;
    }

    .section-header--split {
        grid-template-columns: .8fr 1.2fr;
    }

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .faq-hero__container {
        padding-block: 72px;
    }

    .faq-hero__title,
    .faq-cta h2 {
        font-size: 36px;
    }

    .button {
        width: 100%;
    }

    .faq-preview__badge {
        right: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .float {
        animation: none !important;
    }
}