@font-face {
    font-family: "HK Grotesk";
    src: url("../fonts/hkgrotesk-regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "HK Grotesk";
    src: url("../fonts/hkgrotesk-semibold.woff2") format("woff2");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "HK Grotesk";
    src: url("../fonts/hkgrotesk-bold.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
}

.onz-customers-page {
    --onz-customers-ink: #172d3c;
    --onz-customers-deep: #0b202c;
    --onz-customers-paper: #f2f5f2;
    --onz-customers-soft: #e5ece8;
    --onz-customers-white: #fff;
    --onz-customers-line: rgba(23, 45, 60, .17);
    --onz-customers-muted: #61717a;
    --onz-customers-accent: #f9a515;
    --onz-customers-green: #1ec999;
    color: var(--onz-customers-ink);
    background: var(--onz-customers-paper);
    font-family: "HK Grotesk", sans-serif;
}

.onz-customers-page .layout-wrapper.landing { overflow: clip; }

.onz-customers-main,
.onz-customers-main h1,
.onz-customers-main h2,
.onz-customers-main h3,
.onz-customers-main h4,
.onz-customers-main p,
.onz-customers-main a,
.onz-customers-main span,
.onz-customers-main strong,
.onz-customers-main small,
.onz-customers-main em,
.onz-customers-main li { font-family: "HK Grotesk", sans-serif; }

.onz-customers-shell {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.onz-customers-page .navbar-landing > .container,
.onz-customers-page .layout-wrapper.landing > section.bg-warning > .container,
.onz-customers-page .custom-footer > .container {
    width: min(1240px, calc(100% - 48px));
    max-width: none;
    padding-inline: 0;
}

.onz-customers-page .navbar-landing {
    min-height: 72px;
    border-bottom: 1px solid rgba(23, 45, 60, .1);
    background: rgba(246, 248, 247, .94);
    box-shadow: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.onz-customers-page .navbar-landing.is-sticky {
    background: rgba(255, 255, 255, .97) !important;
    box-shadow: 0 10px 35px rgba(13, 32, 44, .09);
}

.onz-customers-page .navbar-landing .nav-link {
    color: var(--onz-customers-ink) !important;
    font-size: 14px;
    font-weight: 600;
}

.onz-customers-page .navbar-landing .btn-success {
    padding: 11px 20px;
    color: var(--onz-customers-deep);
    border-color: var(--onz-customers-green);
    background: var(--onz-customers-green);
    font-weight: 700;
}

.onz-customers-kicker {
    margin: 0 0 20px;
    color: #b56c00;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.onz-customers-button {
    display: inline-flex;
    min-height: 56px;
    padding: 14px 24px;
    gap: 14px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.onz-customers-button:hover { transform: translateY(-2px); }
.onz-customers-button--accent { color: var(--onz-customers-deep); background: var(--onz-customers-accent); }
.onz-customers-button--accent:hover { color: var(--onz-customers-white); border-color: rgba(255, 255, 255, .6); background: transparent; }
.onz-customers-button--light { color: var(--onz-customers-deep); background: var(--onz-customers-white); }
.onz-customers-button--light:hover { color: var(--onz-customers-white); border-color: rgba(255, 255, 255, .6); background: transparent; }
.onz-customers-button i { transition: transform 180ms ease; }
.onz-customers-button:hover i { transform: translateX(3px); }

.onz-customers-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    isolation: isolate;
    color: var(--onz-customers-white);
    background: var(--onz-customers-deep);
}

.onz-customers-hero__image,
.onz-customers-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.onz-customers-hero__image {
    z-index: -2;
    object-fit: cover;
    object-position: center 48%;
    filter: saturate(.72) contrast(1.03);
    transform: scale(1.025);
}

.onz-customers-hero__shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(6, 25, 35, .97) 0%, rgba(6, 25, 35, .88) 42%, rgba(6, 25, 35, .39) 73%, rgba(6, 25, 35, .16) 100%),
        linear-gradient(0deg, rgba(6, 25, 35, .46) 0%, transparent 48%);
}

.onz-customers-hero__inner {
    display: flex;
    min-height: 650px;
    align-items: center;
    padding-block: 120px 66px;
}

.onz-customers-hero__copy { max-width: 850px; }
.onz-customers-hero .onz-customers-kicker { color: var(--onz-customers-accent); }

.onz-customers-hero__copy > * {
    opacity: 0;
    transform: translateY(25px);
    animation: onz-customers-rise 720ms cubic-bezier(.2, .7, .2, 1) forwards;
}

.onz-customers-hero__copy > :nth-child(1) { animation-delay: 100ms; }
.onz-customers-hero__copy > :nth-child(2) { animation-delay: 210ms; }
.onz-customers-hero__copy > :nth-child(3) { animation-delay: 330ms; }
.onz-customers-hero__copy > :nth-child(4) { animation-delay: 440ms; }

.onz-customers-hero h1 {
    max-width: 840px;
    margin: 0;
    color: var(--onz-customers-white);
    font-size: clamp(60px, 6.4vw, 92px);
    font-weight: 600;
    letter-spacing: -.062em;
    line-height: .91;
}

.onz-customers-hero h1 span { color: var(--onz-customers-accent); }

.onz-customers-hero__copy > p:not(.onz-customers-kicker) {
    max-width: 640px;
    margin: 30px 0 36px;
    color: rgba(255, 255, 255, .82);
    font-size: 20px;
    line-height: 1.55;
}

.onz-customers-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, .54fr);
    gap: 90px;
    align-items: end;
    padding-bottom: 62px;
    border-bottom: 1px solid var(--onz-customers-line);
}

.onz-customers-heading h2,
.onz-customers-reality h2,
.onz-customers-proof h2,
.onz-customers-impact h2,
.onz-customers-final h2 {
    margin: 0;
    color: var(--onz-customers-ink);
    font-size: clamp(46px, 5.3vw, 74px);
    font-weight: 600;
    letter-spacing: -.057em;
    line-height: .95;
}

.onz-customers-heading > p,
.onz-customers-proof__header > p:not(.onz-customers-kicker),
.onz-customers-impact__header > p:not(.onz-customers-kicker) {
    margin: 0;
    color: var(--onz-customers-muted);
    font-size: 18px;
    line-height: 1.6;
}

.onz-customers-metrics { padding-block: 108px 116px; background: var(--onz-customers-soft); }
.onz-customers-metrics .onz-customers-heading { border-bottom: 0; }

.onz-customers-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 52px;
    border-top: 1px solid var(--onz-customers-line);
    border-bottom: 1px solid var(--onz-customers-line);
}

.onz-customers-metric {
    min-width: 0;
    padding: 42px 28px 38px;
    border-right: 1px solid var(--onz-customers-line);
}

.onz-customers-metric:first-child { padding-left: 0; }
.onz-customers-metric:last-child { padding-right: 0; border-right: 0; }

.onz-customers-metric strong {
    display: block;
    color: var(--onz-customers-ink);
    font-size: clamp(45px, 4.7vw, 66px);
    font-weight: 600;
    letter-spacing: -.06em;
    line-height: .95;
    white-space: nowrap;
}

.onz-customers-metric strong span { color: var(--onz-customers-accent); }

.onz-customers-metric p {
    margin: 17px 0 0;
    color: var(--onz-customers-ink);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.onz-customers-activity { margin-top: 82px; }

.onz-customers-activity__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, .54fr);
    gap: 90px;
    align-items: end;
}

.onz-customers-activity__header h3 {
    max-width: 670px;
    margin: 0;
    color: var(--onz-customers-ink);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 600;
    letter-spacing: -.05em;
    line-height: .98;
}

.onz-customers-activity__header > p {
    margin: 0;
    color: var(--onz-customers-muted);
    font-size: 17px;
    line-height: 1.55;
}

.onz-customers-activity__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 40px;
    border-top: 1px solid var(--onz-customers-line);
    border-bottom: 1px solid var(--onz-customers-line);
}

.onz-customers-activity__item {
    min-width: 0;
    padding: 30px 26px 31px;
    border-right: 1px solid var(--onz-customers-line);
}

.onz-customers-activity__item:first-child { padding-left: 0; }
.onz-customers-activity__item:last-child { padding-right: 0; border-right: 0; }

.onz-customers-activity__item strong {
    display: block;
    color: var(--onz-customers-ink);
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: 1;
    white-space: nowrap;
}

.onz-customers-activity__item strong span { color: #a86500; }

.onz-customers-activity__item h4 {
    margin: 18px 0 3px;
    color: var(--onz-customers-ink);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.onz-customers-activity__item p {
    margin: 0;
    color: var(--onz-customers-muted);
    font-size: 14px;
    line-height: 1.4;
}

.onz-customers-reality { padding-block: 124px; background: var(--onz-customers-paper); }

.onz-customers-reality__inner {
    display: grid;
    grid-template-columns: minmax(360px, .75fr) minmax(0, 1fr);
    gap: 110px;
    align-items: center;
}

.onz-customers-reality__media { position: relative; max-width: 480px; margin: 0; }

.onz-customers-reality__media img {
    display: block;
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: center;
}

.onz-customers-reality__media figcaption {
    position: absolute;
    right: -62px;
    bottom: 34px;
    display: flex;
    max-width: 240px;
    padding: 18px 22px;
    gap: 14px;
    align-items: center;
    color: rgba(255, 255, 255, .8);
    background: var(--onz-customers-deep);
    font-size: 13px;
    line-height: 1.35;
}

.onz-customers-reality__media figcaption span { color: var(--onz-customers-accent); font-size: 28px; font-weight: 700; }
.onz-customers-reality__copy { max-width: 650px; }

.onz-customers-reality__copy > p:not(.onz-customers-kicker) {
    max-width: 610px;
    margin: 30px 0 36px;
    color: var(--onz-customers-muted);
    font-size: 19px;
    line-height: 1.62;
}

.onz-customers-reality__copy ul { margin: 0; padding: 0; border-top: 1px solid var(--onz-customers-line); list-style: none; }

.onz-customers-reality__copy li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    padding-block: 17px;
    gap: 12px;
    align-items: start;
    border-bottom: 1px solid var(--onz-customers-line);
    color: var(--onz-customers-ink);
    font-size: 17px;
    line-height: 1.4;
}

.onz-customers-reality__copy li i { color: #a86500; font-size: 20px; }

.onz-customers-uses { padding-block: 112px 124px; color: var(--onz-customers-white); background: var(--onz-customers-deep); }
.onz-customers-heading--dark { border-color: rgba(255, 255, 255, .18); }
.onz-customers-heading--dark h2 { color: var(--onz-customers-white); }
.onz-customers-heading--dark h2 span { color: var(--onz-customers-accent); }
.onz-customers-heading--dark > p { color: rgba(255, 255, 255, .65); }
.onz-customers-heading--dark .onz-customers-kicker { color: var(--onz-customers-accent); }

.onz-customers-uses__list { margin-top: 18px; }

.onz-customers-use {
    display: grid;
    grid-template-columns: 62px 190px minmax(0, 1fr) 165px;
    min-height: 180px;
    gap: 34px;
    align-items: center;
    padding-block: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    transition: padding 220ms ease, background 220ms ease;
}

.onz-customers-use:hover { padding-inline: 20px; background: rgba(255, 255, 255, .035); }
.onz-customers-use__number { color: var(--onz-customers-accent); font-size: 14px; font-weight: 700; letter-spacing: .08em; }
.onz-customers-use__media { height: 126px; overflow: hidden; }
.onz-customers-use__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2, .7, .2, 1); }
.onz-customers-use:hover .onz-customers-use__media img { transform: scale(1.045); }
.onz-customers-use__copy h3 { margin: 0 0 10px; color: var(--onz-customers-white); font-size: clamp(25px, 2.45vw, 35px); font-weight: 600; letter-spacing: -.04em; line-height: 1.05; }
.onz-customers-use__copy p { max-width: 680px; margin: 0; color: rgba(255, 255, 255, .62); font-size: 16px; line-height: 1.55; }
.onz-customers-use__status { justify-self: end; color: rgba(255, 255, 255, .5); font-size: 11px; font-weight: 700; letter-spacing: .1em; line-height: 1.35; text-align: right; text-transform: uppercase; }

.onz-customers-proof { padding-block: 116px 124px; background: var(--onz-customers-white); }
.onz-customers-proof__header { max-width: 880px; }
.onz-customers-proof__header > p:not(.onz-customers-kicker) { max-width: 660px; margin-top: 28px; }

.onz-customers-trust {
    margin-top: 66px;
}

.onz-customers-trust__group {
    border-bottom: 1px solid var(--onz-customers-line);
}

.onz-customers-trust__group:last-child { border-bottom: 0; }

.onz-customers-trust__group-header {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    min-height: 128px;
    padding-block: 27px;
    gap: 24px;
    align-items: center;
    color: var(--onz-customers-ink);
}

.onz-customers-trust__group-header > span:first-child { align-self: start; padding-top: 7px; color: #a86500; font-size: 12px; font-weight: 700; letter-spacing: .12em; }

.onz-customers-trust__summary-copy { display: grid; max-width: 750px; gap: 8px; }
.onz-customers-trust__summary-copy h3 { margin: 0; color: var(--onz-customers-ink); font-size: clamp(25px, 2.6vw, 36px); font-weight: 600; letter-spacing: -.04em; line-height: 1.05; }
.onz-customers-trust__summary-copy small { color: var(--onz-customers-muted); font-size: 15px; line-height: 1.5; }

.onz-customers-trust__group-header em {
    justify-self: end;
    color: var(--onz-customers-muted);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .09em;
    line-height: 1.35;
    text-align: right;
    text-transform: uppercase;
}

.onz-customers-trust__content {
    display: grid;
    grid-auto-columns: calc(25% + 1px);
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 150px);
    margin: 0 0 34px 58px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    border-top: 1px solid var(--onz-customers-line);
    border-left: 1px solid var(--onz-customers-line);
    scroll-snap-type: inline proximity;
    scrollbar-color: #a86500 var(--onz-customers-soft);
    scrollbar-width: thin;
}

.onz-customers-trust__content:focus-visible { outline: 2px solid #a86500; outline-offset: 4px; }
.onz-customers-trust__content::-webkit-scrollbar { height: 7px; }
.onz-customers-trust__content::-webkit-scrollbar-track { background: var(--onz-customers-soft); }
.onz-customers-trust__content::-webkit-scrollbar-thumb { background: #a86500; }

.onz-customers-trust__content--empty {
    display: block;
    overflow: visible;
    border-right: 1px solid var(--onz-customers-line);
}

.onz-customers-trust__content--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-columns: auto;
    grid-auto-flow: row;
    grid-template-rows: 170px;
    overflow: visible;
    border-right: 1px solid var(--onz-customers-line);
}

.onz-customers-trust__logo {
    display: grid;
    min-height: 150px;
    padding: 28px;
    place-items: center;
    border-right: 1px solid var(--onz-customers-line);
    border-bottom: 1px solid var(--onz-customers-line);
    background: #fff;
    scroll-snap-align: start;
}

.onz-customers-trust__logo img {
    width: auto;
    max-width: 158px;
    filter: grayscale(1);
    opacity: .72;
    transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

.onz-customers-trust__logo:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.03); }
.onz-customers-trust__logo img.onz-customers-trust__logo-image--invert { filter: grayscale(1) invert(1); }
.onz-customers-trust__logo:hover img.onz-customers-trust__logo-image--invert { filter: invert(1); }

.onz-customers-trust__empty {
    min-height: 170px;
    padding: 42px;
    background: var(--onz-customers-soft);
}

.onz-customers-trust__empty span { color: #a86500; font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.onz-customers-trust__empty p { max-width: 650px; margin: 16px 0 0; color: var(--onz-customers-ink); font-size: 20px; line-height: 1.55; }

.onz-customers-impact { padding-block: 116px 124px; background: var(--onz-customers-soft); }
.onz-customers-impact__header { max-width: 970px; }
.onz-customers-impact__header h2 span { color: #a86500; }
.onz-customers-impact__header > p:not(.onz-customers-kicker) { max-width: 690px; margin-top: 28px; }

.onz-customers-impact__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 70px;
    border-top: 1px solid var(--onz-customers-line);
}

.onz-customers-impact__item { min-height: 280px; padding: 34px 38px 20px 0; border-right: 1px solid var(--onz-customers-line); }
.onz-customers-impact__item + .onz-customers-impact__item { padding-left: 38px; }
.onz-customers-impact__item:last-child { padding-right: 0; border-right: 0; }
.onz-customers-impact__item > span { color: #a86500; font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.onz-customers-impact__item h3 { margin: 72px 0 16px; color: var(--onz-customers-ink); font-size: clamp(25px, 2.5vw, 34px); font-weight: 600; letter-spacing: -.04em; line-height: 1.05; }
.onz-customers-impact__item p { margin: 0; color: var(--onz-customers-muted); font-size: 16px; line-height: 1.58; }

.onz-customers-final { padding-block: 112px 122px; color: var(--onz-customers-white); background: var(--onz-customers-deep); }
.onz-customers-final .onz-customers-shell { max-width: 1240px; }
.onz-customers-final .onz-customers-kicker { color: var(--onz-customers-accent); }
.onz-customers-final h2 { max-width: 970px; color: var(--onz-customers-white); }
.onz-customers-final > .onz-customers-shell > p:not(.onz-customers-kicker) { max-width: 650px; margin: 28px 0 36px; color: rgba(255, 255, 255, .7); font-size: 18px; line-height: 1.6; }

.onz-customers-motion .onz-customers-reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .7, .2, 1); }
.onz-customers-motion .onz-customers-reveal.is-visible { opacity: 1; transform: none; }

@keyframes onz-customers-rise {
    to { opacity: 1; transform: none; }
}

@media (max-width: 1024px) {
    .onz-customers-heading { grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr); gap: 50px; }
    .onz-customers-activity__header { grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr); gap: 50px; }
    .onz-customers-metric { padding-inline: 20px; }
    .onz-customers-activity__item { padding-inline: 20px; }
    .onz-customers-reality__inner { grid-template-columns: minmax(320px, .7fr) minmax(0, 1fr); gap: 72px; }
    .onz-customers-reality__media figcaption { right: -34px; }
    .onz-customers-use { grid-template-columns: 50px 160px minmax(0, 1fr) 135px; gap: 24px; }
}

@media (max-width: 767.98px) {
    .onz-customers-shell,
    .onz-customers-page .navbar-landing > .container,
    .onz-customers-page .layout-wrapper.landing > section.bg-warning > .container,
    .onz-customers-page .custom-footer > .container { width: min(100% - 32px, 1240px); }

    .onz-customers-page .navbar-landing { min-height: 66px; }

    .onz-customers-hero,
    .onz-customers-hero__inner { min-height: 650px; }
    .onz-customers-hero__inner { align-items: flex-end; padding-block: 120px 58px; }
    .onz-customers-hero__image { object-position: 54% center; }
    .onz-customers-hero__shade {
        background:
            linear-gradient(0deg, rgba(6, 25, 35, .98) 0%, rgba(6, 25, 35, .85) 57%, rgba(6, 25, 35, .5) 100%),
            linear-gradient(90deg, rgba(6, 25, 35, .58), rgba(6, 25, 35, .24));
    }
    .onz-customers-hero h1 { font-size: clamp(48px, 13vw, 64px); line-height: .92; }
    .onz-customers-hero__copy > p:not(.onz-customers-kicker) { margin-block: 26px 32px; font-size: 18px; }

    .onz-customers-heading { display: block; padding-bottom: 40px; }
    .onz-customers-heading h2,
    .onz-customers-reality h2,
    .onz-customers-proof h2,
    .onz-customers-impact h2,
    .onz-customers-final h2 { font-size: clamp(41px, 12vw, 58px); }
    .onz-customers-heading > p { margin-top: 28px; }

    .onz-customers-metrics { padding-block: 84px 92px; }
    .onz-customers-metrics__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 36px; }
    .onz-customers-metric { min-height: 145px; padding: 26px 16px 24px; }
    .onz-customers-metric:first-child { padding-left: 0; }
    .onz-customers-metric:nth-child(2) { padding-right: 0; border-right: 0; }
    .onz-customers-metric:nth-child(-n+2) { border-bottom: 1px solid var(--onz-customers-line); }
    .onz-customers-metric:nth-child(3) { padding-left: 0; }
    .onz-customers-metric strong { font-size: clamp(38px, 11vw, 49px); }
    .onz-customers-metric p { margin-top: 12px; font-size: 16px; }

    .onz-customers-activity { margin-top: 64px; }
    .onz-customers-activity__header { display: block; }
    .onz-customers-activity__header h3 { font-size: clamp(34px, 10vw, 46px); }
    .onz-customers-activity__header > p { margin-top: 24px; }
    .onz-customers-activity__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 34px; }
    .onz-customers-activity__item { min-height: 144px; padding: 25px 16px 23px; }
    .onz-customers-activity__item:first-child { padding-left: 0; }
    .onz-customers-activity__item:nth-child(2) { padding-right: 0; border-right: 0; }
    .onz-customers-activity__item:nth-child(-n+2) { border-bottom: 1px solid var(--onz-customers-line); }
    .onz-customers-activity__item:nth-child(3) { padding-left: 0; }
    .onz-customers-activity__item strong { font-size: clamp(31px, 9vw, 41px); }
    .onz-customers-activity__item h4 { margin-top: 14px; font-size: 16px; }
    .onz-customers-activity__item p { font-size: 13px; }

    .onz-customers-reality { padding-block: 92px; }
    .onz-customers-reality__inner { display: flex; flex-direction: column-reverse; gap: 58px; }
    .onz-customers-reality__copy { max-width: none; }
    .onz-customers-reality__copy > p:not(.onz-customers-kicker) { font-size: 17px; }
    .onz-customers-reality__media { width: calc(100% - 30px); max-width: none; margin-right: 30px; }
    .onz-customers-reality__media img { height: min(124vw, 610px); }
    .onz-customers-reality__media figcaption { right: -30px; bottom: 24px; max-width: 215px; padding: 15px 17px; }

    .onz-customers-uses { padding-block: 88px 98px; }
    .onz-customers-use { grid-template-columns: 42px minmax(0, 1fr); gap: 0 14px; padding-block: 34px; }
    .onz-customers-use:hover { padding-inline: 0; background: transparent; }
    .onz-customers-use__number { grid-row: 1 / span 3; align-self: start; padding-top: 4px; }
    .onz-customers-use__media { grid-column: 2; height: 180px; margin-bottom: 25px; }
    .onz-customers-use__copy { grid-column: 2; }
    .onz-customers-use__copy h3 { font-size: 29px; }
    .onz-customers-use__status { grid-column: 2; justify-self: start; margin-top: 22px; text-align: left; }

    .onz-customers-proof { padding-block: 88px 98px; }
    .onz-customers-trust { margin-top: 50px; }
    .onz-customers-trust__group-header { grid-template-columns: 34px minmax(0, 1fr); min-height: 0; padding-block: 25px; gap: 14px; align-items: start; }
    .onz-customers-trust__group-header > span:first-child { padding-top: 4px; }
    .onz-customers-trust__summary-copy h3 { font-size: 26px; }
    .onz-customers-trust__summary-copy small { margin-top: 3px; font-size: 14px; }
    .onz-customers-trust__group-header em { grid-column: 2; justify-self: start; margin-top: 7px; text-align: left; }
    .onz-customers-trust__content { grid-auto-columns: calc(50% + 1px); grid-template-rows: repeat(2, 115px); margin: 0 0 28px 48px; }
    .onz-customers-trust__content--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, 115px); }
    .onz-customers-trust__logo { min-height: 115px; padding: 18px; }
    .onz-customers-trust__logo img { max-width: 108px; max-height: 58px !important; }
    .onz-customers-trust__empty { min-height: 150px; padding: 28px 24px; }
    .onz-customers-trust__empty p { font-size: 17px; }

    .onz-customers-impact { padding-block: 88px 96px; }
    .onz-customers-impact__items { display: block; margin-top: 52px; }
    .onz-customers-impact__item,
    .onz-customers-impact__item + .onz-customers-impact__item { min-height: 0; padding: 30px 0 36px; border-right: 0; border-bottom: 1px solid var(--onz-customers-line); }
    .onz-customers-impact__item:last-child { border-bottom: 0; }
    .onz-customers-impact__item h3 { margin-top: 34px; font-size: 30px; }

    .onz-customers-final { padding-block: 88px 98px; }
}

@media (prefers-reduced-motion: reduce) {
    .onz-customers-hero__copy > * { opacity: 1; transform: none; animation: none; }
    .onz-customers-motion .onz-customers-reveal { opacity: 1; transform: none; transition: none; }
    .onz-customers-button,
    .onz-customers-button i,
    .onz-customers-use,
    .onz-customers-use__media img,
    .onz-customers-trust__logo img { transition: none; }
}
