/* ==========================================================================
   FAQ / Help Center Page
   ========================================================================== */

/* Hero — green gradient with search
   ========================================================================== */
.faqPage .faqHero {
    background: linear-gradient(135deg, #006451 0%, #004d3d 100%);
    padding: 7rem 0 3.5rem;
    text-align: center;
    color: #fff;
}
.faqPage .faqHero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.025em;
    color: #fff;
    margin: 0 0 .75rem;
}
.faqPage .faqHero p {
    font-size: 1.125rem;
    line-height: 1.55;
    color: rgba(255,255,255,.9);
    margin: 0 0 2rem;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
}

/* Search box */
.faqPage .faqSearch {
    max-width: 34rem;
    margin: 0 auto;
    position: relative;
}
.faqPage .faqSearch__input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    border: none;
    border-radius: .5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    outline: none;
    color: #141414;
    background: #fff;
}
.faqPage .faqSearch__input::placeholder {
    color: #575655;
}
.faqPage .faqSearch__input:focus {
    box-shadow: 0 10px 25px rgba(0,0,0,.15), 0 0 0 3px rgba(0,100,81,.3);
}
.faqPage .faqSearch__icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #575655;
    pointer-events: none;
}

/* Screen-reader only label */
.faqPage .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Section headings (shared)
   ========================================================================== */
.faqPage .faqSection__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #141414;
    text-align: center;
    margin: 0 0 .5rem;
}
.faqPage .faqSection__subtitle {
    font-size: 1rem;
    color: #575655;
    text-align: center;
    margin: 0 auto 2.5rem;
    max-width: 34rem;
}

/* Popular Help Topics — card grid
   ========================================================================== */
.faqPage .faqTopics {
    padding: 3.5rem 0;
}
.faqPage .faqTopics__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: .5rem;
}
.faqPage .faqTopicCard {
    background: #fff;
    border: 1px solid #e8e6e1;
    border-radius: .5rem;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.faqPage .faqTopicCard:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    border-color: #006451;
    transform: translateY(-2px);
}
.faqPage .faqTopicCard__icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0,100,81,.1);
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .875rem;
}
.faqPage .faqTopicCard__icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #006451;
    fill: currentColor;
}
.faqPage .faqTopicCard h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #141414;
    margin: 0 0 .375rem;
}
.faqPage .faqTopicCard p {
    font-size: .875rem;
    color: #575655;
    line-height: 1.5;
    margin: 0;
}
.faqPage .faqTopicCard__count {
    display: inline-block;
    font-size: .8125rem;
    color: #006451;
    font-weight: 500;
    margin-top: .625rem;
}

/* Browse by Category — light-bg section
   ========================================================================== */
.faqPage .faqCategories {
    background-color: #f9f7f2;
    padding: 3.5rem 0;
}
.faqPage .faqCategories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.faqPage .faqCategoryCard {
    background: #fff;
    padding: 1.25rem;
    border-radius: .375rem;
    border: 1px solid #e8e6e1;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faqPage .faqCategoryCard:hover {
    border-color: #006451;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.faqPage .faqCategoryCard h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #141414;
    margin: 0 0 .25rem;
}
.faqPage .faqCategoryCard p {
    font-size: .8125rem;
    color: #575655;
    margin: 0;
    line-height: 1.45;
}

/* Need More Help? — support card
   ========================================================================== */
.faqPage .faqSupport {
    padding: 3.5rem 0 0;
}
.faqPage .faqSupport__card {
    background: linear-gradient(135deg, #f9f7f2 0%, #fff 100%);
    border: 1px solid #e8e6e1;
    border-radius: .75rem;
    padding: 2.5rem;
    text-align: center;
    max-width: 40rem;
    margin: 0 auto;
}
.faqPage .faqSupport__card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #141414;
    margin: 0 0 .75rem;
}
.faqPage .faqSupport__card p {
    font-size: 1.0625rem;
    line-height: 1.55;
    color: #575655;
    margin: 0 0 1.75rem;
}
.faqPage .faqSupport__buttons {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.faqPage .faqSupport__buttons .btn {
    width: auto;
    min-width: 10rem;
    padding: .75rem 1.75rem;
}
.faqPage .faqSupport__buttons .btn.outline {
    background-color: transparent;
    border: 1px solid #141414;
    color: #141414;
}
.faqPage .faqSupport__buttons .btn.outline:hover {
    background-color: #141414;
    color: #fff;
}

/* FAQ Accordions section
   ========================================================================== */
.faqPage .faqQA {
    padding: 3.5rem 0 1rem;
}
.faqPage .faqQA > .container > .faqSection__title {
    margin-bottom: .5rem;
}
.faqPage .faqQA > .container > .faqSection__subtitle {
    margin-bottom: 3rem;
}

/* Category block */
.faqPage .faqCategory {
    max-width: 50rem;
    margin: 0 auto 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #f2f0eb;
    scroll-margin-top: 6rem;
}
.faqPage .faqCategory:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.faqPage .faqCategory__header {
    display: flex;
    align-items: center;
    gap: .875rem;
    margin-bottom: 2rem;
}
.faqPage .faqCategory__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .5rem;
    background-color: #006451;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.faqPage .faqCategory__icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #fff;
}
.faqPage .faqCategory__header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.025em;
    color: #141414;
    margin: 0;
}

/* FAQ Q&A list
   ========================================================================== */
.faqPage .faqList__item:not(:last-child) {
    border-bottom: 1px solid #e8e6e1;
    padding-bottom: 1.75rem;
    margin-bottom: 1.75rem;
}
.faqPage .faqList__item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    color: #141414;
    margin: 0 0 .5rem;
}
.faqPage .faqList__item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #575655;
    margin: 0;
}
.faqPage .faqList__item a {
    color: #006451;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* No results message */
.faqPage .faqNoResults {
    text-align: center;
    padding: 3rem 0;
}
.faqPage .faqNoResults p {
    font-size: 1.0625rem;
    color: #575655;
}
.faqPage .faqNoResults a {
    color: #006451;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Final CTA section
   ========================================================================== */
.faqPage .faqCta {
    background-color: #f2f0eb;
    padding: 5rem 0;
}
.faqPage .faqCta__box {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
}
.faqPage .faqCta__box h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #141414;
    margin: 0 0 .75rem;
}
.faqPage .faqCta__box p {
    font-size: 1.0625rem;
    line-height: 1.55;
    color: #575655;
    margin: 0 0 2rem;
}
.faqPage .faqCta__buttons {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.faqPage .faqCta__buttons .btn {
    width: auto;
    min-width: 10rem;
    padding: .75rem 1.75rem;
}
.faqPage .faqCta__buttons .btn.outline {
    background-color: transparent;
    border: 1px solid #141414;
    color: #141414;
}
.faqPage .faqCta__buttons .btn.outline:hover {
    background-color: #141414;
    color: #fff;
}

/* Responsive — tablet (1100px)
   ========================================================================== */
@media (max-width: 1100px) {
    .faqPage .faqHero {
        padding: 6rem 0 2.5rem;
    }
    .faqPage .faqHero h1 {
        font-size: 2.25rem;
    }
    .faqPage .faqTopics__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faqPage .faqCategories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faqPage .faqSection__title {
        font-size: 1.625rem;
    }
    .faqPage .faqSupport__card {
        padding: 2rem;
    }
    .faqPage .faqCta {
        padding: 3.5rem 0;
    }
    .faqPage .faqCta__box h2 {
        font-size: 1.75rem;
    }
}

/* Responsive — mobile (640px)
   ========================================================================== */
@media (max-width: 640px) {
    .faqPage .faqHero {
        padding: 5.5rem 0 2rem;
    }
    .faqPage .faqHero h1 {
        font-size: 1.75rem;
    }
    .faqPage .faqHero p {
        font-size: 1rem;
    }
    .faqPage .faqSearch__input {
        font-size: .9375rem;
        padding: .875rem 2.75rem .875rem 1rem;
    }
    .faqPage .faqTopics,
    .faqPage .faqCategories,
    .faqPage .faqSupport,
    .faqPage .faqQA {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .faqPage .faqTopics__grid {
        grid-template-columns: 1fr;
    }
    .faqPage .faqCategories__grid {
        grid-template-columns: 1fr 1fr;
        gap: .75rem;
    }
    .faqPage .faqCategoryCard {
        padding: 1rem;
    }
    .faqPage .faqSection__title {
        font-size: 1.5rem;
    }
    .faqPage .faqSection__subtitle {
        margin-bottom: 1.75rem;
    }
    .faqPage .faqSupport__card {
        padding: 1.5rem;
    }
    .faqPage .faqSupport__card h2 {
        font-size: 1.375rem;
    }
    .faqPage .faqSupport__buttons {
        flex-direction: column;
        align-items: center;
    }
    .faqPage .faqSupport__buttons .btn {
        width: 100%;
        max-width: 18rem;
    }
    .faqPage .faqCategory {
        padding-bottom: 1.75rem;
        margin-bottom: 1.75rem;
    }
    .faqPage .faqCategory__header {
        margin-bottom: 1.5rem;
    }
    .faqPage .faqCategory__header h3 {
        font-size: 1.25rem;
    }
    .faqPage .faqList__item h4 {
        font-size: 1rem;
    }
    .faqPage .faqCta {
        padding: 2.5rem 0;
    }
    .faqPage .faqCta__box h2 {
        font-size: 1.5rem;
    }
    .faqPage .faqCta__box p {
        font-size: 1rem;
    }
    .faqPage .faqCta__buttons {
        flex-direction: column;
        align-items: center;
    }
    .faqPage .faqCta__buttons .btn {
        width: 100%;
        max-width: 18rem;
    }
}