:root {
    --brand: #123b66;
    --accent: #0e7490;
    --warm: #f59e0b;
    --text: #17202a;
    --muted: #667085;
    --line: #d9e3ec;
    --bg: #f6f9fb;
    --panel: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.faq-header {
    padding-top: 62px;
    background:
        radial-gradient(circle at 18% 0%, rgba(114, 214, 187, 0.24), transparent 28%),
        linear-gradient(150deg, #08233c 0%, #0b4f55 54%, #0c694f 100%);
    color: #ffffff;
}

.faq-brand-bar {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 900;
    width: min(1120px, calc(100% - 44px));
    min-height: 62px;
    margin: 0 auto;
    padding: 0 14px;
    border: 1px solid rgba(177, 241, 217, 0.14);
    border-top: 0;
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(7, 28, 50, 0.94);
    box-shadow: 0 16px 38px rgba(4, 23, 41, 0.18);
    backdrop-filter: blur(14px);
    transform: translateX(-50%);
}

.faq-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.faq-brand img {
    display: block;
    width: 150px;
    max-width: 42vw;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.2));
}

.faq-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.faq-nav a {
    color: rgba(239, 255, 249, 0.82);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.faq-nav a:hover {
    color: #ffffff;
}

.faq-nav .faq-nav-cta {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(177, 241, 217, 0.34);
    border-radius: 8px;
    padding: 0 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 22px;
}

.faq-hero {
    padding: 38px 0 36px;
    background:
        linear-gradient(135deg, rgba(18, 59, 102, 0.08), rgba(14, 116, 144, 0.04)),
        #ffffff;
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    max-width: 920px;
    margin: 0;
    color: var(--brand);
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: 0;
}

.lead {
    max-width: 820px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.quick-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    border: 1px solid rgba(18, 59, 102, 0.16);
    border-radius: 8px;
    padding: 0 12px;
    color: var(--brand);
    background: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.quick-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.ask-box,
.filter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    margin-top: 24px;
}

input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 14px;
    color: var(--text);
    background: #fff;
    font-size: 15px;
}

button {
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    padding: 0 18px;
    color: #fff;
    background: var(--brand);
    font-weight: 900;
    cursor: pointer;
}

.answer-box {
    max-height: min(460px, 58vh);
    overflow: auto;
    margin-top: 16px;
    border: 1px solid #b7e4e6;
    border-radius: 8px;
    padding: 16px;
    background: #effafb;
}

.answer-question,
.answer-content {
    display: grid;
    gap: 6px;
}

.answer-question {
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(14, 116, 144, 0.18);
    padding-bottom: 12px;
}

.answer-question span,
.answer-content span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.answer-question strong {
    display: block;
    color: var(--brand);
    font-size: 16px;
    line-height: 1.35;
}

.answer-box p {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.65;
}

.answer-box p:last-child {
    margin-bottom: 0;
}

.answer-box ul {
    margin: 12px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 13px;
}

.answer-content .smart-answer-list,
.faq-answer .smart-answer-list {
    display: grid;
    gap: 7px;
    margin: 8px 0 12px;
    padding: 0;
    list-style: none;
}

.answer-content .smart-answer-list li,
.faq-answer .smart-answer-list li {
    position: relative;
    padding-left: 18px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.55;
}

.answer-content .smart-answer-list li::before,
.faq-answer .smart-answer-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.12);
}

.related-title {
    margin-top: 14px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 900;
}

.related-list a {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

.related-list a:hover {
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.product-grid article,
.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: 0 10px 24px rgba(18, 59, 102, 0.06);
}

.product-grid article {
    padding: 18px;
}

.product-card a {
    display: inline-flex;
    margin-top: 14px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.product-card a:hover {
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-grid h2,
.faq-item h2 {
    margin: 0 0 8px;
    color: var(--brand);
    font-size: 17px;
    line-height: 1.3;
}

.product-grid p,
.faq-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.filter-row {
    align-items: center;
    margin: 0 0 16px;
}

.help-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin: 0 0 28px;
    border: 1px solid rgba(14, 116, 144, 0.24);
    border-radius: 8px;
    padding: 22px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(18, 59, 102, 0.06);
}

.help-band h2 {
    max-width: 760px;
    margin: 0;
    color: var(--brand);
    font-size: 22px;
    line-height: 1.25;
}

.help-band p:not(.eyebrow) {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.help-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.help-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 14px;
    color: var(--brand);
    background: #fff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.help-actions .primary-link {
    border-color: var(--brand);
    color: #fff;
    background: var(--brand);
}

.help-actions a:hover {
    border-color: var(--accent);
}

.filter-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 48px;
}

.faq-item {
    padding: 0;
    scroll-margin-top: 18px;
}

.faq-item:target {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.14), 0 10px 24px rgba(18, 59, 102, 0.08);
}

.faq-question {
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    border-radius: 8px;
    padding: 16px 18px;
    color: var(--brand);
    background: transparent;
    font: inherit;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
}

.faq-question::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--accent);
    font-size: 20px;
    font-weight: 900;
}

.faq-question[aria-expanded="true"]::after {
    content: "-";
}

.faq-answer {
    border-top: 1px solid var(--line);
    padding: 0 18px 18px;
}

.faq-answer p {
    max-width: 960px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.faq-answer .formatted-answer p {
    margin-top: 12px;
}

.faq-answer .formatted-answer p:first-child {
    margin-top: 14px;
}

.faq-answer strong {
    color: var(--brand);
    font-weight: 900;
}

.faq-item.is-hidden {
    display: none;
}

.platform-footer {
    margin-top: 0;
}

.faq-footer-shell {
    padding-top: 0;
    padding-bottom: 8px;
}

.faq-footer-shell .platform-footer {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    color: rgba(36, 50, 68, 0.72);
}

.faq-footer-shell .platform-footer-inner {
    width: 100%;
    margin: 0;
}

.faq-footer-shell .platform-footer-brand {
    color: var(--brand);
}

.faq-footer-shell .platform-footer-links a {
    color: var(--accent);
}

.faq-footer-shell .platform-footer-links a:hover {
    color: var(--brand);
}

.faq-suggestion-box {
    grid-column: 1 / -1;
    display: grid;
    gap: 8px;
    margin-top: 8px;
}

.faq-suggestion-box[hidden] {
    display: none;
}

.faq-suggestion-box button {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    background: #fff;
    color: var(--brand);
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
}

.faq-suggestion-box button:hover,
.faq-suggestion-box button:focus-visible {
    border-color: var(--accent);
    background: #eef6f7;
    outline: none;
}

@media (max-width: 680px) {
    .faq-header {
        padding-top: 108px;
    }

    .faq-brand-bar {
        width: min(100% - 28px, 1120px);
        min-height: 96px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }

    .faq-brand img {
        width: 150px;
        max-width: 70vw;
    }

    .faq-nav {
        width: 100%;
        justify-content: flex-start;
        gap: 8px 12px;
    }

    .faq-nav a {
        font-size: 12px;
    }

    h1 {
        font-size: 34px;
    }

    .ask-box,
    .filter-row {
        grid-template-columns: 1fr;
    }

    .help-band {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .help-actions {
        justify-content: stretch;
    }

    .help-actions a {
        width: 100%;
    }
}
