:root {
    color-scheme: light;
    --ink: #303637;
    --muted: #667174;
    --line: #dce8ee;
    --paper: #fbfcfd;
    --soft: #f2f8fb;
    --teal: #25a8df;
    --teal-dark: #087fb3;
    --amber: #6d7172;
    --brand-blue: #25a8df;
    --brand-blue-dark: #0687bf;
    --brand-gray: #6b6f70;
    --white: #ffffff;
    --shadow: 0 16px 40px rgba(22, 44, 56, .09);
    --radius: 8px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-size: 15.5px;
    line-height: 1.58;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration-color: rgba(37, 168, 223, .45);
    text-underline-offset: .18em;
}

a:hover {
    text-decoration-color: currentColor;
}

:focus-visible {
    outline: 3px solid rgba(37, 168, 223, .55);
    outline-offset: 3px;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    width: auto;
    height: auto;
    clip: auto;
    top: 1rem;
    left: 1rem;
    z-index: 20;
    padding: .7rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
    max-width: 100%;
}

.narrow {
    width: min(760px, calc(100% - 40px));
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 14px 0;
}

.site-nav {
    position: relative;
    width: min(1180px, calc(100% - 24px));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(220, 232, 238, .88);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(17, 32, 29, .08);
    backdrop-filter: blur(14px);
}

@supports not (backdrop-filter: blur(14px)) {
    .site-nav {
        background: rgba(255, 255, 255, .96);
    }
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    width: clamp(136px, 16vw, 190px);
    height: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    padding: 8px 10px;
    border-radius: 6px;
    color: #465052;
    font-size: .9rem;
    text-decoration: none;
}

.nav-links a:hover {
    background: #edf7fc;
    color: #0b6f9d;
}

.nav-links .nav-login {
    background: var(--brand-blue-dark);
    color: var(--white);
}

.nav-links .nav-login:hover {
    background: #056f9e;
    color: var(--white);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 4px;
    padding-left: 8px;
    border-left: 1px solid rgba(220, 232, 238, .95);
}

.language-switcher a {
    min-width: 32px;
    padding: 7px 7px;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 800;
    text-align: center;
}

.language-switcher a[aria-current="true"] {
    background: #edf7fc;
    color: var(--brand-blue-dark);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
}

.nav-toggle span[aria-hidden="true"],
.nav-toggle span[aria-hidden="true"]::before,
.nav-toggle span[aria-hidden="true"]::after {
    display: block;
    width: 18px;
    height: 2px;
    margin: auto;
    background: var(--ink);
    content: "";
}

.nav-toggle span[aria-hidden="true"]::before {
    transform: translateY(-6px);
}

.nav-toggle span[aria-hidden="true"]::after {
    transform: translateY(4px);
}

.section {
    padding: clamp(42px, 4.8vw, 66px) 0;
}

.section[id],
.cert-strip[id] {
    scroll-margin-top: 124px;
}

.section-band {
    position: relative;
}

.hero {
    min-height: clamp(520px, 64svh, 620px);
    display: grid;
    align-items: start;
    overflow: hidden;
    padding: 146px 0 38px;
}

.hero picture,
.hero img,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero img {
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(251, 252, 253, .98) 0%, rgba(251, 252, 253, .88) 34%, rgba(251, 252, 253, .38) 70%, rgba(251, 252, 253, .18) 100%),
        linear-gradient(0deg, rgba(251, 252, 253, .72) 0%, rgba(251, 252, 253, 0) 22%);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 575px) minmax(250px, 330px);
    column-gap: clamp(54px, 8vw, 150px);
    width: min(1180px, calc(100vw - 48px));
    max-width: 100%;
    margin-inline: auto;
}

.hero-content > :not(.trust-row) {
    grid-column: 1;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--teal);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    overflow-wrap: break-word;
    hyphens: auto;
}

p {
    margin-bottom: 0;
}

p + p {
    margin-top: 12px;
}

h1 {
    max-width: 575px;
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 3.35vw, 3.05rem);
    line-height: 1.1;
    letter-spacing: 0;
    font-weight: 720;
}

h2 {
    max-width: 620px;
    margin-bottom: 10px;
    font-size: clamp(1.38rem, 2.05vw, 2.18rem);
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 700;
}

h3 {
    margin-bottom: 6px;
    font-size: 1.08rem;
    line-height: 1.3;
    font-weight: 720;
}

.hero-copy {
    max-width: 495px;
    color: #586467;
    font-size: clamp(.96rem, 1.25vw, 1.06rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.trust-row {
    grid-column: 2;
    grid-row: 2 / span 4;
    align-self: end;
    justify-self: end;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: min(310px, 100%);
    margin-top: 0;
    overflow: hidden;
    border: 1px solid rgba(37, 168, 223, .2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 10px 26px rgba(22, 44, 56, .06);
    backdrop-filter: blur(10px);
}

.trust-row span {
    display: grid;
    gap: 2px;
    min-width: 0;
    padding: 12px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(37, 168, 223, .16);
    color: #465052;
}

.trust-row span:last-child {
    border-bottom: 0;
}

.trust-row strong,
.trust-row small {
    display: block;
}

.trust-row strong {
    color: var(--ink);
    font-size: .88rem;
    line-height: 1.2;
}

.trust-row small {
    max-width: 150px;
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.25;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: .92rem;
    font-weight: 760;
    text-decoration: none;
    cursor: pointer;
}

.button-primary {
    background: var(--brand-blue-dark);
    color: var(--white);
}

.button-primary:hover {
    background: #056f9e;
}

.button-secondary {
    background: rgba(255, 255, 255, .82);
    border-color: var(--line);
    color: var(--ink);
}

.intro {
    padding-top: 34px;
    padding-bottom: 34px;
    border-top: 1px solid rgba(220, 232, 238, .7);
}

.intro-grid,
.split,
.company-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .62fr) minmax(0, 1fr);
    gap: clamp(26px, 4.5vw, 64px);
}

.intro-grid {
    align-items: center;
}

.intro-grid p,
.sticky-copy p,
.company-copy p,
.contact-grid > div > p {
    color: var(--muted);
    font-size: .96rem;
}

.intro-grid > p,
.company-copy,
.contact-grid > div > p {
    max-width: 620px;
}

.intro-grid > p {
    line-height: 1.55;
}

.cert-strip {
    padding: 24px 0;
    background: #ffffff;
    border-block: 1px solid rgba(220, 232, 238, .8);
}

.cert-grid {
    display: grid;
    grid-template-columns: minmax(0, .62fr) minmax(0, 1fr);
    gap: clamp(26px, 4.5vw, 64px);
    align-items: start;
}

.cert-grid h2 {
    margin-bottom: 0;
}

.cert-details {
    display: grid;
    gap: 14px;
}

.cert-details p {
    max-width: 660px;
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.55;
}

.cert-details dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.cert-details div {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f7fafc;
}

.cert-details dt {
    margin-bottom: 4px;
    color: var(--brand-blue-dark);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cert-details dd {
    margin: 0;
    color: var(--ink);
    font-size: .88rem;
    font-weight: 680;
}

.section-heading {
    margin-bottom: 20px;
}

.process-heading {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
    gap: clamp(26px, 4.5vw, 64px);
    align-items: start;
}

.process-heading > p {
    max-width: 620px;
    padding-top: 28px;
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.55;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.process-card {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 26px rgba(22, 44, 56, .035);
}

.process-card p {
    color: var(--muted);
    font-size: .9rem;
}

.service-grid {
    counter-reset: services;
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 12px;
}

.service-card {
    counter-increment: services;
    display: flex;
    flex-direction: column;
    min-height: 302px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 26px rgba(22, 44, 56, .04);
}

.service-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    margin-bottom: 13px;
    overflow: hidden;
    border-radius: 6px;
    background: #eef7fb;
}

.service-card-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(251, 252, 253, 0) 58%, rgba(251, 252, 253, .62) 100%);
    pointer-events: none;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card p,
.process-card p,
.industry-grid p,
.scenario-card p,
.faq-item p {
    overflow-wrap: anywhere;
}

.card-index::before {
    content: counter(services, decimal-leading-zero);
    display: inline-block;
    margin-bottom: 14px;
    color: var(--brand-blue);
    font-size: .82rem;
    font-weight: 850;
}

.service-card .summary {
    color: var(--brand-blue-dark);
    font-weight: 760;
    margin-bottom: 10px;
}

.service-card-note {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(220, 232, 238, .78);
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.42;
}

.service-card-note span {
    color: var(--ink);
    font-weight: 760;
}


.service-card p:last-child,
.industry-grid p,
.faq-item p,
.scenario-card small,
.privacy-note,
address {
    color: var(--muted);
}

.text-link {
    margin-top: 12px;
    padding-top: 0;
    color: var(--brand-blue-dark);
    font-size: .9rem;
    font-weight: 760;
    text-decoration-thickness: 1px;
}

.section-muted {
    background: linear-gradient(180deg, #f5fafc, #edf6fa);
}

.sticky-copy {
    align-self: start;
    position: sticky;
    top: 92px;
}

.expertise-list {
    display: grid;
    gap: 7px;
}

.expertise-item {
    display: grid;
    grid-template-columns: 12px 1fr;
    gap: 12px;
    align-items: start;
    padding: 11px 14px;
    background: var(--white);
    border: 1px solid rgba(220, 232, 238, .95);
    border-radius: var(--radius);
}

.expertise-item span {
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--brand-blue);
}

.expertise-item p {
    margin-bottom: 0;
    font-size: .92rem;
    font-weight: 680;
}


.expertise-mobile-groups {
    display: none;
}
.industry-showcase {
    display: grid;
    grid-template-columns: minmax(360px, .62fr) minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
}

.industry-image {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #eef7fb;
    box-shadow: 0 10px 28px rgba(22, 44, 56, .045);
}

.industry-image::after {
    background:
        linear-gradient(90deg, rgba(251, 252, 253, .08), rgba(251, 252, 253, .36)),
        linear-gradient(180deg, rgba(37, 168, 223, .02), rgba(37, 168, 223, .14));
}
.industry-grid,
.scenario-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.industry-showcase .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scenario-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
    padding: 16px;
    border: 1px solid rgba(220, 232, 238, .95);
    border-radius: var(--radius);
    background: var(--white);
}

.industry-grid article {
    min-height: 172px;
    padding: 16px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--brand-blue);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff, #f8fbfd);
    box-shadow: 0 8px 26px rgba(22, 44, 56, .035);
}

.industry-grid h3 {
    max-width: 220px;
}

.industry-grid p {
    font-size: .92rem;
}

.section-dark {
    background: #343839;
    color: var(--white);
}

.section-dark .eyebrow {
    color: #8ed8f3;
}

.section-dark p {
    color: rgba(255, 255, 255, .76);
}

.scenario-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
}

.scenario-grid {
    counter-reset: scenarios;
}

.scenario-card {
    counter-increment: scenarios;
    display: flex;
    flex-direction: column;
    min-height: 238px;
    padding: 16px;
    border: 1px solid rgba(220, 232, 238, .96);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 10px 28px rgba(22, 44, 56, .045);
}

.scenario-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
    border: 1px solid rgba(37, 168, 223, .28);
    border-radius: 50%;
    background: #eef9fd;
    color: var(--brand-blue-dark);
    font-size: .76rem;
    font-weight: 850;
}

.scenario-marker::before {
    content: counter(scenarios, decimal-leading-zero);
}

.scenario-card h3 {
    max-width: 230px;
}

.scenario-card p {
    color: var(--muted);
    font-size: .92rem;
}

.scenario-card small {
    display: block;
    margin-top: auto;
    padding-top: 14px;
    color: var(--brand-blue-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}


.contact-stack {
    display: grid;
    gap: 18px;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, .74fr) minmax(340px, .56fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: stretch;
    padding: clamp(18px, 3vw, 28px);
    border: 1px solid rgba(220, 232, 238, .95);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #f7fbfd 0%, #ffffff 54%, #eef8fc 100%);
    box-shadow: 0 18px 44px rgba(22, 44, 56, .07);
}

.contact-intro {
    display: grid;
    align-content: center;
    max-width: 760px;
}

.contact-intro h2 {
    max-width: 610px;
    font-size: clamp(1.56rem, 2.4vw, 2.42rem);
}

.contact-intro p {
    max-width: 620px;
    color: var(--muted);
    font-size: 1rem;
}

.contact-points {
    display: grid;
    gap: 9px;
    margin-top: 20px;
}

.contact-points p {
    position: relative;
    max-width: 620px;
    padding: 10px 12px 10px 38px;
    border: 1px solid rgba(37, 168, 223, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .72);
    color: var(--ink);
    font-size: .9rem;
    font-weight: 720;
    line-height: 1.34;
}

.contact-points p::before {
    position: absolute;
    left: 13px;
    top: 50%;
    width: 12px;
    height: 12px;
    content: "";
    transform: translateY(-50%);
    border: 3px solid rgba(37, 168, 223, .22);
    border-top-color: var(--brand-blue);
    border-right-color: var(--brand-gray);
    border-radius: 50%;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.contact-email-card {
    display: grid;
    align-content: start;
    gap: 7px;
    padding: 13px;
    border: 1px solid rgba(220, 232, 238, .95);
    border-radius: var(--radius);
    background: #f7fafc;
    font-size: .9rem;
}

.contact-email-card span {
    color: var(--brand-blue-dark);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-email-card a {
    overflow-wrap: anywhere;
    color: var(--ink);
    font-weight: 760;
}

.contact-section {
    background: var(--white);
}

address {
    margin-top: 18px;
    font-style: normal;
}

.office-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.office-card {
    margin-top: 0;
    padding: 13px;
    border: 1px solid rgba(220, 232, 238, .95);
    border-radius: var(--radius);
    background: #f7fafc;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.5;
}

.office-card strong,
.office-card span {
    display: block;
}

.office-card strong {
    color: var(--ink);
    font-size: .92rem;
    line-height: 1.25;
}

.office-card span {
    margin: 3px 0 8px;
    color: var(--brand-blue-dark);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-email {
    margin-top: 14px;
    font-weight: 760;
}

.contact-form {
    display: grid;
    gap: 11px;
    align-content: start;
    padding: 18px;
    background: #f7fafc;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 2px;
    font-size: 1.18rem;
}

.contact-form label {
    display: grid;
    gap: 5px;
    font-size: .9rem;
    font-weight: 760;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 9px 11px;
    border: 1px solid #cad9e0;
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
}

.contact-form textarea {
    min-height: 88px;
    resize: vertical;
}

.contact-form label span {
    color: #9b2d20;
    font-size: .9rem;
    font-weight: 700;
}

.hidden-field {
    position: absolute;
    left: -10000px;
}

.form-notice {
    margin: 0;
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 760;
}

.form-notice.success {
    background: #e7f4ed;
    color: #145132;
}

.form-notice.error {
    background: #fff0ed;
    color: #842719;
}

.privacy-note {
    margin-bottom: 0;
    font-size: .86rem;
}

.legal-page {
    padding-top: 128px;
    padding-bottom: 58px;
    min-height: 70svh;
    background: #ffffff;
}

.legal-content {
    display: grid;
    gap: 18px;
    max-width: 820px;
}

.legal-content > .eyebrow {
    margin-bottom: -10px;
    color: var(--brand-gray);
    font-size: .68rem;
    letter-spacing: .12em;
}

.legal-content h1 {
    max-width: none;
    margin-bottom: 2px;
    font-size: clamp(1.6rem, 2.2vw, 2.05rem);
    line-height: 1.18;
    font-weight: 700;
}

.legal-content section {
    padding-top: 15px;
    border-top: 1px solid rgba(220, 232, 238, .82);
}

.legal-content h2 {
    max-width: none;
    margin-bottom: 7px;
    color: #303637;
    font-size: clamp(.98rem, 1.1vw, 1.12rem);
    line-height: 1.35;
    font-weight: 720;
}

.legal-content p,
.legal-content address,
.legal-list dd {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.66;
}

.legal-content address {
    margin-top: 0;
}

.legal-lead {
    max-width: 720px;
    color: #4f5b5e;
    font-size: .96rem;
    line-height: 1.62;
}

.legal-list {
    display: grid;
    gap: 0;
    margin: 0;
}

.legal-list div {
    display: grid;
    grid-template-columns: minmax(160px, .34fr) 1fr;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(220, 232, 238, .58);
}

.legal-list dt {
    color: var(--ink);
    font-size: .86rem;
    font-weight: 700;
}

.legal-list dd {
    margin: 0;
}

.legal-note {
    margin-top: 4px;
    padding: 10px 0 0;
    border-top: 1px solid rgba(220, 232, 238, .82);
    color: #6d7172;
    font-size: .84rem;
    line-height: 1.55;
}

.service-hero {
    position: relative;
    min-height: clamp(500px, 60svh, 600px);
    display: grid;
    align-items: center;
    overflow: hidden;
    padding-top: 136px;
    padding-bottom: 44px;
    background: #f5fafc;
}

.service-hero-media,
.service-hero-media img,
.service-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.service-hero-media img {
    object-fit: cover;
    object-position: center;
}

.service-hero-overlay {
    background:
        linear-gradient(90deg, rgba(251, 252, 253, .98) 0%, rgba(251, 252, 253, .9) 38%, rgba(251, 252, 253, .55) 66%, rgba(251, 252, 253, .22) 100%),
        linear-gradient(0deg, rgba(251, 252, 253, .82) 0%, rgba(251, 252, 253, 0) 30%),
        radial-gradient(circle at 78% 24%, rgba(37, 168, 223, .18), transparent 30%);
}

.service-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .48fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: end;
}

.keyword-panel {
    padding: 18px;
    border: 1px solid rgba(220, 232, 238, .86);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 12px 30px rgba(22, 44, 56, .07);
    backdrop-filter: blur(12px);
}

.keyword-panel h2 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.keyword-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.keyword-list span {
    padding: 6px 9px;
    border-radius: 999px;
    background: #edf7fc;
    color: #0b6f9d;
    font-size: .82rem;
    font-weight: 720;
}
.service-visual-panel {
    display: grid;
    align-self: end;
    gap: 12px;
}

.industry-image::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.compact-list {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.compact-list p {
    padding: 11px 13px;
    border-left: 3px solid var(--brand-gray);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: #f7fafc;
    color: var(--muted);
    font-size: .92rem;
}

.compact-list.is-positive p {
    border-left-color: var(--brand-blue);
    background: #edf7fc;
    color: #38545e;
}

.login-gateway {
    min-height: 58svh;
}

.workspace-form {
    align-self: stretch;
    justify-content: center;
}

.workspace-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.workspace-card {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 26px rgba(22, 44, 56, .04);
}

.workspace-card p {
    color: var(--muted);
}

.workspace-card .button {
    width: fit-content;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 26px max(24px, calc((100vw - 1180px) / 2));
    background: #303637;
    color: var(--white);
}

.site-footer p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .64);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}


.visual-flow {
    padding: 10px 0 42px;
    background: linear-gradient(180deg, #fbfcfd 0%, #f5fafc 100%);
}

.flow-panel {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: stretch;
    padding: 16px;
    border: 1px solid rgba(220, 232, 238, .92);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 14px 34px rgba(22, 44, 56, .055);
}

.process-map {
    position: relative;
    min-height: 304px;
    overflow: hidden;
    border: 1px solid rgba(37, 168, 223, .18);
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, rgba(37, 168, 223, .055) 1px, transparent 1px),
        linear-gradient(0deg, rgba(37, 168, 223, .055) 1px, transparent 1px),
        linear-gradient(135deg, #ffffff 0%, #eef8fc 100%);
    background-size: 34px 34px, 34px 34px, auto;
}

.process-map::before,
.process-map::after {
    position: absolute;
    inset: 46px;
    content: "";
    border: 1px solid rgba(37, 168, 223, .18);
    border-radius: 50%;
}

.process-map::after {
    inset: 84px;
    border-style: dashed;
    border-color: rgba(107, 111, 112, .22);
}

.map-core {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 112px;
    height: 112px;
    transform: translate(-50%, -50%);
    border: 10px solid rgba(37, 168, 223, .28);
    border-top-color: var(--brand-blue);
    border-right-color: var(--brand-gray);
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 32px rgba(22, 44, 56, .08);
}

.map-core strong {
    color: var(--ink);
    font-size: 1.12rem;
    line-height: 1;
}

.map-core span {
    color: var(--brand-blue-dark);
    font-size: .72rem;
    font-weight: 800;
    line-height: 1;
}

.map-node {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 3px;
    width: min(150px, 42%);
    padding: 10px 11px;
    border: 1px solid rgba(220, 232, 238, .96);
    border-left: 3px solid var(--brand-blue);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 24px rgba(22, 44, 56, .06);
    text-decoration: none;
}

.map-node:nth-of-type(1) {
    left: 18px;
    top: 22px;
}

.map-node:nth-of-type(2) {
    right: 18px;
    top: 22px;
}

.map-node:nth-of-type(3) {
    left: 18px;
    bottom: 22px;
}

.map-node:nth-of-type(4) {
    right: 18px;
    bottom: 22px;
}

.map-node strong {
    color: var(--ink);
    font-size: .88rem;
    line-height: 1.18;
}

.map-node small {
    color: var(--muted);
    font-size: .68rem;
    line-height: 1.25;
}

.flow-content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-content: center;
    padding: clamp(10px, 1.7vw, 18px) 0;
}

.flow-content > .eyebrow,
.flow-content > h2 {
    grid-column: 1 / -1;
}

.flow-content > h2 {
    max-width: 640px;
    margin-bottom: 4px;
}

.flow-line {
    display: none;
    position: absolute;
    left: clamp(18px, 3vw, 34px);
    right: clamp(18px, 3vw, 34px);
    top: calc(50% + 24px);
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(37, 168, 223, .18);
}

.flow-line::after {
    position: absolute;
    inset: 0;
    width: 42%;
    content: "";
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, rgba(37, 168, 223, .78), transparent);
    animation: flowPulse 4.6s ease-in-out infinite;
}

.flow-step {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 7px;
    align-content: start;
    min-height: 136px;
    padding: 13px;
    border: 1px solid rgba(220, 232, 238, .94);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .93);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(22, 44, 56, .04);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.flow-step:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 168, 223, .5);
    box-shadow: 0 12px 30px rgba(22, 44, 56, .07);
}

.flow-step span {
    width: 24px;
    height: 24px;
    border: 6px solid rgba(37, 168, 223, .2);
    border-top-color: var(--brand-blue);
    border-right-color: rgba(107, 111, 112, .42);
    border-radius: 50%;
    background: #ffffff;
}

.flow-step strong {
    color: var(--ink);
    font-size: .94rem;
    line-height: 1.2;
}

.flow-step small {
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.35;
}

.process-card,
.service-card,
.industry-grid article,
.scenario-card,
.faq-item {
    position: relative;
    overflow: hidden;
}

.service-card::after,
.scenario-card::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.service-card::after {
    top: 14px;
    right: 14px;
    width: 58px;
    height: 34px;
    border-top: 2px solid rgba(37, 168, 223, .18);
    border-right: 2px solid rgba(37, 168, 223, .18);
    border-radius: 0 var(--radius) 0 0;
    opacity: .76;
}

.scenario-card::after {
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), rgba(107, 111, 112, .26));
    opacity: .62;
}

.capability-visual {
    display: grid;
    gap: 12px;
    margin-top: 20px;
    padding: 14px;
    border: 1px solid rgba(220, 232, 238, .92);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #ffffff 0%, #eef8fc 100%);
    box-shadow: 0 12px 28px rgba(22, 44, 56, .055);
}

.capability-axis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.capability-axis span,
.capability-board span,
.quality-note {
    border: 1px solid rgba(220, 232, 238, .95);
    border-radius: 6px;
    background: rgba(255, 255, 255, .88);
}

.capability-axis span {
    padding: 8px 9px;
    color: var(--brand-blue-dark);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.capability-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.capability-board span {
    padding: 12px;
    border-left: 3px solid rgba(37, 168, 223, .72);
    color: var(--ink);
    font-size: .86rem;
    font-weight: 760;
}

.quality-note {
    display: grid;
    gap: 4px;
    padding: 12px;
}

.quality-note strong {
    color: var(--ink);
    font-size: .86rem;
    line-height: 1.28;
}

.quality-note small {
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.35;
}

.proof-strip {
    padding: 18px 0;
    background: #ffffff;
    border-block: 1px solid rgba(220, 232, 238, .86);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.proof-item {
    display: grid;
    gap: 5px;
    padding: 14px;
    border: 1px solid rgba(220, 232, 238, .95);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff, #f7fbfd);
}

.proof-item strong {
    color: var(--brand-blue-dark);
    font-size: clamp(1.24rem, 2.2vw, 1.76rem);
    line-height: 1;
    font-weight: 820;
}

.proof-item span {
    color: var(--ink);
    font-size: .86rem;
    font-weight: 780;
    line-height: 1.25;
}

.proof-item p {
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.42;
}

.automation-section {
    background: linear-gradient(180deg, #f6fbfd 0%, #ffffff 100%);
}

.automation-grid,
.project-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: start;
}

.automation-copy,
.project-copy {
    display: grid;
    gap: 12px;
    align-content: start;
}

.automation-copy p,
.project-copy p {
    max-width: 650px;
    color: var(--muted);
    font-size: .96rem;
}

.automation-copy .button {
    width: fit-content;
    margin-top: 4px;
}

.automation-points,
.project-steps {
    display: grid;
    gap: 10px;
}

.automation-points p,
.project-steps article {
    position: relative;
    padding: 14px 15px 14px 18px;
    border: 1px solid rgba(220, 232, 238, .95);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 24px rgba(22, 44, 56, .035);
}

.automation-points p::before,
.project-steps article::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    content: "";
    background: var(--brand-blue);
}

.automation-points p {
    color: var(--ink);
    font-weight: 720;
}

.service-tagline {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: .95rem;
    font-weight: 760;
    line-height: 1.32;
}

.service-card-actions {
    display: grid;
    gap: 9px;
    margin-top: 12px;
}

.service-card-actions .button {
    width: 100%;
    min-height: 38px;
    padding-inline: 10px;
    font-size: .8rem;
    line-height: 1.18;
}

.service-card-actions .text-link {
    margin-top: 0;
}

.project-section {
    background: #ffffff;
}

.project-steps article {
    display: grid;
    gap: 5px;
}

.project-steps h3 {
    margin-bottom: 0;
}

.project-steps p {
    color: var(--muted);
    font-size: .92rem;
}

@keyframes flowPulse {
    0% {
        transform: translateX(-120%);
    }

    50%,
    100% {
        transform: translateX(240%);
    }
}
@media (max-width: 1080px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 12px;
    }

    .language-switcher {
        justify-content: stretch;
        margin-left: 0;
        padding: 8px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(220, 232, 238, .95);
    }

    .language-switcher a {
        flex: 1;
    }
}

@media (max-width: 900px) {
    .flow-panel {
        grid-template-columns: 1fr;
    }

    .process-map {
        min-height: 300px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        width: min(610px, calc(100vw - 48px));
        margin-inline: max(calc((100vw - 1180px) / 2), 24px) auto;
    }

    .hero-content > :not(.trust-row),
    .trust-row {
        grid-column: 1;
    }

    .trust-row {
        grid-row: auto;
        justify-self: start;
        width: min(100%, 520px);
        margin-top: 18px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .trust-row span {
        padding: 10px 12px;
        border-right: 1px solid rgba(37, 168, 223, .16);
        border-bottom: 0;
    }

    .trust-row span:last-child {
        border-right: 0;
    }

    .container {
        width: min(100% - 32px, 1060px);
    }

    .intro-grid,
    .cert-grid,
    .split,
    .company-grid,
    .contact-grid,
    .automation-grid,
    .project-grid,
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sticky-copy {
        position: static;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industry-showcase,
    .industry-grid,
    .scenario-grid,
    .proof-grid,
    .faq-grid,
    .workspace-grid,
    .process-grid,
    .outcome-grid,
    .cert-details dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industry-showcase {
        grid-template-columns: 1fr;
    }

    .industry-image {
        aspect-ratio: 16 / 8;
        min-height: 0;
    }

    .process-heading {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .process-heading > p {
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    .visual-flow {
        padding: 0 0 32px;
    }

    .flow-panel {
        padding: 10px;
    }

    .flow-content {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .process-map {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        padding: 12px;
    }

    .process-map::before,
    .process-map::after {
        display: none;
    }

    .map-core,
    .map-node {
        position: static;
        transform: none;
    }

    .map-core {
        grid-column: 1 / -1;
        width: 118px;
        height: 118px;
        min-height: 0;
        margin: 2px auto 6px;
        border-width: 9px;
    }

    .map-node {
        width: 100%;
        min-height: 92px;
        align-content: start;
        padding: 10px;
    }

    .flow-line {
        left: 27px;
        right: auto;
        top: 28px;
        bottom: 28px;
        width: 2px;
        height: auto;
    }

    .flow-step {
        min-height: auto;
        grid-template-columns: 28px 1fr;
        column-gap: 10px;
        align-items: start;
    }

    .flow-step span {
        grid-row: span 2;
    }

    .flow-step small {
        font-size: .77rem;
    }

    .capability-axis,
    .capability-board {
        grid-template-columns: 1fr;
    }

    .container,
    .narrow {
        width: min(100% - 28px, 1120px);
    }

    .site-header {
        padding: 10px 0;
    }

    .site-nav {
        width: min(100% - 20px, 1060px);
        gap: 12px;
        padding: 7px 9px;
    }

    .hero {
        min-height: clamp(520px, 78svh, 610px);
        align-items: start;
        padding-top: 92px;
        padding-bottom: 18px;
        isolation: isolate;
    }

    .hero picture {
        inset: 0 0 auto 0;
        height: 72%;
    }

    .hero img {
        object-position: 68% 44%;
        filter: saturate(1.06) contrast(1.04);
    }

    .hero-content {
        width: min(100% - 28px, 560px);
        margin-inline: auto;
        padding-top: 0;
    }

    .service-hero {
        display: block;
        min-height: 0;
        align-items: start;
        isolation: isolate;
    }

    .service-hero-media {
        inset: 0;
        height: 100%;
    }

    .service-hero-media img {
        object-position: 66% 44%;
        filter: saturate(1.06) contrast(1.04);
    }

    .service-hero-overlay {
        z-index: 0;
        background:
            linear-gradient(180deg, rgba(251, 252, 253, .2) 0%, rgba(251, 252, 253, .6) 34%, rgba(251, 252, 253, .92) 72%, #fbfcfd 100%),
            linear-gradient(90deg, rgba(251, 252, 253, .96) 0%, rgba(251, 252, 253, .78) 50%, rgba(251, 252, 253, .2) 100%);
    }

    .service-hero-grid {
        position: relative;
        z-index: 1;
        min-height: 0;
        align-content: start;
        gap: 14px;
    }

    .service-visual-panel {
        display: none;
    }

    .section {
        padding: 34px 0;
    }
    .service-hero.section,
    .service-hero.service-hero-with-image.section {
        padding-top: 124px;
        padding-bottom: 22px;
    }

    .section[id],
    .cert-strip[id] {
        scroll-margin-top: 104px;
    }

    .section-heading {
        margin-bottom: 14px;
    }

    .eyebrow {
        font-size: .66rem;
        line-height: 1.35;
    }

    h1 {
        max-width: 360px;
        font-size: clamp(1.72rem, 8.2vw, 2.16rem);
        line-height: 1.08;
    }

    h2 {
        font-size: clamp(1.22rem, 6.2vw, 1.52rem);
        line-height: 1.22;
    }

    h3 {
        font-size: 1rem;
    }

    .hero-copy,
    .intro-grid p,
    .sticky-copy p,
    .company-copy p,
    .contact-grid > div > p,
    .process-heading > p,
    .cert-details p {
        font-size: .93rem;
    }

    .hero-copy {
        max-width: 345px;
        color: #4c585b;
    }


    .capability-visual,
    .expertise-list {
        display: none;
    }

    .expertise-mobile-groups {
        display: grid;
        gap: 10px;
        margin-top: 18px;
    }

    .expertise-mobile-groups article,
    .mobile-quality-note {
        position: relative;
        display: grid;
        gap: 5px;
        padding: 14px 15px 14px 17px;
        overflow: hidden;
        border: 1px solid rgba(220, 232, 238, .96);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, .92);
        box-shadow: 0 8px 22px rgba(22, 44, 56, .035);
    }

    .expertise-mobile-groups article::before,
    .mobile-quality-note::before {
        position: absolute;
        inset: 0 auto 0 0;
        width: 3px;
        content: "";
        background: var(--brand-blue);
    }

    .expertise-mobile-groups h3,
    .mobile-quality-note strong {
        margin: 0;
        color: var(--ink);
        font-size: .98rem;
        line-height: 1.25;
        font-weight: 760;
    }

    .expertise-mobile-groups p,
    .mobile-quality-note span {
        color: var(--muted);
        font-size: .86rem;
        line-height: 1.42;
    }

    .mobile-quality-note {
        margin-top: 2px;
        background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(237, 247, 252, .96));
    }

    .contact-stack {
        gap: 14px;
    }

    .contact-panel {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .contact-intro p {
        font-size: .93rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .contact-email-card,
    .office-card {
        padding: 12px 13px;
        font-size: .86rem;
    }

    .legal-list div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .service-card,
    .process-card,
    .industry-grid article,
    .scenario-card,
    .faq-item,
    .contact-form {
        padding: 14px;
    }

    .service-card,
    .scenario-card,
    .industry-grid article {
        min-height: auto;
    }

    .service-card-media {
        max-height: 180px;
    }

    .hero-overlay {
        z-index: 0;
        background:
            linear-gradient(180deg, rgba(251, 252, 253, .1) 0%, rgba(251, 252, 253, .44) 26%, rgba(251, 252, 253, .86) 58%, #fbfcfd 92%),
            linear-gradient(90deg, rgba(251, 252, 253, .96) 0%, rgba(251, 252, 253, .76) 48%, rgba(251, 252, 253, .18) 100%);
    }

    .hero-content {
        z-index: 1;
        grid-template-columns: 1fr;
    }

    .brand-logo-img {
        width: 132px;
    }

    .trust-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        margin-top: 16px;
        background: rgba(255, 255, 255, .86);
    }

    .trust-row span {
        min-width: 0;
        padding: 9px 10px;
        border-right: 1px solid rgba(37, 168, 223, .16);
        border-bottom: 0;
    }

    .trust-row span:last-child {
        border-right: 0;
    }

    .trust-row strong {
        font-size: .78rem;
    }

    .trust-row small {
        font-size: .66rem;
        line-height: 1.18;
    }

    .hero-actions,
    .site-footer {
        flex-direction: column;
    }

    .hero-actions {
        gap: 8px;
        margin-top: 16px;
    }

    .button,
    .automation-copy .button {
        width: 100%;
    }

    .cert-strip {
        padding: 22px 0;
    }

    .service-grid,
    .industry-showcase,
    .industry-grid,
    .scenario-grid,
    .proof-grid,
    .faq-grid,
    .office-list,
    .workspace-grid,
    .process-grid,
    .outcome-grid,
    .cert-details dl {
        grid-template-columns: 1fr;
    }

    .industry-image {
        aspect-ratio: 16 / 11;
    }
}

@media (max-width: 500px) {
    .container,
    .narrow,
    .hero-content {
        width: min(360px, calc(100% - 28px));
        margin-left: 14px;
        margin-right: auto;
    }
}

@media (max-width: 380px) {
    .container,
    .narrow {
        width: min(100% - 22px, 1120px);
    }

    .brand-logo-img {
        width: 118px;
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
    }

    .hero {
        min-height: 520px;
        padding-top: 88px;
    }

    .hero-content {
        padding-top: 0;
    }

    .service-hero.section,
    .service-hero.service-hero-with-image.section {
        padding-top: 116px;
        padding-bottom: 20px;
    }

    .trust-row span {
        min-width: 0;
        padding: 8px 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .flow-line::after,
    .flow-step {
        animation: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}


