/* =====================================================
   KICKWISE — FAQ PAGE
   Shared global hero + clean editorial accordion system.
===================================================== */

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

.kw-faq-page {
    --kw-faq-display-font: var(--kw-hero-display-font, "Ubuntu Local", "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);

    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 94px;
}

.kw-faq-hero {
    padding-bottom: 62px;
}

.kw-faq-hero__lead {
    width: min(100%, 940px);
}

.kw-faq-content {
    width: min(100%, 1040px);
    margin: 0 auto;
}


.kw-faq-topic-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 auto 50px;
}

.kw-faq-topic-nav__link {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(0, 49, 114, .12);
    border-radius: 11px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.72), rgba(240,247,255,.58));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: rgba(0, 49, 114, .78);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 12px;
    font-weight: 610;
    line-height: 1;
    letter-spacing: -.008em;
    text-decoration: none;
    box-shadow:
        0 1px 0 rgba(255,255,255,.94) inset,
        0 10px 24px rgba(0,49,114,.038);
    transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.kw-faq-topic-nav__link::after {
    content: "";
    position: absolute;
    top: 0;
    left: -82%;
    z-index: -1;
    width: 44%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.74), transparent);
    transform: skewX(-18deg);
    transition: left .62s ease;
    pointer-events: none;
}

.kw-faq-topic-nav__link:hover {
    border-color: rgba(0,49,114,.20);
    background:
        linear-gradient(135deg, rgba(255,255,255,.84), rgba(235,245,255,.70));
    color: #003172;
    box-shadow:
        0 1px 0 rgba(255,255,255,.98) inset,
        0 14px 28px rgba(0,49,114,.055);
    transform: translateY(-1px);
}

.kw-faq-topic-nav__link:hover::after {
    left: 138%;
}

.kw-faq-groups {
    border-top: 1px solid rgba(0, 49, 114, .10);
}

.kw-faq-group {
    display: grid;
    grid-template-columns: minmax(240px, .82fr) minmax(0, 1.18fr);
    gap: clamp(30px, 4.6vw, 64px);
    align-items: start;
    padding: 42px 0;
    border-bottom: 1px solid rgba(0, 49, 114, .095);
    scroll-margin-top: 108px;
}

.kw-faq-group__intro {
    position: sticky;
    top: 102px;
    min-width: 0;
}

.kw-faq-group__eyebrow {
    margin: 0 0 12px;
    color: rgba(0, 49, 114, .54);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 11px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.kw-faq-group__title {
    margin: 0;
    color: #003172;
    font-family: var(--kw-faq-display-font);
    font-size: clamp(21px, 2.2vw, 32px);
    font-weight: 520;
    line-height: 1.12;
    letter-spacing: -.042em;
    text-wrap: balance;
}


.kw-faq-split-heading strong,
.kw-faq-split-heading span {
    display: inline;
}

.kw-faq-split-heading strong {
    color: #003172;
    font-weight: 760;
}

.kw-faq-split-heading span {
    color: transparent;
    background: linear-gradient(180deg, #003172 0%, #245f9d 58%, rgba(47, 126, 219, .46) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 500;
}

.kw-faq-group__copy {
    max-width: 370px;
    margin: 13px 0 0;
    color: rgba(0, 49, 114, .60);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 13.6px;
    font-weight: 420;
    line-height: 1.72;
    letter-spacing: -.01em;
}

.kw-faq-items {
    min-width: 0;
    border-top: 1px solid rgba(0, 49, 114, .09);
}

.kw-faq-item {
    border-bottom: 1px solid rgba(0, 49, 114, .085);
}

.kw-faq-item:last-child {
    border-bottom-color: transparent;
}

.kw-faq-question {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 68px;
    margin: 0;
    padding: 18px 2px;
    color: #003172;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.46;
    letter-spacing: -.018em;
    cursor: pointer;
    transition: color .18s ease;
}

.kw-faq-question::-webkit-details-marker {
    display: none;
}

.kw-faq-question::marker {
    content: "";
}

.kw-faq-item:hover .kw-faq-question,
.kw-faq-item[open] .kw-faq-question {
    color: #1f61ad;
}

.kw-faq-toggle {
    position: relative;
    display: inline-flex;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: rgba(0, 49, 114, .54);
}

.kw-faq-toggle::before,
.kw-faq-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 1.7px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: opacity .18s ease, transform .18s ease, color .18s ease;
}

.kw-faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.kw-faq-item[open] .kw-faq-toggle::after {
    opacity: 0;
}

.kw-faq-item[open] .kw-faq-toggle {
    color: #1f61ad;
}

.kw-faq-answer {
    padding: 0 40px 20px 2px;
}

.kw-faq-answer p {
    max-width: 680px;
    margin: 0;
    color: rgba(0, 49, 114, .62);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 13.8px;
    font-weight: 420;
    line-height: 1.82;
    letter-spacing: -.01em;
}

.kw-faq-closing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 64px;
    padding: 30px 32px;
    border: 1px solid rgba(0, 49, 114, .10);
    border-radius: 23px;
    background:
        radial-gradient(circle at 16% -30%, rgba(47, 126, 219, .045), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,255,.94));
    box-shadow:
        0 1px 0 rgba(255,255,255,.96) inset,
        0 14px 32px rgba(0,49,114,.034);
}

.kw-faq-closing__copy {
    min-width: 0;
}

.kw-faq-closing__eyebrow {
    margin: 0 0 11px;
    color: rgba(0, 49, 114, .54);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 11px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.kw-faq-closing h2 {
    margin: 0;
    color: #003172;
    font-family: var(--kw-faq-display-font);
    font-size: clamp(21px, 2.2vw, 32px);
    font-weight: 520;
    line-height: 1.12;
    letter-spacing: -.042em;
    text-wrap: balance;
}

.kw-faq-closing p:not(.kw-faq-closing__eyebrow) {
    max-width: 650px;
    margin: 12px 0 0;
    color: rgba(0, 49, 114, .60);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 13.8px;
    font-weight: 420;
    line-height: 1.72;
    letter-spacing: -.01em;
}

.kw-faq-closing__actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

html[data-theme="dark"] .kw-faq-group__title,
html[data-theme="dark"] .kw-faq-question,
html[data-theme="dark"] .kw-faq-closing h2 {
    color: #ffffff;
}

html[data-theme="dark"] .kw-faq-group__copy,
html[data-theme="dark"] .kw-faq-answer p,
html[data-theme="dark"] .kw-faq-closing p:not(.kw-faq-closing__eyebrow) {
    color: rgba(226,232,240,.66);
}

html[data-theme="dark"] .kw-faq-topic-nav__link {
    border-color: rgba(255,255,255,.12);
    background:
        linear-gradient(135deg, rgba(255,255,255,.086), rgba(255,255,255,.052));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: rgba(248,250,252,.84);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.045);
}

html[data-theme="dark"] .kw-faq-topic-nav__link::after {
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.18), transparent);
}

html[data-theme="dark"] .kw-faq-topic-nav__link:hover {
    border-color: rgba(255,255,255,.20);
    background:
        linear-gradient(135deg, rgba(255,255,255,.125), rgba(255,255,255,.078));
    color: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.065);
}

html[data-theme="dark"] .kw-faq-groups {
    border-top-color: rgba(255,255,255,.09);
}

html[data-theme="dark"] .kw-faq-group {
    border-bottom-color: rgba(255,255,255,.085);
}

html[data-theme="dark"] .kw-faq-group__eyebrow,
html[data-theme="dark"] .kw-faq-closing__eyebrow {
    color: rgba(226,232,240,.54);
}

html[data-theme="dark"] .kw-faq-items {
    border-top-color: rgba(255,255,255,.09);
}

html[data-theme="dark"] .kw-faq-item {
    border-bottom-color: rgba(255,255,255,.075);
}

html[data-theme="dark"] .kw-faq-item:hover .kw-faq-question,
html[data-theme="dark"] .kw-faq-item[open] .kw-faq-question {
    color: rgba(236,244,255,.92);
}

html[data-theme="dark"] .kw-faq-toggle {
    color: rgba(226,232,240,.54);
}

html[data-theme="dark"] .kw-faq-item[open] .kw-faq-toggle {
    color: #ffffff;
}

html[data-theme="dark"] .kw-faq-closing {
    border-color: rgba(255,255,255,.085);
    background:
        radial-gradient(circle at 16% -30%, rgba(255,255,255,.036), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.034));
    box-shadow: none;
}

@media (max-width: 920px) {
    .kw-faq-group {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .kw-faq-group__intro {
        position: static;
    }

    
.kw-faq-split-heading strong,
.kw-faq-split-heading span {
    display: inline;
}

.kw-faq-split-heading strong {
    color: #003172;
    font-weight: 760;
}

.kw-faq-split-heading span {
    color: transparent;
    background: linear-gradient(180deg, #003172 0%, #245f9d 58%, rgba(47, 126, 219, .46) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 500;
}

.kw-faq-group__copy {
        max-width: 760px;
    }

    .kw-faq-closing {
        display: grid;
    }

    .kw-faq-closing__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .kw-faq-page {
        width: min(100% - 22px, 1180px);
        padding-bottom: 80px;
    }

    .kw-faq-hero {
        padding-bottom: 44px;
    }

    .kw-faq-topic-nav {
        justify-content: flex-start;
        gap: 7px;
        margin-top: 24px;
        margin-bottom: 42px;
    }

    .kw-faq-topic-nav__link {
        min-height: 36px;
        padding-inline: 12px;
        border-radius: 10px;
        font-size: 11.6px;
    }

    .kw-faq-group {
        padding: 36px 0;
    }

    .kw-faq-question {
        min-height: 0;
        padding: 17px 0;
        gap: 16px;
        font-size: 14.2px;
    }

    .kw-faq-answer {
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 18px;
    }

    .kw-faq-answer p {
        font-size: 13.4px;
        line-height: 1.76;
    }

    .kw-faq-closing {
        margin-top: 48px;
        padding: 24px 20px;
        border-radius: 22px;
    }

    .kw-faq-closing__actions .kw-hero-btn {
        width: 100%;
    }
}


html[data-theme="dark"] .kw-faq-split-heading strong {
    color: #f8fafc;
}

html[data-theme="dark"] .kw-faq-split-heading span {
    color: transparent;
    background: linear-gradient(180deg, #f8fafc 0%, #d9dee7 48%, rgba(148, 163, 184, .54) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
