/* INTEGRASIKU 18.3 | Host-to-Host CEISA acquisition landing page */

.h2h-breadcrumb {
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.h2h-breadcrumb__inner {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: .8rem;
}

.h2h-breadcrumb a {
    transition: color var(--fast);
}

.h2h-breadcrumb a:hover,
.h2h-breadcrumb a:focus-visible {
    color: var(--blue-600);
}

.h2h-breadcrumb [aria-current="page"] {
    color: var(--text-strong);
    font-weight: 700;
}

.h2h-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(68px, 8vw, 108px);
    background:
        radial-gradient(circle at 84% 20%, rgba(47, 128, 237, .17), transparent 29%),
        linear-gradient(180deg, var(--blue-050) 0%, #fff 76%);
}

.h2h-hero::before,
.h2h-hero::after {
    position: absolute;
    border: 1px solid rgba(23, 107, 206, .08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.h2h-hero::before {
    top: -260px;
    right: -180px;
    width: 700px;
    height: 700px;
}

.h2h-hero::after {
    right: 16%;
    bottom: -190px;
    width: 360px;
    height: 360px;
}

.h2h-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
    gap: clamp(46px, 7vw, 88px);
}

.h2h-hero h1 {
    max-width: 820px;
    font-size: clamp(2.85rem, 5.8vw, 5.05rem);
}

.h2h-hero__lead {
    max-width: 760px;
    margin-top: 26px;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.h2h-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.h2h-hero__notes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.h2h-hero__notes span {
    padding: 8px 11px;
    border: 1px solid var(--border);
    border-radius: var(--pill);
    color: var(--text-body);
    background: rgba(255, 255, 255, .72);
    font-size: .76rem;
    font-weight: 700;
}

.h2h-architecture {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(23, 107, 206, .15);
    border-radius: var(--r-xl);
    background:
        linear-gradient(rgba(23, 107, 206, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 107, 206, .045) 1px, transparent 1px),
        rgba(255, 255, 255, .88);
    background-size: 28px 28px;
    box-shadow: var(--shadow);
}

.h2h-architecture__label {
    margin-bottom: 18px;
    color: var(--blue-600);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.h2h-architecture__sources {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.h2h-architecture__sources div,
.h2h-architecture__target,
.h2h-architecture__core {
    border-radius: 16px;
}

.h2h-architecture__sources div {
    padding: 13px 12px;
    border: 1px solid var(--border);
    background: #fff;
}

.h2h-architecture small,
.h2h-architecture__sources small {
    display: block;
    margin-bottom: 4px;
    color: var(--text-muted);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.h2h-architecture__sources strong {
    color: var(--text-strong);
    font-family: var(--heading);
    font-size: .78rem;
}

.h2h-architecture__connector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    padding-inline: 15%;
}

.h2h-architecture__connector span {
    position: relative;
    display: block;
    height: 35px;
}

.h2h-architecture__connector span::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(var(--border), var(--blue-500));
    content: "";
}

.h2h-architecture__core {
    padding: 22px;
    color: #fff;
    background: linear-gradient(145deg, var(--navy-900), var(--blue-600));
    box-shadow: 0 18px 42px rgba(23, 107, 206, .22);
    text-align: center;
}

.h2h-architecture__core small {
    color: rgba(255, 255, 255, .68);
}

.h2h-architecture__core > strong {
    display: block;
    font-family: var(--heading);
    font-size: 1.05rem;
    letter-spacing: .04em;
}

.h2h-architecture__core-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 15px;
}

.h2h-architecture__core-flow span {
    padding: 7px 5px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    font-size: .63rem;
    font-weight: 700;
}

.h2h-architecture__arrow {
    padding-block: 9px;
    color: var(--blue-600);
    font-weight: 800;
    text-align: center;
}

.h2h-architecture__target {
    padding: 18px 20px;
    border: 1px solid rgba(23, 107, 206, .16);
    background: var(--blue-050);
    text-align: center;
}

.h2h-architecture__target strong {
    display: block;
    color: var(--navy-900);
    font-family: var(--heading);
    font-size: 1.05rem;
}

.h2h-architecture__target span {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: .7rem;
}

.h2h-fit-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.h2h-fit-strip__grid {
    display: grid;
    min-height: 64px;
    align-items: center;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1.15fr;
    gap: 14px;
    color: var(--text-muted);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .025em;
    text-align: center;
    text-transform: uppercase;
}

.h2h-fit-strip__grid b {
    color: var(--blue-500);
}

.h2h-section-heading {
    max-width: 820px;
    margin-bottom: 42px;
}

.h2h-section-heading--split {
    display: grid;
    max-width: none;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(42px, 8vw, 96px);
}

.h2h-section-heading--row {
    display: flex;
    max-width: none;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.h2h-section-heading--row > div {
    max-width: 780px;
}

.h2h-section-intro {
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.h2h-problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #fff;
}

.h2h-problem-grid article {
    min-height: 245px;
    padding: 25px;
}

.h2h-problem-grid article + article {
    border-left: 1px solid var(--border);
}

.h2h-problem-grid span,
.h2h-implementation span,
.h2h-why__grid span {
    color: var(--blue-600);
    font-size: .72rem;
    font-weight: 800;
}

.h2h-problem-grid h3 {
    margin-top: 60px;
    font-size: 1.08rem;
}

.h2h-problem-grid p {
    margin: 12px 0 0;
    color: var(--text-muted);
    font-size: .92rem;
}

.h2h-explainer {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(48px, 8vw, 100px);
}

.h2h-explainer__copy {
    color: var(--text-muted);
    font-size: 1.02rem;
}

.h2h-explainer__copy > p + p {
    margin-top: 20px;
}

.h2h-callout {
    display: grid;
    gap: 6px;
    margin-top: 28px;
    padding: 20px 22px;
    border-left: 3px solid var(--blue-600);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    background: #fff;
}

.h2h-callout strong {
    color: var(--text-strong);
    font-family: var(--heading);
}

.h2h-workflow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #fff;
}

.h2h-workflow article {
    position: relative;
    min-height: 320px;
    padding: 24px;
}

.h2h-workflow article + article {
    border-left: 1px solid var(--border);
}

.h2h-workflow__number {
    color: var(--text-muted);
    font-size: .7rem;
    font-weight: 800;
}

.h2h-workflow__icon {
    display: grid;
    width: 44px;
    height: 44px;
    margin-top: 54px;
    place-items: center;
    border: 1px solid rgba(23, 107, 206, .18);
    border-radius: 13px;
    color: var(--blue-600);
    background: var(--blue-050);
    font-family: var(--heading);
    font-weight: 800;
}

.h2h-workflow h3 {
    margin-top: 18px;
    font-size: 1.08rem;
}

.h2h-workflow p {
    margin: 11px 0 0;
    color: var(--text-muted);
    font-size: .89rem;
}

.h2h-engineering {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 24%, rgba(47, 128, 237, .22), transparent 26%),
        var(--navy-950);
}

.h2h-engineering::after {
    position: absolute;
    top: 12%;
    right: -160px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 50%;
    content: "";
}

.h2h-engineering__grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(52px, 8vw, 100px);
}

.h2h-engineering__content > p:not(.eyebrow) {
    max-width: 680px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .66);
}

.h2h-light-list,
.h2h-check-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.h2h-light-list li,
.h2h-check-list li {
    position: relative;
    padding-left: 26px;
}

.h2h-light-list li {
    color: rgba(255, 255, 255, .78);
}

.h2h-light-list li::before,
.h2h-check-list li::before {
    position: absolute;
    top: .72em;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue-500);
    box-shadow: 0 0 0 5px rgba(47, 128, 237, .12);
    content: "";
    transform: translateY(-50%);
}

.h2h-stack {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-xl);
    background: rgba(255, 255, 255, .045);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
}

.h2h-stack__group {
    padding: 21px 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .055);
}

.h2h-stack__group span,
.h2h-stack__group strong {
    display: block;
}

.h2h-stack__group span {
    color: rgba(255, 255, 255, .48);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.h2h-stack__group strong {
    margin-top: 5px;
    color: #fff;
    font-family: var(--heading);
    font-size: .92rem;
}

.h2h-stack__group--brand {
    border-color: rgba(47, 128, 237, .5);
    background: linear-gradient(135deg, rgba(23, 107, 206, .68), rgba(47, 128, 237, .28));
}

.h2h-stack__link {
    padding-block: 9px;
    color: #91c4ff;
    text-align: center;
}

.h2h-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.h2h-capability-grid article {
    min-height: 240px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: #fff;
    transition: transform var(--fast), box-shadow var(--fast), border-color var(--fast);
}

.h2h-capability-grid article:hover {
    border-color: rgba(23, 107, 206, .25);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.h2h-capability-grid__mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    color: var(--blue-600);
    background: var(--blue-050);
    font-size: .68rem;
    font-weight: 800;
}

.h2h-capability-grid h3 {
    margin-top: 48px;
    font-size: 1.12rem;
}

.h2h-capability-grid p {
    margin: 12px 0 0;
    color: var(--text-muted);
}

.h2h-scope-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(23, 107, 206, .16);
    border-radius: var(--r-md);
    background: var(--blue-050);
    color: var(--text-muted);
    font-size: .9rem;
}

.h2h-scope-note strong {
    flex-shrink: 0;
    color: var(--text-strong);
}

.h2h-existing__grid,
.h2h-kb__grid,
.h2h-security__grid,
.h2h-faq__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(50px, 8vw, 98px);
}

.h2h-existing__matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.h2h-existing__matrix article {
    min-height: 205px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: #fff;
}

.h2h-existing__matrix span {
    color: var(--blue-600);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .06em;
}

.h2h-existing__matrix strong {
    display: block;
    margin-top: 34px;
    color: var(--text-strong);
    font-family: var(--heading);
    font-size: 1rem;
}

.h2h-existing__matrix p {
    margin: 10px 0 0;
    color: var(--text-muted);
    font-size: .88rem;
}

.h2h-kb__grid {
    align-items: center;
}

.h2h-kb__visual {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(23, 107, 206, .16);
    border-radius: var(--r-xl);
    background:
        radial-gradient(circle at 70% 22%, rgba(47, 128, 237, .12), transparent 30%),
        var(--blue-050);
}

.h2h-kb__badge {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: var(--pill);
    color: var(--blue-600);
    background: #fff;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.h2h-kb__row {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    margin-top: 34px;
}

.h2h-kb__row div,
.h2h-kb__target {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: #fff;
}

.h2h-kb__row .is-brand {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(145deg, var(--navy-900), var(--blue-600));
    box-shadow: 0 18px 34px rgba(23, 107, 206, .18);
}

.h2h-kb__row small,
.h2h-kb__target small {
    display: block;
    margin-bottom: 4px;
    color: var(--text-muted);
    font-size: .63rem;
    font-weight: 800;
    text-transform: uppercase;
}

.h2h-kb__row .is-brand small {
    color: rgba(255, 255, 255, .62);
}

.h2h-kb__row strong,
.h2h-kb__target strong {
    font-family: var(--heading);
    font-size: .82rem;
}

.h2h-kb__down {
    padding-block: 10px;
    color: var(--blue-600);
    text-align: center;
}

.h2h-kb__target {
    width: 62%;
    margin-inline: auto;
    text-align: center;
}

.h2h-check-list li {
    color: var(--text-body);
}

.h2h-mid-cta {
    padding-block: 54px;
    background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.h2h-mid-cta__inner {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    gap: 46px;
}

.h2h-mid-cta span {
    color: #91c4ff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.h2h-mid-cta h2 {
    max-width: 820px;
    margin-top: 8px;
    color: #fff;
    font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.h2h-implementation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #fff;
}

.h2h-implementation article {
    min-height: 230px;
    padding: 26px;
}

.h2h-implementation article:not(:nth-child(3n + 1)) {
    border-left: 1px solid var(--border);
}

.h2h-implementation article:nth-child(n + 4) {
    border-top: 1px solid var(--border);
}

.h2h-implementation h3 {
    margin-top: 48px;
    font-size: 1.08rem;
}

.h2h-implementation p {
    margin: 11px 0 0;
    color: var(--text-muted);
    font-size: .9rem;
}

.h2h-security__list {
    display: grid;
    border-top: 1px solid var(--border);
}

.h2h-security__list article {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding-block: 20px;
    border-bottom: 1px solid var(--border);
}

.h2h-security__list > article > span {
    color: var(--blue-600);
    font-size: .7rem;
    font-weight: 800;
}

.h2h-security__list h3 {
    font-size: 1rem;
}

.h2h-security__list p {
    margin: 7px 0 0;
    color: var(--text-muted);
    font-size: .9rem;
}

.h2h-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.h2h-why__grid article {
    min-height: 250px;
    padding: 24px;
    border-top: 2px solid var(--blue-600);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    background: var(--blue-050);
}

.h2h-why__grid h3 {
    margin-top: 46px;
    font-size: 1.08rem;
}

.h2h-why__grid p {
    margin: 11px 0 0;
    color: var(--text-muted);
    font-size: .9rem;
}

.h2h-faq__intro {
    position: sticky;
    top: 116px;
    align-self: start;
}

.h2h-faq__items {
    border-top: 1px solid var(--border);
}

.h2h-faq details {
    border-bottom: 1px solid var(--border);
}

.h2h-faq summary {
    position: relative;
    padding: 22px 42px 22px 0;
    color: var(--text-strong);
    cursor: pointer;
    font-family: var(--heading);
    font-weight: 700;
    list-style: none;
}

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

.h2h-faq summary::after {
    position: absolute;
    top: 50%;
    right: 4px;
    color: var(--blue-600);
    content: "+";
    font-size: 1.3rem;
    font-weight: 500;
    transform: translateY(-50%);
}

.h2h-faq details[open] summary::after {
    content: "−";
}

.h2h-faq details p {
    max-width: 730px;
    margin: -4px 0 22px;
    color: var(--text-muted);
}

.h2h-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.h2h-related__grid article {
    min-height: 250px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: #fff;
}

.h2h-related__grid span {
    color: var(--blue-600);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.h2h-related__grid h3 {
    margin-top: 48px;
    font-size: 1.18rem;
}

.h2h-related__grid p {
    margin: 12px 0 0;
    color: var(--text-muted);
}

.h2h-final-cta {
    padding-block: clamp(70px, 8vw, 98px);
    background:
        radial-gradient(circle at 84% 24%, rgba(47, 128, 237, .32), transparent 27%),
        linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.h2h-final-cta__inner {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    gap: 58px;
}

.h2h-final-cta h2 {
    max-width: 820px;
    color: #fff;
    font-size: clamp(2.05rem, 4vw, 3.45rem);
}

.h2h-final-cta p:not(.eyebrow) {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .66);
}

.h2h-final-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 1100px) {
    .h2h-hero__grid,
    .h2h-engineering__grid,
    .h2h-existing__grid,
    .h2h-kb__grid,
    .h2h-security__grid,
    .h2h-faq__grid {
        grid-template-columns: 1fr;
    }

    .h2h-hero__content {
        max-width: 860px;
    }

    .h2h-architecture {
        max-width: 760px;
    }

    .h2h-faq__intro {
        position: static;
    }

    .h2h-problem-grid,
    .h2h-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .h2h-problem-grid article:nth-child(3) {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .h2h-problem-grid article:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .h2h-workflow {
        grid-template-columns: repeat(3, 1fr);
    }

    .h2h-workflow article:nth-child(4) {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .h2h-workflow article:nth-child(5) {
        border-top: 1px solid var(--border);
    }
}

@media (max-width: 900px) {
    .h2h-fit-strip__grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        padding-block: 14px;
    }

    .h2h-fit-strip__grid b {
        display: none;
    }

    .h2h-section-heading--split,
    .h2h-explainer {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .h2h-capability-grid,
    .h2h-implementation,
    .h2h-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .h2h-implementation article:not(:nth-child(3n + 1)) {
        border-left: 0;
    }

    .h2h-implementation article:nth-child(even) {
        border-left: 1px solid var(--border);
    }

    .h2h-implementation article:nth-child(n + 3) {
        border-top: 1px solid var(--border);
    }

    .h2h-mid-cta__inner,
    .h2h-final-cta__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .h2h-mid-cta__inner .button,
    .h2h-final-cta__actions {
        width: fit-content;
    }
}

@media (max-width: 700px) {
    .h2h-breadcrumb__inner {
        overflow-x: auto;
        white-space: nowrap;
    }

    .h2h-hero {
        padding-block: 54px 68px;
    }

    .h2h-hero h1 {
        font-size: clamp(2.55rem, 12vw, 3.7rem);
    }

    .h2h-hero__actions,
    .h2h-final-cta__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .h2h-hero__actions .button,
    .h2h-final-cta__actions .button,
    .h2h-mid-cta__inner .button {
        width: 100%;
    }

    .h2h-architecture {
        padding: 18px;
        border-radius: var(--r-lg);
    }

    .h2h-architecture__sources {
        grid-template-columns: 1fr;
    }

    .h2h-architecture__connector {
        display: none;
    }

    .h2h-architecture__core {
        margin-top: 10px;
    }

    .h2h-architecture__core-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .h2h-fit-strip__grid {
        grid-template-columns: 1fr;
    }

    .h2h-fit-strip__grid span {
        padding: 7px 0;
    }

    .h2h-section-heading--row {
        align-items: flex-start;
        flex-direction: column;
    }

    .h2h-problem-grid,
    .h2h-workflow,
    .h2h-capability-grid,
    .h2h-existing__matrix,
    .h2h-implementation,
    .h2h-why__grid,
    .h2h-related__grid {
        grid-template-columns: 1fr;
    }

    .h2h-problem-grid article + article,
    .h2h-workflow article + article,
    .h2h-implementation article:nth-child(even) {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .h2h-workflow article {
        min-height: auto;
    }

    .h2h-workflow__icon,
    .h2h-problem-grid h3,
    .h2h-capability-grid h3,
    .h2h-implementation h3,
    .h2h-why__grid h3,
    .h2h-related__grid h3 {
        margin-top: 32px;
    }

    .h2h-scope-note {
        flex-direction: column;
    }

    .h2h-kb__row {
        grid-template-columns: 1fr;
    }

    .h2h-kb__row > span {
        transform: rotate(90deg);
        text-align: center;
    }

    .h2h-kb__target {
        width: 100%;
    }

    .h2h-mid-cta {
        padding-block: 44px;
    }

    .h2h-security__list article {
        grid-template-columns: 36px 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .h2h-capability-grid article {
        transition: none;
    }
}
