/* Standalone FAQ page; load after brand.css. */
.faq-document {
    background: #f69445;
}

.faq-document .faq-page {
    padding-top: 73px;
    color: #042932;
    font-family: Montserrat, sans-serif;
}

.faq-page *,
.faq-page *::before,
.faq-page *::after {
    box-sizing: border-box;
}

.faq-page #faq {
    padding: clamp(42px, 7vw, 90px) 0;
    min-height: calc(100svh - 73px);
    color: #042932;
    background: repeating-linear-gradient(125deg, transparent 0 9px, #04293204 9px 10px), linear-gradient(135deg, #f69445 0%, #f69445 70%, #ffd52d 100%);
}

.faq-page .container-narrow {
    width: min(100% - 40px, 880px);
    max-width: 880px;
    margin-inline: auto;
}

.faq-back {
    display: inline-block;
    color: #042932;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 30px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.faq-page .eyebrow {
    color: #042932;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: 14px;
}

.faq-page h1 {
    font-family: Poppins, sans-serif;
    font-size: clamp(44px, 7vw, 78px);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1.08;
    margin: 0 0 20px;
}

.faq-page h1 span {
    color: #042932;
    background: linear-gradient(105deg, #042932 40%, #1492af);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-lead {
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 36px;
    max-width: 52ch;
}

.faq-page-list {
    display: grid;
    gap: 14px;
}

.faq-page-item {
    min-width: 0;
    border: 1px solid #1492af88;
    border-radius: 18px;
    color: #fff0d5;
    background: linear-gradient(125deg, #042932 70%, #0b5263);
    box-shadow: 0 7px 18px #04293212;
}

.faq-page-item summary {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 30px;
    gap: 16px;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    list-style: none;
    font-family: Poppins, sans-serif;
    font-size: clamp(16px, 2.3vw, 21px);
    font-weight: 700;
    line-height: 1.45;
    color: #ffd52d;
    border-radius: 17px;
}

.faq-page-item summary::-webkit-details-marker {
    display: none;
}

.faq-page-number {
    font-size: 12px;
    color: #f69445;
    letter-spacing: .05em;
}

.faq-page-icon {
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid #ffd52d70;
    border-radius: 50%;
}

.faq-page-icon::before,
.faq-page-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: currentColor;
    left: 8px;
    top: 13px;
}

.faq-page-icon::after {
    transform: rotate(90deg);
}

.faq-page-item[open] .faq-page-icon {
    color: #042932;
    background: #ffd52d;
    border-color: #ffd52d;
}

.faq-page-item[open] .faq-page-icon::after {
    transform: rotate(0);
}

.faq-page-item[open] {
    border-color: #ffd52d;
}

.faq-page-item summary:hover {
    background: #1492af20;
}

.faq-page-answer {
    padding: 0 70px 26px 68px;
}

.faq-page-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.85;
    color: #fff0d5;
    overflow-wrap: anywhere;
}

.faq-page-answer a,
.faq-page-answer .order-inline {
    color: #ffd52d;
    text-decoration: underline;
    text-underline-offset: 3px;
    font: inherit;
    font-weight: 700;
}

.faq-page-answer .order-inline {
    display: inline;
    border: 0;
    padding: 0;
    margin: 0;
    background: none;
    cursor: pointer;
}

.faq-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0 0;
    margin-top: 32px;
    border-top: 1px solid #04293240;
}

.faq-contact h2 {
    font: 700 22px/1.3 Poppins, sans-serif;
    letter-spacing: -.03em;
    margin: 0 0 10px;
}

.faq-contact p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.faq-contact .btn {
    flex-shrink: 0;
    background: #042932;
    border-color: #042932;
    color: #ffd52d;
    white-space: normal;
    text-align: center;
}

.faq-page a:focus-visible,
.faq-page button:focus-visible,
.faq-page summary:focus-visible {
    outline: 3px solid #1492af;
    outline-offset: 4px;
}

@media (max-width: 600px) {
    .faq-page .container-narrow {
        width: calc(100% - 32px);
    }

    .faq-page-item summary {
        grid-template-columns: minmax(0, 1fr) 28px;
        gap: 12px;
        padding: 20px 18px;
    }

    .faq-page-number {
        display: none;
    }

    .faq-page-answer {
        padding: 0 18px 22px;
    }

    .faq-page-answer p {
        font-size: 14px;
    }

    .faq-contact {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }
}