:root {
    --navy-950: #04152f;
    --navy-900: #061937;
    --navy-800: #0b2c50;
    --navy-700: #0e3b66;
    --teal-500: #20c7c7;
    --teal-600: #0ba9b3;
    --cyan-100: #e5f8f8;
    --ink: #0a1d38;
    --slate: #5d6c7d;
    --line: #dce5e9;
    --surface: #f4f8f9;
    --white: #fff;
    --shadow-sm: 0 12px 36px rgba(6, 25, 55, .08);
    --shadow-lg: 0 30px 80px rgba(6, 25, 55, .2);
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 82px;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

button,
a {
    touch-action: manipulation;
}

button {
    font: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(32, 199, 199, .65);
    outline-offset: 4px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    transform: translateY(-150%);
    color: var(--white);
    background: var(--navy-900);
    border-radius: 4px;
}

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

.shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    transition: background-color 250ms ease, box-shadow 250ms ease, color 250ms ease;
}

.site-header.is-scrolled {
    color: var(--navy-900);
    background: rgba(255, 255, 255, .96);
    border-bottom-color: rgba(6, 25, 55, .08);
    box-shadow: 0 8px 30px rgba(6, 25, 55, .08);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 30px;
}

.brand {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
}

.brand img {
    width: 214px;
    height: auto;
    padding: 5px 8px;
    background: rgba(255, 255, 255, .94);
    border-radius: 4px;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 13px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.main-menu a:not(.nav-contact)::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 6px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--teal-500);
    transition: transform 220ms var(--ease);
}

.main-menu a:hover::after,
.main-menu a.is-active::after {
    transform: scaleX(1);
}

.nav-contact {
    min-width: 112px;
    justify-content: center;
    margin-left: 8px;
    color: var(--navy-900);
    background: var(--teal-500);
    border-radius: 4px;
    transition: transform 200ms ease, background-color 200ms ease;
}

.nav-contact:hover {
    transform: translateY(-2px);
    background: #42dddd;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 10px;
    cursor: pointer;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 4px;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
    position: relative;
    min-height: 780px;
    height: min(940px, 100svh);
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 21, 47, .12);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .14;
    background-image:
        linear-gradient(rgba(32, 199, 199, .28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(32, 199, 199, .28) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.hero-map {
    position: absolute;
    right: -5%;
    top: 8%;
    width: 58%;
    height: 72%;
    opacity: .16;
    background: url("../images/bg/mitech-slider-cybersecurity-global-image.webp") center / contain no-repeat;
    animation: mapFloat 8s ease-in-out infinite;
}

.hero-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 3;
    width: 51%;
    max-width: 600px;
    padding-top: 70px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--teal-500);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    flex: 0 0 34px;
    height: 2px;
    background: currentColor;
}

.hero h1 {
    max-width: 600px;
    margin: 22px 0 0;
    color: var(--white);
    font-size: clamp(42px, 4.2vw, 60px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero h1 span {
    display: block;
    color: var(--teal-500);
}

.hero-lead {
    max-width: 580px;
    margin: 28px 0 0;
    color: var(--white);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    gap: 14px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 220ms var(--ease), box-shadow 220ms ease, background-color 220ms ease;
}

.button-primary {
    color: var(--navy-900);
    background: var(--teal-500);
    box-shadow: 0 16px 36px rgba(32, 199, 199, .2);
}

.button-primary:hover {
    transform: translateY(-3px);
    color: var(--navy-900);
    background: #43dddd;
    box-shadow: 0 20px 44px rgba(32, 199, 199, .28);
}

.text-link {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.text-link::after {
    content: "";
    position: absolute;
    inset: auto 0 5px;
    height: 1px;
    background: rgba(255, 255, 255, .55);
    transition: background-color 200ms ease;
}

.text-link:hover::after {
    background: var(--teal-500);
}

.hero-person {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 84%;
    overflow: hidden;
    border-radius: 4px 0 0 0;
}

.hero-person::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 25%;
    background: linear-gradient(transparent, var(--navy-950));
}

.hero-person img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
    filter: saturate(.86) contrast(1.05) brightness(.88);
}

.hero-person-halo {
    position: absolute;
    z-index: 0;
    width: 500px;
    aspect-ratio: 1;
    right: 40px;
    top: 10%;
    border: 1px solid rgba(32, 199, 199, .28);
    border-radius: 50%;
}

.hero-person-halo::before,
.hero-person-halo::after {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(32, 199, 199, .18);
    border-radius: 50%;
}

.hero-person-halo::after {
    inset: 24%;
}

.hero-signal {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 12%;
    display: flex;
    align-items: center;
    width: 320px;
    min-height: 88px;
    padding: 18px 20px;
    gap: 16px;
    color: var(--navy-900);
    background: rgba(255, 255, 255, .95);
    border-left: 4px solid var(--teal-500);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.signal-pulse {
    position: relative;
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    background: var(--teal-600);
    border-radius: 50%;
}

.signal-pulse::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid var(--teal-500);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

.hero-signal small,
.hero-signal strong {
    display: block;
}

.hero-signal small {
    color: var(--slate);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-signal strong {
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.4;
}

.scroll-cue {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 26px;
    width: 28px;
    height: 44px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 16px;
}

.scroll-cue span {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 4px;
    height: 8px;
    transform: translateX(-50%);
    background: var(--teal-500);
    border-radius: 2px;
    animation: scrollCue 1.8s ease-in-out infinite;
}

.impact {
    position: relative;
    z-index: 6;
    padding: 48px 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.impact-grid {
    display: grid;
    grid-template-columns: 1.65fr repeat(3, .55fr);
    align-items: center;
    gap: 36px;
}

.impact-intro {
    padding-right: 30px;
    border-right: 1px solid var(--line);
}

.impact h2 {
    max-width: 500px;
    margin: 12px 0 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
}

.metric {
    min-width: 0;
}

.metric strong {
    display: flex;
    align-items: flex-start;
    color: var(--navy-700);
    font-size: 42px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.metric sup {
    margin: 2px 0 0 2px;
    color: var(--teal-600);
    font-size: 18px;
}

.metric p {
    margin: 10px 0 0;
    color: var(--slate);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.section {
    padding: 112px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.15fr .75fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 72px;
}

.section-heading h2,
.capabilities h2,
.method h2,
.contact h2 {
    margin: 16px 0 0;
    color: var(--ink);
    font-size: clamp(34px, 4.2vw, 56px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
}

.section-heading > p,
.capabilities-intro > p,
.method-content > div > p:last-child {
    margin: 0;
    color: var(--slate);
    font-size: 17px;
    line-height: 1.75;
}

.solution-list {
    display: grid;
    gap: 104px;
}

.solution-row {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 72px;
}

.solution-row-reverse .solution-image {
    order: 2;
}

.solution-image {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    background: var(--navy-900);
}

.solution-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 25, 55, .08), rgba(32, 199, 199, .14));
}

.solution-image img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    transition: transform 700ms var(--ease), filter 300ms ease;
}

.solution-row:hover .solution-image img {
    transform: scale(1.035);
    filter: saturate(1.08);
}

.solution-image span {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    color: var(--navy-900);
    background: var(--teal-500);
    font-size: 17px;
    font-weight: 800;
}

.solution-kicker {
    margin: 0;
    color: var(--teal-600);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.solution-copy h3 {
    max-width: 520px;
    margin: 14px 0 0;
    color: var(--ink);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.18;
}

.solution-copy > p:not(.solution-kicker) {
    margin: 22px 0 0;
    color: var(--slate);
    font-size: 16px;
}

.solution-copy ul {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.solution-copy li {
    position: relative;
    padding-left: 28px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.solution-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 2px;
    background: var(--teal-500);
}

.capabilities {
    background: var(--surface);
}

.capabilities-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
}

.capabilities-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.capabilities-intro > p {
    margin-top: 22px;
}

.capabilities-intro img {
    width: 100%;
    height: 280px;
    margin-top: 38px;
    object-fit: cover;
    object-position: center top;
    box-shadow: var(--shadow-sm);
}

.capability-accordion {
    border-top: 1px solid #cad7dc;
}

.capability-item {
    border-bottom: 1px solid #cad7dc;
}

.capability-item button {
    width: 100%;
    min-height: 108px;
    display: grid;
    grid-template-columns: 52px 1fr 24px;
    align-items: center;
    gap: 18px;
    padding: 22px 8px;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    background: transparent;
    border: 0;
}

.capability-item button > span:nth-child(2) {
    font-size: 19px;
    font-weight: 700;
}

.capability-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--teal-600);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(6, 25, 55, .07);
}

.capability-item button > i {
    color: var(--teal-600);
    transition: transform 250ms var(--ease);
}

.capability-item.is-open button > i {
    transform: rotate(45deg);
}

.capability-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 350ms var(--ease);
}

.capability-panel p {
    min-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 8px 0 78px;
    color: var(--slate);
    transition: padding 350ms var(--ease);
}

.capability-item.is-open .capability-panel {
    grid-template-rows: 1fr;
}

.capability-item.is-open .capability-panel p {
    padding-bottom: 30px;
}

.method {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    min-height: 820px;
    background: var(--navy-950);
}

.method-visual {
    min-height: 100%;
    overflow: hidden;
}

.method-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.8) contrast(1.05);
}

.method-content {
    padding: 100px max(40px, calc((100vw - 1180px) / 2)) 90px 76px;
    color: var(--white);
}

.method h2 {
    color: var(--white);
}

.method-content > div > p:last-child {
    max-width: 650px;
    margin-top: 22px;
    color: var(--white);
}

.method-steps {
    margin: 48px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.method-steps li {
    display: grid;
    grid-template-columns: 54px 150px 1fr;
    align-items: center;
    min-height: 82px;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.method-steps li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.method-steps span {
    color: var(--teal-500);
    font-size: 12px;
    font-weight: 800;
}

.method-steps strong {
    font-size: 15px;
}

.method-steps p {
    margin: 0;
    color: var(--white);
    font-size: 13px;
}

.contact {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    color: var(--white);
    background: var(--navy-700);
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(6, 25, 55, .62), transparent 62%),
        url("../images/bg/home-appointment-contact-bg-image.webp") 95% center / 760px auto no-repeat;
    opacity: .7;
}

.contact-pattern {
    position: absolute;
    right: -120px;
    bottom: -200px;
    width: 500px;
    aspect-ratio: 1;
    border: 1px solid rgba(32, 199, 199, .28);
    border-radius: 50%;
}

.contact-pattern::before,
.contact-pattern::after {
    content: "";
    position: absolute;
    inset: 15%;
    border: 1px solid rgba(32, 199, 199, .2);
    border-radius: 50%;
}

.contact-pattern::after {
    inset: 30%;
}

.contact-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 470px;
    align-items: center;
    gap: 80px;
}

.contact h2 {
    color: var(--white);
}

.contact-copy > p:last-child {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--white);
    font-size: 17px;
}

.contact-options {
    display: grid;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.contact-options > * {
    min-height: 92px;
    display: grid;
    grid-template-columns: 46px 1fr 20px;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
}

.contact-options > *:last-child {
    border-bottom: 0;
}

.contact-options > a {
    transition: background-color 200ms ease;
}

.contact-options > a:hover {
    background: var(--cyan-100);
}

.contact-options > * > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--teal-600);
    background: var(--cyan-100);
}

.contact-options small,
.contact-options strong {
    display: block;
}

.contact-options small {
    color: var(--slate);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-options strong {
    margin-top: 2px;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.contact-options > * > i {
    color: var(--teal-600);
}

.site-footer {
    padding: 30px 0;
    background: var(--white);
}

.footer-inner {
    display: grid;
    grid-template-columns: 220px 1fr 48px;
    align-items: center;
    gap: 30px;
}

.footer-inner img {
    width: 190px;
    height: auto;
}

.footer-inner p {
    margin: 0;
    color: var(--slate);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.footer-inner > a {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--navy-900);
    background: var(--cyan-100);
    text-decoration: none;
    transition: transform 200ms ease, background-color 200ms ease;
}

.footer-inner > a:hover {
    transform: translateY(-3px);
    background: var(--teal-500);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 700ms var(--ease),
        transform 700ms var(--ease);
    transition-delay: calc(var(--reveal-delay, 0) * 80ms);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-delay="1"] { --reveal-delay: 1; }
[data-delay="2"] { --reveal-delay: 2; }
[data-delay="3"] { --reveal-delay: 3; }
[data-delay="4"] { --reveal-delay: 4; }

@keyframes pulse {
    0% { transform: scale(.7); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

@keyframes scrollCue {
    0%, 100% { transform: translate(-50%, 0); opacity: .5; }
    50% { transform: translate(-50%, 12px); opacity: 1; }
}

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

@media (max-width: 1080px) {
    .hero {
        min-height: 740px;
    }

    .hero-copy {
        width: 54%;
        max-width: 540px;
    }

    .hero-person {
        right: 0;
        width: 44%;
    }

    .hero-signal {
        right: 10px;
    }

    .impact-grid {
        grid-template-columns: 1.5fr repeat(3, .6fr);
        gap: 22px;
    }

    .solution-row {
        gap: 44px;
    }

    .capabilities-layout {
        gap: 52px;
    }

    .method {
        grid-template-columns: .7fr 1.3fr;
    }

    .method-content {
        padding-left: 52px;
    }

    .contact-inner {
        grid-template-columns: 1fr 420px;
        gap: 45px;
    }
}

@media (max-width: 860px) {
    .shell {
        width: min(100% - 30px, 1180px);
    }

    .site-header {
        color: var(--navy-900);
        background: rgba(255, 255, 255, .97);
    }

    .header-inner {
        min-height: 74px;
    }

    .brand img {
        width: 185px;
        padding: 0;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-menu {
        position: absolute;
        top: 74px;
        left: 15px;
        right: 15px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        padding: 12px;
        color: var(--navy-900);
        background: var(--white);
        box-shadow: var(--shadow-lg);
    }

    .main-menu.is-open {
        display: flex;
    }

    .main-menu a {
        min-height: 50px;
    }

    .nav-contact {
        margin: 4px 0 0;
    }

    .hero {
        min-height: 780px;
        height: auto;
        padding: 150px 0 84px;
    }

    .hero-inner {
        align-items: flex-start;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
        padding: 0 0 440px;
    }

    .hero h1 {
        max-width: 690px;
    }

    .hero-person {
        right: 0;
        height: 400px;
        width: min(680px, 92%);
    }

    .hero-person-halo {
        width: 300px;
    }

    .hero-signal {
        right: auto;
        left: 15px;
        bottom: 48px;
        width: min(320px, calc(100% - 30px));
    }

    .scroll-cue {
        display: none;
    }

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

    .impact-intro {
        grid-column: 1 / -1;
        padding: 0 0 26px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 84px 0;
    }

    .section-heading,
    .solution-row,
    .capabilities-layout,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .section-heading {
        gap: 24px;
        margin-bottom: 54px;
    }

    .solution-list {
        gap: 70px;
    }

    .solution-row-reverse .solution-image {
        order: 0;
    }

    .capabilities-intro {
        position: static;
    }

    .method {
        grid-template-columns: 1fr;
    }

    .method-visual {
        height: 480px;
    }

    .method-content {
        padding: 76px 30px;
    }

    .contact-inner {
        gap: 44px;
    }
}

@media (max-width: 580px) {
    .hero {
        min-height: 820px;
        padding-top: 125px;
    }

    .hero-copy {
        padding-bottom: 360px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .button,
    .text-link {
        width: 100%;
        justify-content: center;
    }

    .hero-person {
        right: -14%;
        width: 118%;
        height: 340px;
    }

    .hero-map {
        width: 110%;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .metric {
        display: grid;
        grid-template-columns: 90px 1fr;
        align-items: center;
        padding-bottom: 18px;
        border-bottom: 1px solid var(--line);
    }

    .metric p {
        margin: 0;
    }

    .section-heading h2,
    .capabilities h2,
    .method h2,
    .contact h2 {
        font-size: 34px;
    }

    .solution-image,
    .solution-image img {
        min-height: 280px;
        height: 280px;
    }

    .solution-image span {
        width: 62px;
        height: 62px;
    }

    .capabilities-layout {
        gap: 48px;
    }

    .capability-item button {
        grid-template-columns: 44px 1fr 18px;
        gap: 12px;
    }

    .capability-icon {
        width: 42px;
        height: 42px;
    }

    .capability-item button > span:nth-child(2) {
        font-size: 16px;
    }

    .capability-panel p {
        padding-left: 56px;
    }

    .method-visual {
        height: 320px;
    }

    .method-content {
        padding: 64px 20px;
    }

    .method-steps li {
        grid-template-columns: 36px 1fr;
        padding: 18px 0;
    }

    .method-steps p {
        grid-column: 2;
    }

    .contact {
        padding: 82px 0;
    }

    .contact-options > * {
        grid-template-columns: 44px 1fr;
        padding: 16px;
    }

    .contact-options > * > i {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr 48px;
    }

    .footer-inner p {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: left;
    }
}

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

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
