@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Manrope:wght@400;500;600;700&display=swap");

:root {
    --blue: #0879e8;
    --blue-deep: #0058b5;
    --yellow: #ffc72c;
    --ink: #141c29;
    --steel: #526173;
    --line: #dce3ea;
    --paper: #f3f6f8;
    --white: #ffffff;
    --nav-height: 68px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: var(--white);
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 2000;
    padding: .75rem 1rem;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 800;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 1rem;
}

.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    min-height: var(--nav-height);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: #111a28;
    transition: background .2s ease, box-shadow .2s ease;
}

.nav.scrolled {
    background: rgba(17, 26, 40, .97);
    box-shadow: 0 8px 24px rgba(9, 16, 27, .18);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 3rem));
    min-height: var(--nav-height);
    margin: 0 auto;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img {
    width: auto;
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    gap: 1.75rem;
}

.nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    color: #d6dce4;
    font-size: .88rem;
    font-weight: 700;
    transition: color .2s ease;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--yellow);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-call {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: 40px;
    padding: .55rem .9rem;
    border: 1px solid rgba(255, 255, 255, .24);
    color: var(--white);
    font-size: .83rem;
    font-weight: 700;
}

.nav-call svg {
    color: var(--yellow);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.nav-toggle svg {
    width: 26px;
    height: 26px;
    margin: auto;
}

.nav-toggle .icon-close,
.nav-toggle[aria-expanded="true"] .icon-menu {
    display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
    display: block;
}

.hero {
    position: relative;
    display: grid;
    min-height: min(680px, calc(100vh - 48px));
    align-items: center;
    overflow: hidden;
    padding: calc(var(--nav-height) + 2rem) 1.5rem 3rem;
    background: #151b22;
    color: var(--white);
}

.hero-van {
    position: absolute;
    top: -12.5%;
    right: 0;
    width: auto;
    max-width: none;
    height: 125%;
    object-fit: contain;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 100%);
}

.hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 15, 24, .98) 0%, rgba(9, 15, 24, .9) 27%, rgba(9, 15, 24, .48) 47%, rgba(9, 15, 24, .08) 72%),
        linear-gradient(0deg, rgba(9, 15, 24, .68), transparent 38%);
    content: "";
    pointer-events: none;
}

.page-hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 44px 44px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 88%);
    pointer-events: none;
}

.hero::after,
.page-hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 7px;
    background: linear-gradient(90deg, var(--yellow) 0 18%, var(--blue) 18% 82%, var(--yellow) 82%);
    content: "";
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 0 auto;
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1rem;
    color: var(--yellow);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 30px;
    height: 3px;
    background: currentColor;
    content: "";
}

h1,
h2,
h3,
h4 {
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: 0;
    line-height: 1.08;
}

.hero h1 {
    max-width: 590px;
    margin: 0 0 .85rem;
    font-size: clamp(3.2rem, 6vw, 5rem);
    font-weight: 800;
}

.hero h1 span {
    color: var(--yellow);
}

.hero-copy {
    max-width: 520px;
    margin: 0 0 1.5rem;
    color: #d8e0ea;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem;
}

.hero-actions {
    justify-content: flex-start;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 48px;
    padding: .75rem 1.35rem;
    border: 2px solid var(--blue);
    border-radius: 4px;
    background: var(--blue);
    color: var(--white);
    font-size: .92rem;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.btn:hover {
    border-color: var(--blue-deep);
    background: var(--blue-deep);
    transform: translateY(-2px);
}

.btn-light {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.btn-light:hover {
    border-color: var(--yellow);
    background: var(--yellow);
    color: var(--ink);
}

.btn-outline {
    border-color: rgba(255, 255, 255, .75);
    background: transparent;
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.trust-bar {
    position: relative;
    z-index: 2;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(20, 28, 41, .08);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: min(1180px, calc(100% - 3rem));
    margin: 0 auto;
}

.trust-item {
    display: flex;
    min-height: 112px;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    padding: 1.35rem;
    border-right: 1px solid var(--line);
}

.trust-item:first-child {
    border-left: 1px solid var(--line);
}

.trust-item svg {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    color: var(--blue);
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.1rem;
    line-height: 1.15;
}

.trust-item span {
    margin-top: .2rem;
    color: var(--steel);
    font-size: .76rem;
}

.page-hero {
    position: relative;
    display: flex;
    min-height: 420px;
    align-items: flex-end;
    overflow: hidden;
    padding: calc(var(--nav-height) + 5rem) 1.5rem 4.5rem;
    background: linear-gradient(118deg, #111a28 0%, #102b48 64%, #0868c5 100%);
    color: var(--white);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    margin: 0 auto;
}

.page-hero h1 {
    max-width: 820px;
    font-size: clamp(3rem, 7vw, 5.25rem);
    font-weight: 800;
}

.page-hero p {
    max-width: 650px;
    margin-top: 1rem;
    color: #d8e0ea;
    font-size: 1.08rem;
}

.section {
    padding: 5.5rem 1.5rem;
}

.section-muted {
    background: var(--paper);
}

.section-dark {
    background: var(--ink);
    color: var(--white);
}

.container {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 2.8rem;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    font-weight: 800;
}

.section-heading p {
    margin-top: .75rem;
    color: var(--steel);
    font-size: 1rem;
}

.section-dark .section-heading p {
    color: #bec8d4;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 1.25rem;
    min-height: 250px;
    padding: 1.75rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(20, 28, 41, .045);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
    border-color: #b7cde3;
    box-shadow: 0 14px 34px rgba(20, 28, 41, .09);
    transform: translateY(-3px);
}

.service-icon {
    display: grid;
    width: 58px;
    height: 58px;
    border-radius: 6px;
    background: var(--blue);
    color: var(--white);
    place-items: center;
}

.service-icon svg {
    width: 27px;
    height: 27px;
}

.service-card h2,
.service-card h3 {
    font-size: 1.65rem;
}

.service-card p {
    margin-top: .65rem;
    color: var(--steel);
    font-size: .92rem;
}

.service-card ul {
    display: grid;
    gap: .42rem;
    margin-top: 1rem;
}

.service-card li {
    position: relative;
    padding-left: 1.15rem;
    color: #344254;
    font-size: .84rem;
}

.service-card li::before {
    position: absolute;
    top: .67em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--yellow);
    content: "";
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6rem);
}

.split-copy h2 {
    font-size: clamp(2.3rem, 5vw, 3.5rem);
}

.split-copy > p {
    margin-top: 1rem;
    color: var(--steel);
}

.feature-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.75rem;
}

.feature-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: .85rem;
    align-items: start;
}

.feature-list svg {
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: 4px;
    background: #e7f2fd;
    color: var(--blue);
}

.feature-list strong,
.feature-list span {
    display: block;
}

.feature-list strong {
    font-size: .95rem;
}

.feature-list span {
    margin-top: .15rem;
    color: var(--steel);
    font-size: .84rem;
}

.brand-panel {
    position: relative;
    padding: 2rem;
    border: 1px solid #cfd8e2;
    border-radius: 8px;
    background:
        linear-gradient(rgba(255, 255, 255, .94), rgba(255, 255, 255, .94)),
        url("badger.PNG") center / 75% auto no-repeat;
}

.brand-panel::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 6px;
    background: var(--yellow);
    content: "";
}

.brand-panel h3 {
    font-size: 1.65rem;
}

.brand-panel > p {
    margin-top: .6rem;
    color: var(--steel);
    font-size: .9rem;
}

.brand-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
    margin-top: 1.4rem;
}

.brand-list li {
    padding: .72rem .85rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .9);
    font-size: .84rem;
    font-weight: 700;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    counter-reset: process;
}

.process-step {
    position: relative;
    min-height: 210px;
    padding: 1.8rem 1.4rem;
    border-top: 3px solid #344254;
    counter-increment: process;
}

.process-step::before {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 1.2rem;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    content: counter(process, decimal-leading-zero);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    place-items: center;
}

.process-step:not(:last-child)::after {
    position: absolute;
    top: 39px;
    right: -8px;
    z-index: 1;
    width: 16px;
    height: 16px;
    border-top: 2px solid #8190a1;
    border-right: 2px solid #8190a1;
    content: "";
    transform: rotate(45deg);
}

.process-step h3 {
    font-size: 1.35rem;
}

.process-step p {
    margin-top: .55rem;
    color: #bec8d4;
    font-size: .84rem;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.metric {
    min-height: 190px;
    padding: 1.8rem;
    border-top: 5px solid var(--blue);
    background: var(--paper);
}

.metric strong {
    display: block;
    color: var(--blue-deep);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2.7rem;
    line-height: 1;
}

.metric h3 {
    margin-top: .7rem;
    font-size: 1.35rem;
}

.metric p {
    margin-top: .5rem;
    color: var(--steel);
    font-size: .86rem;
}

.coverage-band {
    position: relative;
    overflow: hidden;
    background: var(--blue);
    color: var(--white);
}

.coverage-band::after {
    position: absolute;
    top: -65%;
    right: -8%;
    width: 450px;
    height: 450px;
    border: 60px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
}

.coverage-inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 260px;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: min(1100px, calc(100% - 3rem));
    margin: 0 auto;
    padding: 3.25rem 0;
}

.coverage-inner h2 {
    max-width: 620px;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.coverage-inner p {
    max-width: 600px;
    margin-top: .75rem;
    color: #dceeff;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    display: grid;
    grid-template-columns: 1fr 32px;
    gap: 1rem;
    width: 100%;
    align-items: center;
    padding: 1.4rem 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-weight: 700;
    text-align: left;
}

.faq-question svg {
    width: 22px;
    height: 22px;
    transition: transform .2s ease;
}

.faq-question[aria-expanded="true"] {
    color: var(--blue-deep);
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

.faq-answer > div {
    overflow: hidden;
}

.faq-answer p {
    max-width: 760px;
    padding: 0 0 1.4rem;
    color: var(--steel);
    font-size: .92rem;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: start;
}

.contact-intro h2 {
    font-size: clamp(2.3rem, 5vw, 3.5rem);
}

.contact-intro > p {
    margin-top: .85rem;
    color: var(--steel);
}

.contact-methods {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-method {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: .85rem;
    align-items: center;
}

.contact-method svg {
    width: 44px;
    height: 44px;
    padding: 11px;
    border-radius: 4px;
    background: var(--blue);
    color: var(--white);
}

.contact-method span,
.contact-method strong {
    display: block;
}

.contact-method span {
    color: var(--steel);
    font-size: .76rem;
}

.contact-method strong {
    margin-top: .1rem;
    font-size: .9rem;
}

.contact-method a:hover {
    color: var(--blue-deep);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 38px rgba(20, 28, 41, .07);
}

.form-field {
    display: grid;
    gap: .4rem;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: .78rem;
    font-weight: 800;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: .8rem .9rem;
    border: 1px solid #c9d2dc;
    border-radius: 4px;
    background: #fbfcfd;
    color: var(--ink);
    font-size: .9rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(8, 121, 232, .12);
    outline: 0;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-note {
    grid-column: 1 / -1;
    color: var(--steel);
    font-size: .74rem;
}

.contact-form .btn {
    grid-column: 1 / -1;
    justify-self: start;
    border: 0;
}

.cta {
    padding: 4.5rem 1.5rem;
    background: #101a28;
    color: var(--white);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: min(1100px, 100%);
    margin: 0 auto;
}

.cta h2 {
    max-width: 640px;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.cta p {
    max-width: 620px;
    margin-top: .7rem;
    color: #bfc9d5;
}

.footer {
    border-top: 6px solid var(--yellow);
    background: #0b121d;
    color: #aab5c2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.3fr .7fr .9fr;
    gap: 3rem;
    width: min(1100px, calc(100% - 3rem));
    margin: 0 auto;
    padding: 3.4rem 0;
}

.footer-logo {
    width: 190px;
}

.footer-summary {
    max-width: 390px;
    margin-top: 1rem;
    font-size: .84rem;
}

.footer h2 {
    margin-bottom: .9rem;
    color: var(--white);
    font-size: 1.2rem;
}

.footer-links {
    display: grid;
    gap: .5rem;
    font-size: .84rem;
}

.footer a:hover {
    color: var(--yellow);
}

.footer-contact {
    display: grid;
    gap: .7rem;
    font-size: .84rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom-inner {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(1100px, calc(100% - 3rem));
    margin: 0 auto;
    font-size: .75rem;
}

.float-call {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 900;
    display: none;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 69, 138, .3);
}

.float-call svg {
    width: 23px;
    height: 23px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 920px) {
    .nav-inner {
        width: min(100% - 2rem, 1180px);
    }

    .nav-toggle {
        display: block;
    }

    .nav-call {
        margin-left: auto;
        margin-right: .6rem;
    }

    .nav-links {
        position: fixed;
        inset: var(--nav-height) 0 auto;
        display: grid;
        max-height: 0;
        gap: 0;
        overflow: hidden;
        background: #111a28;
        box-shadow: 0 16px 30px rgba(9, 16, 27, .2);
        transition: max-height .3s ease;
    }

    .nav-links.open {
        max-height: calc(100vh - var(--nav-height));
    }

    .nav-links a {
        min-height: 56px;
        justify-content: center;
        border-top: 1px solid rgba(255, 255, 255, .09);
    }

    .nav-links a::after {
        right: 35%;
        left: 35%;
    }

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

    .trust-item:nth-child(3) {
        border-left: 1px solid var(--line);
    }

    .trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-step:nth-child(2)::after {
        display: none;
    }

    .split,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .brand-panel {
        max-width: 650px;
    }
}

@media (max-width: 680px) {
    :root {
        --nav-height: 64px;
    }

    .nav-logo img {
        height: 34px;
    }

    .nav-call span {
        display: none;
    }

    .nav-call {
        width: 42px;
        height: 42px;
        justify-content: center;
        padding: 0;
    }

    .hero {
        min-height: calc(100svh - 32px);
        align-items: end;
        padding-top: 25rem;
        padding-bottom: 2rem;
    }

    .hero-van {
        top: var(--nav-height);
        width: 100%;
        max-width: 100%;
        height: 21rem;
        object-fit: contain;
        object-position: center top;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .hero::before {
        background:
            linear-gradient(180deg, transparent 0 34%, rgba(9, 15, 24, .74) 45%, rgba(9, 15, 24, .98) 57%),
            linear-gradient(0deg, rgba(9, 15, 24, .62), transparent 38%);
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        margin-bottom: .65rem;
        font-size: clamp(2.35rem, 12vw, 3rem);
    }

    .hero .eyebrow {
        margin-bottom: .5rem;
        font-size: .7rem;
    }

    .hero-copy {
        margin-bottom: 1rem;
        font-size: .88rem;
        line-height: 1.5;
    }

    .hero-actions {
        gap: .5rem;
    }

    .hero-actions .btn {
        min-height: 44px;
    }

    .hero-actions .btn,
    .section-actions .btn {
        width: 100%;
    }

    .trust-grid,
    .service-grid,
    .metric-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:first-child,
    .trust-item:nth-child(3) {
        min-height: 92px;
        justify-content: flex-start;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        border-left: 1px solid var(--line);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .page-hero {
        min-height: 370px;
        padding-bottom: 3.5rem;
    }

    .section {
        padding: 4.25rem 1.25rem;
    }

    .service-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .process-step {
        min-height: 0;
        border-top: 0;
        border-left: 3px solid #344254;
    }

    .process-step::after,
    .process-step:nth-child(2)::after {
        display: none;
    }

    .coverage-inner,
    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .form-field.full,
    .form-note,
    .contact-form .btn {
        grid-column: auto;
    }

    .contact-form .btn {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 1rem 0 5.5rem;
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}