.help-modern {
    --help-ink: #171512;
    --help-muted: #6d675f;
    --help-line: #e6e0d7;
    --help-line-strong: #d6cfc4;
    --help-surface: #f6f3ee;
    --help-surface-warm: #eee8df;
    --help-white: #fff;
    --help-accent: #9a4f2f;
    --help-accent-soft: #f4e8e1;
    background: #fff;
    color: var(--help-ink);
}

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

.help-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(54px, 7vw, 88px) 0 0;
    background:
        radial-gradient(circle at 85% 5%, rgba(154, 79, 47, .10), transparent 28%),
        linear-gradient(180deg, #faf8f4 0%, #f4f0e9 100%);
    border-bottom: 1px solid var(--help-line);
}

.help-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(34px, 6vw, 80px);
    align-items: end;
}

.help-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--help-accent);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.help-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--help-ink);
    font-size: clamp(2.35rem, 5vw, 4.65rem);
    font-weight: 850;
    line-height: .98;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.help-hero__lead {
    max-width: 690px;
    margin: 20px 0 30px;
    color: var(--help-muted);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.7;
}

.help-hero__aside {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 clamp(28px, 4vw, 46px);
}

.help-hero__aside-card {
    padding: 22px 24px;
    border: 1px solid rgba(81, 70, 58, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .68);
    backdrop-filter: blur(8px);
}

.help-hero__aside-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: .94rem;
}

.help-hero__aside-card p {
    margin: 0;
    color: var(--help-muted);
    font-size: .88rem;
    line-height: 1.55;
}

.help-nav-wrap {
    overflow-x: auto;
    margin-top: clamp(28px, 4vw, 44px);
    -webkit-overflow-scrolling: touch;
}

.help-nav {
    display: flex;
    min-width: max-content;
    gap: 5px;
    padding-bottom: 1px;
}

.help-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 12px 12px 0 0;
    color: var(--help-muted);
    font-size: .86rem;
    font-weight: 750;
    text-decoration: none;
}

.help-nav a:hover,
.help-nav a:focus {
    background: rgba(255,255,255,.56);
    color: var(--help-ink);
    text-decoration: none;
}

.help-nav a.is-active {
    background: #fff;
    color: var(--help-ink);
    box-shadow: inset 0 -2px 0 var(--help-accent);
}

.help-main {
    padding: clamp(42px, 6vw, 76px) 0 clamp(70px, 8vw, 108px);
}

.help-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: clamp(34px, 5vw, 54px);
}

.help-quick-card {
    display: flex;
    min-height: 148px;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid var(--help-line);
    border-radius: 17px;
    background: var(--help-white);
    color: var(--help-ink);
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.help-quick-card:hover,
.help-quick-card:focus {
    transform: translateY(-2px);
    border-color: var(--help-line-strong);
    box-shadow: 0 16px 34px rgba(32, 28, 23, .07);
    color: var(--help-ink);
    text-decoration: none;
}

.help-quick-card small {
    color: var(--help-accent);
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.help-quick-card strong {
    font-size: 1.02rem;
    line-height: 1.35;
}

.help-quick-card span {
    color: var(--help-muted);
    font-size: .82rem;
    line-height: 1.45;
}

.help-search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    margin-bottom: clamp(42px, 6vw, 66px);
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid var(--help-line);
    border-radius: 20px;
    background: var(--help-surface);
}

.help-search-panel h2 {
    margin: 0 0 6px;
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    font-weight: 820;
    letter-spacing: -.03em;
}

.help-search-panel p {
    margin: 0;
    color: var(--help-muted);
    font-size: .9rem;
}

.help-search {
    position: relative;
    width: min(100%, 420px);
}

.help-search input {
    width: 100%;
    height: 52px;
    padding: 0 16px 0 44px;
    border: 1px solid var(--help-line-strong);
    border-radius: 13px;
    background: #fff;
    color: var(--help-ink);
    font-size: .95rem;
    outline: none;
}

.help-search input:focus {
    border-color: #a59a8c;
    box-shadow: 0 0 0 3px rgba(104, 92, 78, .08);
}

.help-search::before {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 14px;
    height: 14px;
    border: 2px solid #81776c;
    border-radius: 50%;
    content: '';
    transform: translateY(-58%);
    pointer-events: none;
}

.help-search::after {
    position: absolute;
    top: calc(50% + 6px);
    left: 29px;
    width: 7px;
    height: 2px;
    background: #81776c;
    content: '';
    transform: rotate(45deg);
    transform-origin: left center;
    pointer-events: none;
}

.help-faq-layout {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: clamp(30px, 5vw, 64px);
    align-items: start;
}

.help-category-nav {
    position: sticky;
    top: 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.help-category-nav span {
    margin-bottom: 5px;
    color: var(--help-muted);
    font-size: .67rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.help-category-nav a {
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--help-muted);
    font-size: .88rem;
    font-weight: 720;
    text-decoration: none;
}

.help-category-nav a:hover,
.help-category-nav a:focus {
    background: var(--help-surface);
    color: var(--help-ink);
    text-decoration: none;
}

.help-faq-group {
    scroll-margin-top: 24px;
    margin-bottom: clamp(42px, 6vw, 68px);
}

.help-faq-group__heading {
    margin-bottom: 16px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--help-line-strong);
}

.help-faq-group__heading small {
    display: block;
    margin-bottom: 5px;
    color: var(--help-accent);
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.help-faq-group__heading h2 {
    margin: 0;
    color: var(--help-ink);
    font-size: clamp(1.55rem, 2.7vw, 2.25rem);
    font-weight: 830;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.help-faq-item {
    margin: 0;
    border-bottom: 1px solid var(--help-line);
}

.help-faq-item:first-of-type {
    border-top: 1px solid var(--help-line);
}

.help-faq-item summary {
    position: relative;
    display: flex;
    min-height: 68px;
    align-items: center;
    padding: 17px 48px 17px 0;
    color: var(--help-ink);
    cursor: pointer;
    font-size: .96rem;
    font-weight: 780;
    line-height: 1.45;
    list-style: none;
}

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

.help-faq-item summary::before,
.help-faq-item summary::after {
    position: absolute;
    right: 6px;
    width: 14px;
    height: 1.5px;
    background: #665e55;
    content: '';
    transition: transform .16s ease;
}

.help-faq-item summary::after {
    transform: rotate(90deg);
}

.help-faq-item[open] summary::after {
    transform: rotate(0deg);
}

.help-faq-item__content {
    max-width: 800px;
    padding: 0 42px 22px 0;
    color: var(--help-muted);
    font-size: .93rem;
    line-height: 1.72;
}

.help-faq-item__content p:last-child,
.help-faq-item__content ul:last-child,
.help-faq-item__content ol:last-child {
    margin-bottom: 0;
}

.help-faq-item__content a {
    color: #5f3b2b;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.help-faq-item__content ol,
.help-faq-item__content ul {
    padding-left: 21px;
}

.help-payment-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0 4px;
    padding: 0 !important;
    list-style: none;
}

.help-payment-list li {
    padding: 12px;
    border: 1px solid var(--help-line);
    border-radius: 11px;
    background: var(--help-surface);
}

.help-payment-list strong {
    display: block;
    color: var(--help-ink);
    font-size: .78rem;
}

.help-payment-logo {
    display: block;
    width: 190px;
    max-width: 100%;
    margin-top: 14px;
}

.help-no-results {
    display: none;
    margin: 14px 0 0;
    padding: 18px 20px;
    border: 1px dashed var(--help-line-strong);
    border-radius: 13px;
    color: var(--help-muted);
    text-align: center;
}

.help-no-results.is-visible {
    display: block;
}

.help-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: clamp(52px, 7vw, 86px);
    padding: clamp(24px, 4vw, 38px);
    border-radius: 22px;
    background: #1e1b18;
    color: #fff;
}

.help-contact strong {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(1.25rem, 2.3vw, 1.75rem);
    letter-spacing: -.025em;
}

.help-contact p {
    margin: 0;
    color: rgba(255,255,255,.68);
    line-height: 1.6;
}

.help-contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: flex-end;
}

.help-contact__actions a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 11px;
    color: #fff;
    font-size: .85rem;
    font-weight: 760;
    text-decoration: none;
}

.help-contact__actions a:first-child {
    border-color: #fff;
    background: #fff;
    color: #1e1b18;
}

.help-contact__actions a:hover,
.help-contact__actions a:focus {
    text-decoration: none;
    opacity: .88;
}

.help-faq-item[hidden],
.help-faq-group[hidden] {
    display: none !important;
}

@media (max-width: 991px) {
    .help-hero__grid {
        grid-template-columns: 1fr;
    }

    .help-hero__aside {
        padding-bottom: 0;
    }

    .help-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .help-faq-layout {
        grid-template-columns: 1fr;
    }

    .help-category-nav {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        margin-bottom: 6px;
        padding-bottom: 4px;
    }

    .help-category-nav span {
        display: none;
    }

    .help-category-nav a {
        flex: 0 0 auto;
        border: 1px solid var(--help-line);
        background: #fff;
    }
}

@media (max-width: 767px) {
    .help-hero {
        padding-top: 42px;
    }

    .help-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.6rem);
    }

    .help-main {
        padding-top: 32px;
    }

    .help-quick-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .help-quick-card {
        min-height: 132px;
        padding: 16px;
    }

    .help-search-panel {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .help-search {
        width: 100%;
    }

    .help-faq-item summary {
        min-height: 62px;
        padding-right: 42px;
        font-size: .92rem;
    }

    .help-faq-item__content {
        padding-right: 10px;
    }

    .help-payment-list {
        grid-template-columns: 1fr;
    }

    .help-contact {
        grid-template-columns: 1fr;
    }

    .help-contact__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 420px) {
    .help-quick-grid {
        grid-template-columns: 1fr;
    }
}
