/* =========================================================
   Hamida Traders — Buyer Help
   Shared Buyer Help visual system
   Scoped to .buyer-help-page
   ========================================================= */

.buyer-help-page {
    --bh-navy: #061a2d;
    --bh-navy-2: #0a2946;
    --bh-blue: #1769d2;
    --bh-green: #168257;
    --bh-ink: #14283d;
    --bh-muted: #68798a;
    --bh-line: #dce5ed;
    --bh-page: #f3f7fa;
    --bh-max: 1180px;

    background: var(--bh-page);
    color: var(--bh-ink);
    line-height: 1.55;
}

.buyer-help-wrap {
    width: min(var(--bh-max), calc(100% - 30px));
    margin: 0 auto;
}

.buyer-help-kicker {
    display: inline-block;
    color: var(--bh-green);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
}

/* Hero */

.buyer-help-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #041522, #082a47 60%, #07364b);
    color: #fff;
}

.buyer-help-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -170px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(255, 255, 255, .025),
        0 0 0 140px rgba(255, 255, 255, .012);
}

.buyer-help-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 535px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 58px;
    align-items: center;
    padding: 74px 0;
}

.buyer-help-hero__content h1 {
    margin: 0;
    font-size: clamp(40px, 4.8vw, 61px);
    line-height: 1.01;
    letter-spacing: -.045em;
    font-weight: 800;
}

.buyer-help-hero__content h1 span {
    display: block;
    background: linear-gradient(90deg, #8bbcff, #d5e6ff 70%, #9be0c3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.buyer-help-hero__content p {
    max-width: 660px;
    margin: 18px 0 0;
    color: #b3c5d5;
    font-size: 14px;
    line-height: 1.8;
}

.buyer-help-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 26px;
}

.buyer-help-btn {
    min-height: 47px;
    padding: 0 17px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.buyer-help-btn:hover {
    transform: translateY(-2px);
}

.buyer-help-btn--primary {
    background: #fff;
    color: var(--bh-navy);
}

.buyer-help-btn--ghost {
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .045);
    color: #fff;
}

/* Journey */

.buyer-help-journey {
    justify-self: end;
    width: min(430px, 100%);
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
    background: rgba(255, 255, 255, .045);
}

.buyer-help-journey > small {
    color: #70d5aa;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .13em;
}

.buyer-help-journey h3 {
    margin: 7px 0 16px;
    font-size: 18px;
}

.buyer-help-mini-steps {
    display: grid;
    gap: 8px;
}

.buyer-help-mini-step {
    display: grid;
    grid-template-columns: 29px 1fr;
    gap: 10px;
    align-items: center;
    padding: 9px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
}

.buyer-help-mini-step i {
    width: 29px;
    height: 29px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(23, 105, 210, .16);
    color: #9bc2f4;
    font-style: normal;
    font-size: 9px;
    font-weight: 900;
}

.buyer-help-mini-step strong {
    display: block;
    font-size: 10.5px;
}

.buyer-help-mini-step span {
    display: block;
    margin-top: 1px;
    color: #9fb5c8;
    font-size: 8.8px;
}

/* Sections */

.buyer-help-section {
    padding: 86px 16px;
}

.buyer-help-section h2 {
    margin: 9px 0 0;
    color: var(--bh-navy);
    font-size: clamp(32px, 4vw, 49px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.buyer-help-lead {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--bh-muted);
    font-size: 12.5px;
    line-height: 1.75;
}

/* Workflow steps */

.buyer-help-steps {
    display: grid;
    gap: 13px;
    margin-top: 38px;
}

.buyer-help-step {
    display: grid;
    grid-template-columns: 62px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 21px;
    border: 1px solid var(--bh-line);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(6, 26, 45, .045);
    transition: transform .2s ease, box-shadow .2s ease;
}

.buyer-help-step:hover {
    transform: translateX(4px);
    box-shadow: 0 18px 40px rgba(6, 26, 45, .08);
}

.buyer-help-num {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--bh-navy);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.buyer-help-step small {
    color: var(--bh-green);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
}

.buyer-help-step h3 {
    margin: 4px 0;
    color: var(--bh-navy);
    font-size: 16px;
}

.buyer-help-step p {
    margin: 0;
    color: var(--bh-muted);
    font-size: 11.5px;
}

.buyer-help-tag {
    padding: 6px 9px;
    border-radius: 999px;
    background: #edf4ff;
    color: var(--bh-blue);
    font-size: 8px;
    font-weight: 900;
    white-space: nowrap;
}

/* Information sections */

.buyer-help-important {
    background: #fff;
}

.buyer-help-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.buyer-help-info {
    padding: 23px;
    border: 1px solid var(--bh-line);
    border-radius: 17px;
    background: #f8fbfd;
}

.buyer-help-info i {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    margin-bottom: 19px;
    background: #e9f6f0;
    color: var(--bh-green);
    font-style: normal;
    font-size: 10px;
    font-weight: 900;
}

.buyer-help-info h3 {
    margin: 0 0 7px;
    font-size: 15px;
}

.buyer-help-info p {
    margin: 0;
    color: var(--bh-muted);
    font-size: 11.5px;
    line-height: 1.65;
}

/* Dark special sections */

.buyer-help-special {
    background: linear-gradient(145deg, var(--bh-navy), #0b3657);
    color: #fff;
}

.buyer-help-special__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 45px;
    align-items: center;
}

.buyer-help-special h2 {
    color: #fff;
}

.buyer-help-special .buyer-help-lead {
    color: #a9bdcf;
}

.buyer-help-special-card {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;
    background: rgba(255, 255, 255, .045);
}

.buyer-help-special-card small {
    color: #70d5aa;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .13em;
}

.buyer-help-special-card h3 {
    margin: 7px 0 10px;
    font-size: 19px;
}

.buyer-help-special-card p {
    color: #a9bdcf;
    font-size: 11.5px;
    line-height: 1.7;
}

.buyer-help-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 16px;
}

.buyer-help-path {
    padding: 12px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .04);
    color: #d9e5ee;
    font-size: 10px;
}

.buyer-help-path b {
    display: block;
    margin-bottom: 3px;
    color: #8ce0ba;
}

/* CTA */

.buyer-help-cta {
    padding: 24px 16px 88px;
}

.buyer-help-cta__box {
    width: min(var(--bh-max), 100%);
    margin: 0 auto;
    padding: 38px;
    border-radius: 24px;
    background: linear-gradient(105deg, #071d31, #0b4b82 56%, var(--bh-green));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: 0 25px 65px rgba(6, 26, 45, .16);
}

.buyer-help-cta__box h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 3vw, 39px);
}

.buyer-help-cta__box p {
    max-width: 650px;
    margin: 9px 0 0;
    color: #dceaff;
    font-size: 12px;
}

/* Responsive */

@media (max-width: 1000px) {
    .buyer-help-hero__inner,
    .buyer-help-special__grid {
        grid-template-columns: 1fr;
    }

    .buyer-help-journey {
        justify-self: start;
    }

    .buyer-help-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .buyer-help-wrap {
        width: calc(100% - 24px);
    }

    .buyer-help-hero__inner {
        min-height: 500px;
        padding: 60px 0;
    }

    .buyer-help-journey {
        display: none;
    }

    .buyer-help-section {
        padding: 62px 12px;
    }

    .buyer-help-step {
        grid-template-columns: 48px 1fr;
    }

    .buyer-help-tag {
        display: none;
    }

    .buyer-help-info-grid,
    .buyer-help-paths {
        grid-template-columns: 1fr;
    }

    .buyer-help-cta {
        padding: 15px 12px 64px;
    }

    .buyer-help-cta__box {
        padding: 27px 22px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .buyer-help-btn,
    .buyer-help-step {
        transition: none;
    }
}