:root {
    --green-900: #1c3d3e;
    --green-700: #5b7669;
    --gold-500: #ceac7b;
    --gray-100: #e2e2e1;
    --white-50: #f8f9fa;
    --ink: #183638;
    --muted: #63736d;
    --line: rgba(28, 61, 62, 0.14);
    --shadow: 0 18px 50px rgba(20, 44, 45, 0.12);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
}

body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    color: var(--ink);
    background:
        repeating-radial-gradient(ellipse at 12% 6%, rgba(28, 61, 62, 0.06) 0 1px, transparent 1px 28px),
        linear-gradient(180deg, var(--white-50) 0%, #f1f3f1 100%);
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.42;
    background:
        repeating-linear-gradient(128deg, transparent 0 44px, rgba(206, 172, 123, 0.08) 45px 46px, transparent 47px 92px);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

h1,
h2,
h3,
p,
li,
summary,
.btn,
.header-cta,
.service-card strong,
.service-card em,
.sector-checklist,
.faq-list,
.contact-form,
.response-box,
.footer-brand,
.footer-action {
    overflow-wrap: break-word;
}

.header-inner > *,
.hero-copy,
.metrics,
.benefit-card,
.service-card,
.split-section > *,
.differential-list article,
.sector-layout > *,
.faq-layout > *,
.cta-grid > *,
.footer-grid > * {
    min-width: 0;
}

button,
input,
textarea,
select {
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--gold-500);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-140%);
    padding: 10px 14px;
    border-radius: 4px;
    color: var(--green-900);
    background: var(--white-50);
    box-shadow: var(--shadow);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(28, 61, 62, 0.08);
    background: rgba(248, 249, 250, 0.92);
    backdrop-filter: blur(18px);
}

.header-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 78px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
}

.brand-link img {
    width: 178px;
    height: auto;
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.site-nav a {
    position: relative;
    color: rgba(24, 54, 56, 0.78);
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 180ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--gold-500);
    transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--green-900);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-toggle,
.nav-toggle-label {
    display: none;
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.btn-dark {
    color: var(--white-50);
    background: var(--green-900);
}

.btn-gold {
    color: var(--green-900);
    background: var(--gold-500);
    box-shadow: 0 14px 32px rgba(206, 172, 123, 0.22);
}

.btn-outline-light {
    color: var(--white-50);
    border-color: rgba(248, 249, 250, 0.36);
    background: transparent;
}

.btn:hover,
.header-cta:hover {
    transform: translateY(-2px);
}

.btn-dark:hover,
.header-cta:hover {
    background: #143233;
}

.section-dark,
.section-light,
.section-canvas {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
}

.section-dark {
    color: var(--white-50);
    background:
        repeating-radial-gradient(ellipse at 80% 12%, rgba(206, 172, 123, 0.18) 0 1px, transparent 1px 34px),
        linear-gradient(135deg, #173536 0%, var(--green-900) 52%, #102b2c 100%);
}

.section-light {
    background: var(--white-50);
}

.section-canvas {
    background: linear-gradient(180deg, #f1f3f1 0%, var(--white-50) 100%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--gold-500);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
    font-weight: 500;
}

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: 4rem;
}

h2 {
    margin-bottom: 18px;
    font-size: 2.7rem;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.section-heading.wide {
    max-width: 880px;
}

.section-heading p,
.hero-copy p,
.split-section p,
.faq-intro p,
.final-cta p {
    color: rgba(24, 54, 56, 0.72);
    font-size: 1.05rem;
}

.section-dark p,
.section-dark .hero-copy p,
.section-dark .split-section p,
.section-dark .final-cta p {
    color: rgba(248, 249, 250, 0.78);
}

.hero {
    isolation: isolate;
    min-height: min(620px, calc(100svh - 124px));
    padding: 62px 0 28px;
}

.hero-media,
.hero-scrim {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    z-index: -3;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
}

.hero-scrim {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(16, 43, 44, 0.96) 0%, rgba(24, 54, 56, 0.86) 38%, rgba(24, 54, 56, 0.46) 70%, rgba(16, 43, 44, 0.2) 100%),
        linear-gradient(180deg, rgba(16, 43, 44, 0.08) 0%, rgba(16, 43, 44, 0.64) 100%);
}

.hero-pattern,
.final-pattern {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.46;
    background:
        linear-gradient(112deg, rgba(91, 118, 105, 0.12), transparent 44%),
        repeating-linear-gradient(152deg, transparent 0 32px, rgba(248, 249, 250, 0.06) 33px 34px, transparent 35px 66px);
    animation: contourDrift 22s ease-in-out infinite alternate;
}

.hero-content {
    position: relative;
    display: grid;
    align-content: center;
    gap: 28px;
}

.hero h1 {
    max-width: 700px;
    margin-bottom: 20px;
    font-size: 3.55rem;
}

.hero-lead {
    max-width: 620px;
    font-size: 1.14rem;
    font-weight: 600;
}

.hero-context {
    max-width: 660px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: min(100%, 760px);
    overflow: hidden;
    border: 1px solid rgba(248, 249, 250, 0.16);
    border-radius: var(--radius);
    background: rgba(248, 249, 250, 0.12);
    backdrop-filter: blur(12px);
}

.metrics div {
    min-height: 78px;
    padding: 14px 16px;
    background: rgba(28, 61, 62, 0.44);
}

.metrics strong {
    display: block;
    color: var(--gold-500);
    font-size: 1.18rem;
}

.metrics span {
    display: block;
    color: rgba(248, 249, 250, 0.76);
    font-size: 0.78rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.benefit-card,
.service-card,
.faq-list details,
.contact-form,
.response-box {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(248, 249, 250, 0.82);
    box-shadow: var(--shadow);
}

.benefit-card {
    position: relative;
    min-height: 230px;
    padding: 26px;
    overflow: hidden;
    transition: transform 190ms ease, border-color 190ms ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(206, 172, 123, 0.56);
}

.benefit-card p {
    margin-bottom: 0;
    color: rgba(24, 54, 56, 0.7);
}

.card-mark {
    display: block;
    width: 44px;
    height: 34px;
    margin-bottom: 28px;
    border: 2px solid var(--gold-500);
    border-radius: 50% 50% 10% 10%;
    border-bottom: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.service-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 360px;
    overflow: hidden;
    padding: 0;
    color: var(--ink);
    text-align: left;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    transition: transform 220ms ease;
}

.service-card-body {
    padding: 20px;
}

.service-card span {
    display: block;
    margin-bottom: 16px;
    color: var(--gold-500);
    font-weight: 700;
}

.service-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.02rem;
}

.service-card em {
    display: block;
    color: rgba(24, 54, 56, 0.68);
    font-size: 0.9rem;
    font-style: normal;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(206, 172, 123, 0.62);
    background: #fff;
}

.service-card:hover img {
    transform: scale(1.015);
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.differential-list {
    display: grid;
    gap: 14px;
}

.differential-list article {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px;
    border: 1px solid rgba(248, 249, 250, 0.14);
    border-radius: var(--radius);
    background: rgba(248, 249, 250, 0.06);
    transition: transform 180ms ease, border-color 180ms ease;
}

.differential-list article:hover {
    transform: translateX(4px);
    border-color: rgba(206, 172, 123, 0.42);
}

.differential-list span {
    width: 24px;
    height: 24px;
    margin-top: 4px;
    border: 1px solid var(--gold-500);
    border-radius: 50% 50% 8% 50%;
    transform: rotate(45deg);
}

.differential-list p {
    margin-bottom: 0;
}

.sector-layout {
    max-width: 920px;
}

.sector-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.sector-tabs button {
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(28, 61, 62, 0.18);
    border-radius: 6px;
    color: var(--green-900);
    background: transparent;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.sector-tabs button:hover,
.sector-tabs button:focus-visible {
    transform: translateY(-2px);
    border-color: var(--gold-500);
    background: rgba(206, 172, 123, 0.12);
}

.sector-checklist article {
    padding: 28px;
    border-left: 4px solid var(--gold-500);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.sector-checklist p {
    color: rgba(24, 54, 56, 0.72);
}

.sector-checklist ol {
    display: grid;
    gap: 12px;
    padding-left: 22px;
    margin-bottom: 0;
}

.sector-checklist li::marker {
    color: var(--gold-500);
    font-weight: 700;
}

.partners-marquee {
    overflow: hidden;
    margin-inline: calc((100vw - min(calc(100vw - 40px), var(--container))) / -2);
    padding-block: 18px;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.partners-track {
    display: flex;
    width: max-content;
    animation: partnersMarquee 56s linear infinite;
    backface-visibility: hidden;
    will-change: transform;
}

.services,
.differentials,
.sectors,
.partners,
.faq-section,
.final-cta {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
}

.partners-group {
    display: flex;
    flex: 0 0 auto;
    gap: clamp(34px, 5vw, 78px);
    padding-right: clamp(34px, 5vw, 78px);
}

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

.partner-logo {
    display: grid;
    flex: 0 0 auto;
    width: clamp(210px, 19vw, 310px);
    height: 132px;
    place-items: center;
    padding: 18px 10px;
}

.partner-logo img {
    display: block;
    width: 100%;
    max-height: 96px;
    object-fit: contain;
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 56px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    padding: 20px 22px;
    background: #fff;
}

.faq-list summary {
    cursor: pointer;
    color: var(--green-900);
    font-weight: 700;
}

.faq-list summary::marker {
    color: var(--gold-500);
}

.faq-list p {
    margin: 14px 0 0;
    color: rgba(24, 54, 56, 0.7);
}

.final-cta {
    padding: 104px 0;
}

.cta-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 28px;
    border-color: rgba(248, 249, 250, 0.16);
    background: rgba(248, 249, 250, 0.09);
    backdrop-filter: blur(12px);
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form span,
.service-picker-field > span {
    color: rgba(248, 249, 250, 0.86);
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.service-picker-trigger {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(248, 249, 250, 0.22);
    border-radius: 6px;
    color: var(--white-50);
    background: rgba(9, 29, 30, 0.42);
    padding: 12px 14px;
    outline: none;
    transition: border-color 160ms ease, background 160ms ease;
}

.contact-form select option {
    color: var(--green-900);
}

.service-picker-field {
    display: grid;
    gap: 7px;
}

.service-picker {
    position: relative;
}

.service-picker-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
}

.service-picker-trigger::after {
    content: "";
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.service-picker-list {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    z-index: 20;
    max-height: 260px;
    overflow: auto;
    border: 1px solid rgba(248, 249, 250, 0.22);
    border-radius: 6px;
    background: #fff;
    box-shadow: var(--shadow);
}

.service-picker-list[hidden] {
    display: none;
}

.service-picker-list button {
    display: block;
    width: 100%;
    min-height: 44px;
    border: 0;
    padding: 11px 14px;
    color: var(--green-900);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
}

.service-picker-list button:hover,
.service-picker-list button:focus-visible {
    color: var(--gold-500);
    background: var(--green-900);
}

.service-picker-list button[aria-selected="true"] {
    color: var(--white-50);
    background: var(--green-700);
}

.contact-form textarea {
    min-height: 104px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold-500);
    background: rgba(9, 29, 30, 0.58);
}

.contact-form ::placeholder {
    color: rgba(248, 249, 250, 0.48);
}

.contact-response {
    min-height: 0;
}

.response-box {
    padding: 18px;
    color: var(--green-900);
    background: var(--white-50);
}

.response-box p {
    margin: 8px 0 16px;
    color: rgba(24, 54, 56, 0.72);
}

.site-footer {
    background: var(--white-50);
    border-top: 1px solid rgba(28, 61, 62, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.75fr 0.85fr;
    gap: 42px;
    padding: 58px 0;
}

.footer-brand img {
    width: 210px;
    margin-bottom: 20px;
}

.footer-brand p,
.footer-action p {
    color: rgba(24, 54, 56, 0.72);
}

.footer-contact {
    display: grid;
    gap: 10px;
    font-style: normal;
}

.footer-contact strong,
.footer-action strong {
    color: var(--green-900);
}

.footer-contact a,
.footer-email-row {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    max-width: 100%;
    color: rgba(24, 54, 56, 0.78);
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: color 160ms ease;
}

.footer-email-row {
    grid-template-columns: 22px minmax(0, 1fr) 34px;
    align-items: center;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: var(--gold-500);
}

.footer-contact-text {
    min-width: 0;
    overflow-wrap: anywhere;
}

.footer-contact-email {
    font-size: clamp(0.76rem, 3.2vw, 0.84rem);
}

.footer-copy-button {
    display: inline-grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(28, 61, 62, 0.14);
    border-radius: 6px;
    color: var(--gold-500);
    background: rgba(255, 255, 255, 0.64);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-4px);
    transition: opacity 160ms ease, transform 160ms ease, background 160ms ease, color 160ms ease;
}

.footer-copy-button .footer-contact-icon {
    width: 16px;
    height: 16px;
    margin: 0;
    color: currentColor;
}

.footer-email-row:hover .footer-copy-button,
.footer-email-row:focus-within .footer-copy-button {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.footer-copy-button:hover,
.footer-copy-button:focus-visible,
.footer-copy-button[data-copy-state="copied"] {
    color: var(--white-50);
    background: var(--green-900);
}

.footer-address {
    gap: 2px;
    line-height: 1.45;
}

.footer-address .footer-contact-text span {
    display: block;
}

.footer-contact a:hover,
.footer-email-row:hover {
    color: var(--green-900);
}

.footer-bottom {
    border-top: 4px solid var(--gold-500);
    background: var(--green-900);
    color: rgba(248, 249, 250, 0.82);
}

.footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 0;
    font-size: 0.86rem;
}

.htmx-request {
    opacity: 0.7;
}

@keyframes softFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes traceFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
    }
    50% {
        transform: translateY(16px) rotate(2deg);
    }
}

@keyframes contourDrift {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-18px, 12px, 0);
    }
}

@keyframes partnersMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 1080px) {
    .benefit-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-layout,
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .header-inner {
        grid-template-columns: auto auto auto;
        justify-content: space-between;
        gap: 14px;
    }

    .brand-link img {
        width: 150px;
    }

    .nav-toggle {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
    }

    .nav-toggle-label {
        display: inline-grid;
        grid-template-columns: 22px auto;
        align-items: center;
        gap: 10px;
        min-height: 44px;
        padding: 9px 10px;
        border: 1px solid rgba(28, 61, 62, 0.16);
        border-radius: 6px;
        cursor: pointer;
    }

    .nav-toggle-label span {
        grid-column: 1;
        display: block;
        width: 22px;
        height: 2px;
        background: var(--green-900);
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .nav-toggle-label b {
        grid-column: 2;
        grid-row: 1 / span 3;
        font-size: 0.86rem;
    }

    .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        display: grid;
        justify-content: stretch;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        border: 1px solid rgba(28, 61, 62, 0.1);
        border-radius: var(--radius);
        opacity: 0;
        background: var(--white-50);
        box-shadow: var(--shadow);
        transform: translateY(-8px);
        transition: max-height 240ms ease, opacity 180ms ease, transform 180ms ease;
    }

    .site-nav a {
        padding: 15px 18px;
        border-bottom: 1px solid rgba(28, 61, 62, 0.08);
    }

    .site-nav a::after {
        display: none;
    }

    .nav-toggle:checked ~ .site-nav {
        max-height: 360px;
        opacity: 1;
        transform: translateY(0);
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 58px 0 34px;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        gap: 38px;
    }

    .hero-bg {
        object-position: 70% center;
    }

    h1 {
        font-size: 3rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section-dark,
    .section-light,
    .section-canvas,
    .final-cta {
        padding: 72px 0;
    }

    .hero {
        padding: 28px 0 16px;
    }

    .hero-bg {
        object-position: 74% center;
    }

    .hero-scrim {
        background:
            linear-gradient(90deg, rgba(16, 43, 44, 0.97) 0%, rgba(24, 54, 56, 0.9) 56%, rgba(24, 54, 56, 0.62) 100%),
            linear-gradient(180deg, rgba(16, 43, 44, 0.18) 0%, rgba(16, 43, 44, 0.76) 100%);
    }

    h1 {
        font-size: 2.35rem;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .hero-lead {
        font-size: 1.06rem;
    }

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

    .benefit-grid,
    .service-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .metrics {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .metrics div {
        min-height: 74px;
        padding: 10px 8px;
    }

    .metrics strong {
        font-size: 1.08rem;
    }

    .metrics span {
        font-size: 0.72rem;
    }

    .partners-marquee {
        margin-inline: -14px;
    }

    .partners-group {
        gap: 28px;
        padding-right: 28px;
    }

    .partner-logo {
        width: 210px;
        height: 104px;
        padding: 12px 6px;
    }

    .partner-logo img {
        max-height: 78px;
    }

    .service-card,
    .benefit-card,
    .sector-checklist article,
    .faq-list details,
    .contact-form {
        padding: 20px;
    }

    .service-card {
        grid-template-rows: auto 1fr;
        min-height: 0;
        padding: 0;
    }

    .service-card-body {
        padding: 20px;
    }

    .sector-tabs {
        display: grid;
    }

    .footer-bottom .container {
        display: grid;
    }

    .footer-copy-button {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .partners-track {
        animation: partnersMarquee 56s linear infinite !important;
    }
}
