.glist-help {
    --help-primary: #080b9d;
    --help-primary-soft: #eef0ff;
    --help-surface: #ffffff;
    --help-text: #1f2937;
    --help-muted: #64748b;
    --help-border: #dfe3ec;
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 64px;
    color: var(--help-text);
}

.glist-help * {
    box-sizing: border-box;
}

.glist-help__intro {
    max-width: 760px;
    margin-bottom: 28px;
}

.glist-help__eyebrow {
    margin: 0 0 10px;
    color: var(--help-primary);
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.glist-help h1 {
    margin: 0;
    color: #111827;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.04;
    letter-spacing: -.035em;
}

.glist-help__lead {
    margin: 20px 0 0;
    color: var(--help-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.glist-help__quicklinks {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 28px 0 54px;
}

.glist-help__quicklinks a {
    padding: 9px 13px;
    border: 1px solid var(--help-border);
    border-radius: 999px;
    background: var(--help-surface);
    color: var(--help-primary);
    font-weight: 700;
    text-decoration: none;
}

.glist-help__section {
    scroll-margin-top: 20px;
    margin: 0 0 22px;
    padding: 30px;
    border: 1px solid var(--help-border);
    border-radius: 20px;
    background: var(--help-surface);
}

.glist-help__section h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1.15;
}

.glist-help__section h3 {
    margin: 24px 0 8px;
    color: #111827;
    font-size: 1.08rem;
}

.glist-help__section p,
.glist-help__section li {
    color: var(--help-muted);
    line-height: 1.7;
}

.glist-help__section p {
    margin: 0 0 14px;
}

.glist-help__section p:last-child {
    margin-bottom: 0;
}

.glist-help__section ul,
.glist-help__section ol {
    margin: 12px 0 0;
    padding-left: 1.3rem;
}

.glist-help__section li + li {
    margin-top: 8px;
}

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

.glist-help__card {
    padding: 18px;
    border-radius: 14px;
    background: #f7f8fc;
}

.glist-help__card h3 {
    margin-top: 0;
}

.glist-help__note {
    margin-top: 18px;
    padding: 16px 18px;
    border-left: 4px solid var(--help-primary);
    border-radius: 0 12px 12px 0;
    background: var(--help-primary-soft);
    color: #3730a3;
    line-height: 1.6;
}

.glist-help__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.glist-help__button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border: 1px solid var(--help-primary);
    border-radius: 10px;
    color: var(--help-primary) !important;
    font-weight: 700;
    text-decoration: none;
}

.glist-help__button--primary {
    background: var(--help-primary);
    color: #ffffff !important;
}

@media (max-width: 700px) {
    .glist-help {
        width: min(100% - 24px, 1040px);
        padding-top: 28px;
    }

    .glist-help__quicklinks {
        margin-bottom: 36px;
    }

    .glist-help__section {
        padding: 22px;
    }

    .glist-help__grid {
        grid-template-columns: 1fr;
    }

    .glist-help__actions,
    .glist-help__button {
        width: 100%;
    }
}
