
.helpPage {
    min-height: 800px;
    padding: 30px 0 88px;
    background:
        radial-gradient(circle at 84% 0%, rgb(232 243 228 / 70%), transparent 440px),
        linear-gradient(180deg, #fbfcfa 0%, #fff 520px);
}

.helpBreadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #717871;
    font-size: 13px;
}

.helpBreadcrumb a {
    color: var(--green);
    font-weight: 700;
}

.helpHero {
    margin-top: 30px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    border: 1px solid #dbe4d8;
    border-radius: 18px;
    background:
        linear-gradient(135deg, #f5faf3 0%, #fff 72%);
    box-shadow: 0 12px 36px rgb(0 0 0 / 5%);
}

.helpHeroCopy {
    max-width: 720px;
}

.helpHero h1 {
    margin-top: 6px;
    color: #151915;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.helpHeroCopy > p:last-child {
    max-width: 650px;
    margin-top: 12px;
    color: #596159;
    font-size: 17px;
    line-height: 1.65;
}

.helpResponseCard {
    width: min(370px, 100%);
    padding: 18px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    border: 1px solid #d8e3d5;
    border-radius: 12px;
    background: #fff;
}

.helpResponseIcon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f3e5;
    color: var(--green);
}

.helpResponseIcon svg {
    width: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.helpResponseCard strong {
    color: #1d231d;
    font-size: 14px;
}

.helpResponseCard p {
    margin-top: 5px;
    color: #606860;
    font-size: 12px;
    line-height: 1.5;
}

.helpTopicsSection {
    margin-top: 28px;
}

.helpSectionHeading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.helpSectionHeading h2 {
    margin-top: 4px;
    color: #1b201b;
    font-size: 28px;
}

.helpTopicGrid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.helpTopicCard {
    min-width: 0;
    padding: 20px;
    display: grid;
    align-content: start;
    border: 1px solid #dfe5dc;
    border-radius: 13px;
    background: #fff;
    color: #252b25;
    box-shadow: 0 7px 24px rgb(0 0 0 / 4%);
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.helpTopicCard:hover {
    transform: translateY(-2px);
    border-color: #bcd0b7;
    box-shadow: 0 12px 28px rgb(0 0 0 / 7%);
}

.helpTopicCard > span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf5eb;
    color: var(--green);
}

.helpTopicCard svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.helpTopicCard strong {
    margin-top: 13px;
    color: #202520;
    font-size: 15px;
}

.helpTopicCard small {
    margin-top: 5px;
    color: #697069;
    font-size: 11px;
    line-height: 1.45;
}

.helpContentLayout {
    margin-top: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
    gap: 24px;
    align-items: start;
}

.helpFaqSection,
.helpContactCard {
    min-width: 0;
    padding: 25px;
    border: 1px solid #dfe5dc;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 28px rgb(0 0 0 / 4%);
}

.helpFaqGroups {
    margin-top: 22px;
    display: grid;
    gap: 26px;
}

.helpFaqGroup {
    scroll-margin-top: 24px;
}

.helpFaqGroup h3 {
    margin-bottom: 11px;
    color: var(--green-darker);
    font-size: 18px;
}

.helpFaqGroup details {
    border-top: 1px solid #e4e9e2;
}

.helpFaqGroup details:last-child {
    border-bottom: 1px solid #e4e9e2;
}

.helpFaqGroup summary {
    position: relative;
    padding: 16px 42px 16px 0;
    color: #252a25;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    list-style: none;
    cursor: pointer;
}

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

.helpFaqGroup summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 7px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #edf4eb;
    color: var(--green);
    font-size: 19px;
    font-weight: 700;
}

.helpFaqGroup details[open] summary::after {
    content: "−";
}

.helpFaqGroup details > div {
    padding: 0 42px 17px 0;
    color: #5a625a;
    font-size: 13px;
    line-height: 1.65;
}

.helpFaqGroup details a {
    color: var(--green);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.helpContactAside {
    position: sticky;
    top: 22px;
}

.helpContactCard {
    scroll-margin-top: 22px;
}

.helpContactHeading h2 {
    margin-top: 4px;
    color: #1a1f1a;
    font-size: 27px;
}

.helpContactHeading > p:last-child {
    margin-top: 7px;
    color: #626962;
    font-size: 13px;
    line-height: 1.5;
}

.helpContactForm {
    margin-top: 22px;
    display: grid;
    gap: 16px;
}

.helpField {
    min-width: 0;
}

.helpField label {
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #242924;
    font-size: 13px;
    font-weight: 800;
}

.helpField label span {
    color: #747b74;
    font-size: 10px;
    font-weight: 500;
}

.helpField input,
.helpField select,
.helpField textarea {
    width: 100%;
    min-height: 49px;
    padding: 11px 13px;
    border: 1px solid #cfd8cc;
    border-radius: 8px;
    background: #fff;
    color: #171b17;
    font: inherit;
    font-size: 14px;
}

.helpField textarea {
    min-height: 145px;
    resize: vertical;
    line-height: 1.5;
}

.helpField input:focus,
.helpField select:focus,
.helpField textarea:focus {
    border-color: var(--green);
    outline: 3px solid rgb(39 111 45 / 13%);
}

.helpField input.isInvalid,
.helpField select.isInvalid,
.helpField textarea.isInvalid {
    border-color: #b42318;
    outline-color: rgb(180 35 24 / 12%);
}

.helpFieldHelp,
.helpMessageMeta {
    margin-top: 5px;
    color: #737a73;
    font-size: 10px;
    line-height: 1.4;
}

.helpMessageMeta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.helpCharacterCount {
    flex: 0 0 auto;
}

.helpFieldError {
    min-height: 16px;
    margin-top: 5px;
    color: #b42318;
    font-size: 11px;
    line-height: 1.35;
}

.helpPrivacyNotice {
    color: #697069;
    font-size: 11px;
    line-height: 1.5;
}

.helpPrivacyNotice a {
    color: var(--green);
    font-weight: 800;
}

.helpSubmitButton {
    width: 100%;
    min-height: 50px;
}

.helpEmailAlternative {
    margin-top: 19px;
    padding-top: 17px;
    border-top: 1px solid #e4e9e2;
}

.helpEmailAlternative span {
    display: block;
    color: #737a73;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .45px;
}

.helpEmailAlternative a {
    margin-top: 5px;
    display: inline-block;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.helpFormErrorSummary,
.helpFormStatus {
    margin-top: 18px;
    padding: 13px 14px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.5;
}

.helpFormErrorSummary {
    border: 1px solid #efb5ae;
    border-left: 4px solid #b42318;
    background: #fff6f5;
    color: #6e2019;
}

.helpFormErrorSummary ul {
    margin-top: 6px;
    padding-left: 18px;
}

.helpFormErrorSummary a {
    color: #8f1d14;
    font-weight: 800;
}

.helpFormStatus {
    border: 1px solid #c9dec4;
    border-left: 4px solid var(--green);
    background: #f2f8f0;
    color: #294a27;
}

.helpFormErrorSummary[hidden],
.helpFormStatus[hidden] {
    display: none !important;
}

.helpHoneypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
}

.mainNav a[aria-current="page"] {
    background: rgb(255 255 255 / 12%);
    color: #fff;
}

.helpContentLayout,
.helpFaqSection,
.helpContactAside,
.helpContactCard,
.helpTopicGrid {
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 1040px) {
    .helpTopicGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .helpContentLayout {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    }
}

@media (max-width: 840px) {
    .helpHero {
        align-items: stretch;
        flex-direction: column;
    }

    .helpResponseCard {
        width: 100%;
    }

    .helpContentLayout {
        grid-template-columns: 1fr;
    }

    .helpContactAside {
        position: static;
    }
}

@media (max-width: 620px) {
    .helpPage {
        padding-top: 22px;
        padding-bottom: 62px;
    }

    .helpPage .innerContainer {
        padding-right: 12px;
        padding-left: 12px;
    }

    .helpHero {
        margin-top: 22px;
        padding: 24px 18px;
    }

    .helpHero h1 {
        font-size: 39px;
    }

    .helpHeroCopy > p:last-child {
        font-size: 14px;
    }

    .helpTopicGrid {
        grid-template-columns: 1fr;
    }

    .helpFaqSection,
    .helpContactCard {
        padding: 20px 16px;
    }

    .helpSectionHeading h2 {
        font-size: 25px;
    }

    .helpFaqGroup summary {
        padding-right: 38px;
    }

    .helpFaqGroup details > div {
        padding-right: 0;
    }
}
