/* ═══════════════════════════════════════
   HOME v8 — prefix zhm-
   Uses <div> not <section>
   Zero rules touching footer/header/page-main
   ═══════════════════════════════════════ */

/* ── atoms ── */

.zhm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(43, 122, 91, .18);
    background: var(--color-primary-pale);
    color: var(--color-primary);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    width: fit-content;
}

.zhm-kicker--light {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.zhm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 800;
    font-size: .93rem;
    letter-spacing: -.01em;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform .2s var(--ease-standard),
        box-shadow .2s var(--ease-standard),
        background .15s ease,
        border-color .15s ease;
}

.zhm-btn--fill {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--button-text);
    box-shadow: 0 4px 18px rgba(43, 122, 91, .2);
}

.zhm-btn--fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(43, 122, 91, .3);
}

.zhm-btn--outline {
    background: var(--bg-secondary);
    border-color: var(--border);
    color: var(--text-primary);
}

.zhm-btn--outline:hover {
    transform: translateY(-2px);
    border-color: rgba(43, 122, 91, .25);
    box-shadow: 0 4px 14px var(--shadow);
}

.zhm-btn--white {
    background: #fff;
    color: #1a5c3a;
}

.zhm-btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .15);
}

.zhm-btn--glass {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
    backdrop-filter: blur(8px);
}

.zhm-btn--glass:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
}

.zhm-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 800;
    font-size: .92rem;
    text-decoration: none;
}

/* section head — always centered */
.zhm-head {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 10px;
    margin-bottom: 36px;
    width: 100%;
}

.zhm-head .zhm-kicker {
    margin-inline: auto;
}

.zhm-head h2 {
    margin: 0;
    width: 100%;
    max-width: none;
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
    text-wrap: pretty;
    white-space: normal;
}

.zhm-head p {
    margin: 0;
    width: 100%;
    max-width: none;
    color: var(--text-secondary);
    line-height: 1.7;
    white-space: normal;
}

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */

.zhm-hero {
    position: relative;
    padding: 72px 0 56px;
    overflow: hidden;
}

.zhm-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.zhm-hero__glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(100px);
    opacity: .45;
}

.zhm-hero__glow--1 {
    width: min(500px, 78vw);
    height: min(500px, 78vw);
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(43, 122, 91, .14);
}

.zhm-hero__glow--2 {
    width: min(350px, 58vw);
    height: min(350px, 58vw);
    bottom: -60px;
    right: 10%;
    background: rgba(196, 163, 90, .08);
}

body[data-theme="2"] .zhm-hero__glow--1 { background: rgba(78, 206, 130, .07); }
body[data-theme="2"] .zhm-hero__glow--2 { background: rgba(209, 178, 104, .04); }

.zhm-hero__center {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
    max-width: 720px;
    margin: 0 auto;
}

.zhm-hero__h1 {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.05em;
    text-wrap: balance;
}

.zhm-hero__desc {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.06rem;
    line-height: 1.72;
    max-width: 54ch;
}

.zhm-hero__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.zhm-hero__stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
    margin: 36px auto 0;
}

.zhm-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--bg-secondary);
    box-shadow: 0 6px 20px var(--shadow);
    text-align: center;
    min-width: 0;
}

.zhm-hero__stat strong {
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    max-width: 100%;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: nowrap;
    font-variant-numeric: tabular-nums;
}

.zhm-hero__stat:nth-child(2) strong {
    font-size: clamp(.92rem, 1.35vw, 1.35rem);
}

.zhm-hero__stat span {
    color: var(--text-muted);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* ═══════════════════════════════
   HOW
   ═══════════════════════════════ */

.zhm-how {
    padding: 48px 0;
}

.zhm-how__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.zhm-step {
    position: relative;
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--bg-secondary);
    align-content: start;
    min-height: 100%;
    transition:
        transform .2s var(--ease-standard),
        box-shadow .2s var(--ease-standard);
}

.zhm-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px var(--shadow);
    z-index: 2;
    border-radius: 18px;
    border: 1px solid rgba(43, 122, 91, .2);
}

.zhm-step__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    width: 100%;
}

.zhm-step__top .zhm-step__icon,
.zhm-step__top .zhm-step__num {
    margin-inline: auto;
}

.zhm-step .zhm-kicker {
    align-self: center;
}

.zhm-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-primary-pale);
    color: var(--color-primary);
    flex-shrink: 0;
}

.zhm-step__num {
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.05em;
    color: var(--text-primary);
    opacity: .12;
}

.zhm-step h3 {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: .96rem;
    font-weight: 800;
    letter-spacing: -.02em;
    width: 100%;
    max-width: none;
    text-wrap: balance;
    text-align: center;
}

.zhm-step p {
    margin: 0;
    color: var(--text-secondary);
    font-size: .84rem;
    line-height: 1.58;
    width: 100%;
    max-width: none;
    text-align: center;
}


/* ═══════════════════════════════
   PROJECTS
   ═══════════════════════════════ */

.zhm-projects {
    position: relative;
    padding: 52px 0;
    background: transparent;
}

.zhm-projects::before {
    content: none;
}

.zhm-projects .zhm-head h2,
.zhm-projects .zhm-head p {
    max-width: none;
}

.zhm-projects .container {
    position: relative;
    z-index: 1;
}

.zhm-projects__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.zhm-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(43, 122, 91, .10);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, .16)),
        var(--bg-secondary);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 34px rgba(15, 26, 22, .08);
    transition:
        transform .22s var(--ease-standard),
        box-shadow .22s var(--ease-standard),
        border-color .18s ease;
    height: auto;
    min-height: 100%;
}

body[data-theme="2"] .zhm-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .04), transparent),
        var(--bg-secondary);
}

.zhm-card:hover {
    transform: translateY(-5px);
    border-color: rgba(43, 122, 91, .18);
    box-shadow: 0 18px 46px rgba(15, 26, 22, .12);
}

.zhm-card__cover {
    position: relative;
    height: 136px;
    padding: 16px;
    background: linear-gradient(145deg, var(--zhm-a, #7a9a7c), var(--zhm-b, #4a6a4c));
    overflow: hidden;
}

.zhm-card__cover .project-cover-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.04);
}

.zhm-card__cover:has(.project-cover-image)::before {
    inset: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(10, 16, 18, 0.24), rgba(10, 16, 18, 0.1) 44%, rgba(10, 16, 18, 0.22));
    filter: none;
}

.zhm-card__cover::before,
.zhm-card__cover::after {
    content: "";
    position: absolute;
    z-index: 1;
    border-radius: 999px;
    pointer-events: none;
}

.zhm-card__cover::before {
    inset: auto -24px -32px auto;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, .10);
    filter: blur(2px);
}

.zhm-card__cover::after {
    inset: 16px auto auto 16px;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, .10);
}

.zhm-card__badge {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
}

.zhm-card__badge.project-status--urgent {
    background: rgba(138, 61, 47, .28);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff0ea;
}

.zhm-card__badge.project-status--verified {
    background: rgba(29, 91, 67, .28);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #ecfff5;
}

.zhm-card__badge.project-status--active,
.zhm-card__badge.project-status--open {
    background: rgba(38, 85, 150, .28);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #eef5ff;
}

.zhm-card__badge.project-status--voting,
.zhm-card__badge.project-status--scheduled {
    background: rgba(126, 93, 28, .3);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff7e3;
}

.zhm-card__badge.project-status--closed {
    background: rgba(118, 84, 26, .32);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff0c4;
}

.zhm-card__badge.project-status--completed {
    background: rgba(38, 104, 113, .3);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #dcffff;
}

.zhm-card__badge.project-status--archived {
    background: rgba(73, 86, 107, .28);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #f2f6fb;
}

.zhm-card__body {
    display: grid;
    gap: 8px;
    padding: 16px;
    flex: 1;
    min-width: 0;
}

.zhm-card__cat {
    color: var(--color-primary);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.zhm-card__body h3 {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: .98rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -.03em;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.zhm-card__cat {
    color: var(--color-primary);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.zhm-card__body h3 {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: .98rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -.03em;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.zhm-card__body > p {
    margin: 0;
    color: var(--text-secondary);
    font-size: .84rem;
    line-height: 1.62;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.zhm-card__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.zhm-card__bar > span {
    font-size: .78rem;
    font-weight: 800;
    white-space: nowrap;
}

.zhm-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--text-secondary);
    font-size: .8rem;
}

.zhm-card__foot strong { color: var(--text-primary); }

.zhm-card__cta {
    color: var(--color-primary);
    font-weight: 800;
    font-size: .8rem;
}


/* ═══════════════════════════════
   ROLES
   ═══════════════════════════════ */

.zhm-roles {
    padding: 48px 0;
}

.zhm-roles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 280px));
    justify-content: center;
    gap: 18px;
}

.zhm-role {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 236px;
    padding: 20px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--bg-secondary);
    text-align: center;
    transition:
        transform .2s var(--ease-standard),
        border-color .18s ease,
        box-shadow .2s var(--ease-standard);
}

.zhm-role:hover {
    transform: translateY(-4px);
    border-color: rgba(43, 122, 91, .2);
    box-shadow: 0 12px 36px var(--shadow);
}

.zhm-role__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--color-primary-pale);
    color: var(--color-primary);
    flex-shrink: 0;
}

.zhm-role h3 {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: 1.04rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.zhm-role p {
    margin: 0;
    color: var(--text-secondary);
    font-size: .86rem;
    line-height: 1.62;
    flex: 1;
}


/* ═══════════════════════════════
   TRUST
   ═══════════════════════════════ */

.zhm-trust {
    padding: 48px 0;
}

.zhm-trust__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.zhm-trustcard {
    display: flex;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--bg-secondary);
    align-items: flex-start;
    transition:
        transform .2s var(--ease-standard),
        border-color .18s ease,
        box-shadow .2s var(--ease-standard);
}

.zhm-trustcard:hover {
    transform: translateY(-3px);
    border-color: rgba(43, 122, 91, .18);
    box-shadow: 0 8px 24px var(--shadow);
}

.zhm-trustcard__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-primary-pale);
    color: var(--color-primary);
    flex-shrink: 0;
}

.zhm-trustcard > div {
    display: grid;
    gap: 4px;
}

.zhm-trustcard h3 {
    margin: 0;
    font-size: .94rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.zhm-trustcard p {
    margin: 0;
    color: var(--text-secondary);
    font-size: .84rem;
    line-height: 1.58;
}


/* ═══════════════════════════════
   CTA
   ═══════════════════════════════ */

.zhm-cta {
    padding: 48px 0 36px;
}

.zhm-cta__box {
    position: relative;
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 16px;
    padding: 48px 52px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #134f32 0%, var(--color-primary) 46%, #2d8c5a 100%);
    box-shadow: 0 16px 46px rgba(43, 122, 91, .22);
}

.zhm-cta__box::before,
.zhm-cta__box::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(8px);
}

.zhm-cta__box::before {
    width: 220px;
    height: 220px;
    right: -70px;
    top: -90px;
    background: rgba(255, 255, 255, .12);
}

.zhm-cta__box::after {
    width: 180px;
    height: 180px;
    left: -60px;
    bottom: -100px;
    background: rgba(255, 255, 255, .08);
}

body[data-theme="2"] .zhm-cta__box {
    background: linear-gradient(135deg, #0b2418 0%, #194f33 52%, #2b7a5b 100%);
}

.zhm-cta__box > * {
    position: relative;
    z-index: 1;
}

.zhm-cta__box h2 {
    margin: 0;
    width: 100%;
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.04em;
    color: #fff;
    max-width: none;
    text-wrap: pretty;
    overflow-wrap: anywhere;
}

.zhm-cta__box p {
    margin: 0;
    width: 100%;
    color: rgba(255, 255, 255, .74);
    max-width: none;
    line-height: 1.68;
    overflow-wrap: anywhere;
}

.zhm-cta__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}


/* ═══════════════════════════════
   LEGAL
   ═══════════════════════════════ */

.zhm-legal {
    padding: 0 0 20px;
}

.zhm-legal__bar {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 30px 34px;
    border: 1px solid rgba(43, 122, 91, .14);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(43, 122, 91, .08), transparent 36%),
        radial-gradient(circle at bottom left, rgba(196, 163, 90, .08), transparent 34%),
        linear-gradient(180deg, var(--bg-secondary), var(--bg-secondary));
    box-shadow: 0 14px 36px rgba(15, 26, 22, .09);
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.zhm-legal__bar::before,
.zhm-legal__bar::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.zhm-legal__bar::before {
    inset: -40px auto auto -40px;
    width: 180px;
    height: 180px;
    background: rgba(43, 122, 91, .06);
    filter: blur(2px);
}

.zhm-legal__bar::after {
    inset: auto -50px -70px auto;
    width: 220px;
    height: 220px;
    background: rgba(196, 163, 90, .05);
    filter: blur(2px);
}

.zhm-legal__bar > * {
    position: relative;
    z-index: 1;
}

.zhm-legal__bar > div {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
}

.zhm-legal__bar .zhm-kicker {
    background: rgba(43, 122, 91, .08);
    border-color: rgba(43, 122, 91, .12);
    color: var(--color-primary);
}

.zhm-legal__bar p {
    margin: 0;
    color: var(--text-secondary);
    max-width: 58ch;
    line-height: 1.7;
    font-size: .96rem;
}

.zhm-legal__bar .ghost-button {
    margin-inline: auto;
}


/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */

@media (max-width: 1024px) {
    .zhm-hero { padding: 52px 0 44px; }
    .zhm-how,
    .zhm-projects,
    .zhm-roles,
    .zhm-trust { padding: 40px 0; }
    .zhm-cta { padding: 40px 0 32px; }
    .zhm-head { margin-bottom: 28px; }

    .zhm-how__grid { grid-template-columns: repeat(2, 1fr); }
    .zhm-step { border-radius: 18px !important; }

    .zhm-projects__grid { grid-template-columns: repeat(2, 1fr); }
    .zhm-roles__grid { grid-template-columns: 1fr; }
    .zhm-cta__box { padding: 36px 32px; }
    .zhm-cta__box p { max-width: none; }
}

@media (max-width: 768px) {
    .zhm-hero { padding: 40px 0 36px; }
    .zhm-how,
    .zhm-projects,
    .zhm-roles,
    .zhm-trust { padding: 36px 0; }
    .zhm-cta { padding: 36px 0 28px; }
    .zhm-head { margin-bottom: 24px; }

    .zhm-hero__stats { grid-template-columns: repeat(2, 1fr); max-width: 400px; }
    .zhm-hero__btns { width: 100%; }
    .zhm-hero__btns .zhm-btn { flex: 1; min-width: 0; }

    .zhm-projects__grid { grid-template-columns: 1fr; }
    .zhm-trust__grid { grid-template-columns: 1fr; }

    .zhm-legal__bar { padding: 24px 20px; }
    .zhm-legal__bar .ghost-button { width: 100%; }
    .zhm-legal__bar p { max-width: none; }

    .zhm-cta__box { padding: 28px 22px; }
    .zhm-cta__box p { max-width: none; }
    .zhm-cta__btns .zhm-btn { flex: 1; min-width: 110px; }
}

@media (max-width: 560px) {
    .zhm-hero { padding: 28px 0 28px; }
    .zhm-how,
    .zhm-projects,
    .zhm-roles,
    .zhm-trust { padding: 28px 0; }
    .zhm-cta { padding: 28px 0 22px; }
    .zhm-head { margin-bottom: 20px; }

    .zhm-hero__h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
    .zhm-hero__btns,
    .zhm-cta__btns {
        flex-direction: column;
        align-items: stretch;
    }

    .zhm-hero__btns .zhm-btn,
    .zhm-cta__btns .zhm-btn {
        width: 100%;
    }

    .zhm-hero__stats { gap: 10px; }
    .zhm-hero__stat { padding: 14px 8px; }
    .zhm-hero__stat strong { font-size: 1rem; }
    .zhm-hero__stat:nth-child(2) strong { font-size: 1rem; }

    .zhm-how__grid { grid-template-columns: 1fr; }
    .zhm-step {
        padding: 20px 16px;
        border-radius: 18px !important;
        border: 1px solid var(--border) !important;
        overflow: hidden;
    }

    .zhm-role { padding: 20px 16px; }
    .zhm-trustcard {
        padding: 18px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .zhm-trustcard > div {
        width: 100%;
        justify-items: center;
        text-align: center;
    }

    .zhm-card__cover { height: 140px; }
    .zhm-legal__bar { padding: 20px 18px; }
    .zhm-legal__bar p { max-width: none; }
    .zhm-cta { padding-bottom: 20px; }
}

@media (max-width: 420px) {
    .zhm-hero__stats {
        grid-template-columns: 1fr;
        max-width: none;
    }
}


/* ═══ REDUCED MOTION ═══ */

@media (prefers-reduced-motion: reduce) {
    .zhm-card,
    .zhm-step,
    .zhm-role,
    .zhm-trustcard,
    .zhm-bar__fill,
    .zhm-btn {
        transition: none;
    }
}
