@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');


/* =====================================
   GLOBAL
===================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #0c3e68;
    overflow-x: hidden;
}

a {
    color: inherit;
}


/* =====================================
   HEADER
===================================== */

.site-header {
    width: 100%;
    height: 88px;

    background: #ffffff;

    position: relative;
    z-index: 1000;

    border-bottom: 1px solid rgba(8, 61, 102, 0.07);
}

.header-container {
    width: min(1420px, 90%);
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 145px;
    height: auto;
    display: block;
}


/* MAIN NAV */

.main-nav {
    display: flex;
    align-items: center;
    gap: 46px;
}

.main-nav a {
    position: relative;

    text-decoration: none;

    color: #244a68;

    font-size: 14px;
    font-weight: 400;

    transition: color 0.25s ease;
}

.main-nav a:hover {
    color: #0662a6;
}

.main-nav a.active {
    color: #064f88;
    font-weight: 500;
}

.main-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -13px;

    height: 2px;

    background: #0866ad;
}


/* HEADER ACTIONS */

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pitch-btn {
    min-height: 46px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: #06538c;
    color: #ffffff;

    border-radius: 5px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.pitch-btn:hover {
    background: #0766a9;
    transform: translateY(-1px);
}

.pitch-btn span {
    font-size: 18px;
    font-weight: 300;
}


/* MENU BUTTON */

.menu-btn {
    width: 44px;
    height: 44px;

    background: transparent;
    border: 0;

    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.menu-btn span {
    width: 23px;
    height: 1.5px;

    background: #064f88;
}


/* =====================================
   HERO
===================================== */

.hero {
    width: 100%;
    min-height: 570px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* left-side readability overlay */
/* HERO IMAGE ANIMATION */

.hero::before {
    content: "";

    position: absolute;
    inset: 0;


    background-image: url("Assets/heroimage2.png");
    background-size: cover;
    background-position: center;

    z-index: 0;

    animation: heroImageReveal 2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroImageReveal {
    from {
        opacity: 0;
        transform: scale(1.06);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(6, 34, 57, 0.92) 0%,
            rgba(6, 40, 67, 0.80) 26%,
            rgba(6, 40, 67, 0.35) 47%,
            rgba(6, 40, 67, 0.04) 70%);
}


/* HERO CONTENT */

.hero-container {
    width: min(1420px, 90%);

    margin: 0 auto;

    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-copy {
    width: min(560px, 48%);
}


/* EYEBROW */

.eyebrow {
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 2.3px;

    text-transform: uppercase;
}

.eyebrow .dot {
    width: 4px;
    height: 4px;

    background: #66b8ed;

    border-radius: 50%;
}


/* HERO TITLE */

.hero h1 {
    color: #ffffff;

    font-size: clamp(48px, 5vw, 72px);

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -2.7px;

    margin-bottom: 25px;
}

.hero h1 span {
    font-weight: 300;

    color: #ccecff;
}


/* HERO PARAGRAPH */

.hero-copy>p {
    width: min(510px, 100%);

    color: rgba(255, 255, 255, 0.86);

    font-size: 16px;

    font-weight: 300;

    line-height: 1.7;

    margin-bottom: 32px;
}


/* HERO BUTTONS */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 14px;
}

.hero-primary,
.hero-secondary {
    min-height: 50px;

    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    border-radius: 4px;

    font-size: 13px;
    font-weight: 500;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.hero-primary {
    background: #0876c9;
    color: #ffffff;

    gap: 12px;
}

.hero-primary:hover {
    background: #0a87df;
    transform: translateY(-2px);
}

.hero-primary span {
    font-size: 18px;
    font-weight: 300;
}

.hero-secondary {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.65);

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(4px);
}

.hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* =====================================
   HERO TEXT ANIMATION
===================================== */

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy>p,
.hero-actions {
    opacity: 0;
    transform: translateY(24px);

    animation: heroTextReveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy .eyebrow {
    animation-delay: 0.35s;
}

.hero-copy h1 {
    animation-delay: 0.55s;
}

.hero-copy>p {
    animation-delay: 0.75s;
}

.hero-actions {
    animation-delay: 0.95s;
}


@keyframes heroTextReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Small editorial statement */

.hero-note {
    position: absolute;

    right: 0;
    top: -185px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;

    font-style: italic;

    font-weight: 300;

    letter-spacing: 0.2px;
}


/* =====================================
   TARGET / IMPACT STRIP
===================================== */

.targets {
    width: 100%;

    background: #f5faff;

    border-bottom: 1px solid #e4eef5;
}

.targets-container {
    width: min(1420px, 90%);

    min-height: 125px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.target-item {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 25px 36px;

    position: relative;
}

.target-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;

    height: 60%;

    width: 1px;

    background: #cee0ed;
}

.target-icon {
    width: 54px;
    height: 54px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #e3f2fb;

    color: #07588f;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.target-item div:last-child {
    display: flex;
    flex-direction: column;
}

.target-item strong {
    color: #103f69;

    font-size: 20px;
    font-weight: 500;

    margin-bottom: 6px;
}

.target-item span {
    color: #5b7488;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =====================================
   CAPABILITIES
===================================== */

.capabilities {
    width: 100%;

    background: #ffffff;

    padding: 27px 0 38px;
}

.capabilities-heading {
    width: min(900px, 80%);

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;
}

.capabilities-heading span {
    flex: 1;

    height: 1px;

    background: #d4e1ea;
}

.capabilities-heading p {
    color: #6b8395;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2.4px;

    text-transform: uppercase;

    white-space: nowrap;
}

.capabilities-container {
    width: min(1420px, 90%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(5, 1fr);
}

.capability {
    padding: 13px 30px;

    display: flex;
    flex-direction: column;

    position: relative;
}

.capability:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;

    top: 15%;

    width: 1px;
    height: 70%;

    background: #dce6ed;
}

.capability strong {
    color: #134873;

    font-size: 14px;
    font-weight: 500;

    margin-bottom: 6px;
}

.capability small {
    color: #7790a2;

    font-size: 10px;
    font-weight: 400;

    letter-spacing: 1.1px;

    text-transform: uppercase;
}


/* =====================================
   OVERLAY
===================================== */

.menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(2, 18, 30, 0.5);

    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;

    transition: 0.35s ease;

    z-index: 1998;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}


/* =====================================
   SIDE MENU
===================================== */

.side-menu {
    width: 400px;
    max-width: 90%;

    height: 100vh;

    position: fixed;

    right: 0;
    top: 0;

    z-index: 1999;

    background: #ffffff;

    padding: 30px;

    transform: translateX(100%);

    transition:
        transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);

    overflow-y: auto;

    box-shadow: -20px 0 70px rgba(0, 34, 60, 0.15);
}

.side-menu.open {
    transform: translateX(0);
}

.side-menu-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    padding-bottom: 24px;

    border-bottom: 1px solid #e3ebf1;
}

.side-menu-top img {
    width: 125px;
}

.close-menu {
    border: 0;
    background: transparent;

    color: #064f88;

    font-family: "Inter", sans-serif;

    font-size: 30px;
    font-weight: 300;

    cursor: pointer;
}


/* SIDE LINKS */

.side-nav {
    padding: 25px 0;

    display: flex;
    flex-direction: column;
}

.side-nav a {
    text-decoration: none;

    color: #244a68;

    padding: 13px 10px;

    font-size: 14px;
    font-weight: 400;

    border-radius: 4px;

    transition: 0.2s ease;
}

.side-nav a:hover {
    color: #075c99;

    background: #f2f8fc;

    padding-left: 15px;
}


/* SIDE ACTIONS */

.side-actions {
    border-top: 1px solid #e3ebf1;

    padding-top: 22px;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.side-pitch,
.side-partner {
    min-height: 49px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    border-radius: 4px;

    font-size: 13px;
    font-weight: 500;
}

.side-pitch {
    background: #06538c;
    color: white;
}

.side-partner {
    color: #06538c;

    border: 1px solid #07598f;
}


/* Stop page moving while menu open */

body.menu-open {
    overflow: hidden;
}


/* =====================================
   TEMPORARY RESPONSIVE SAFETY
===================================== */

@media (max-width: 950px) {

    .main-nav {
        display: none;
    }

    .hero-copy {
        width: 65%;
    }

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

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


@media (max-width: 650px) {

    .pitch-btn {
        display: none;
    }

    .hero {
        min-height: 650px;

        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(5, 35, 59, 0.94),
                rgba(5, 35, 59, 0.72));
    }

    .hero-copy {
        width: 100%;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .targets-container {
        grid-template-columns: 1fr;
    }

    .capabilities-container {
        grid-template-columns: 1fr;
    }
}

.footer-container {
    width: min(1420px, 90%);

    margin: 0 auto;

    padding: 42px 0 34px;

    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;

    align-items: center;

    gap: 70px;
}

.footer-message {
    max-width: 470px;
    justify-self: center;
}

.footer-message-label {
    display: block;

    color: rgba(255, 255, 255, 0.5);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 10px;
}

.footer-message h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: -0.15px;
    margin-bottom: 8px;
}

.footer-message p {
    color: rgba(255, 255, 255, 0.58);

    font-size: 11.5px;
    font-weight: 300;

    line-height: 1.65;
}

/* =========================================================
   DOCTOR ON WHEELS FOOTER — COMPACT
========================================================= */

.dow-footer {
    width: 100%;
    background: #075781;
    color: #ffffff;

    padding: 0 5%;
}


/* =====================================
   MAIN FOOTER ROW
===================================== */

.dow-footer-main {
    width: min(1420px, 100%);

    margin: 0 auto;

    padding: 24px 0 20px;

    display: grid;

    grid-template-columns:
        170px minmax(300px, 1.7fr) minmax(250px, 1fr) auto;

    align-items: center;

    gap: 40px;
}


/* =====================================
   LOGO
===================================== */

.dow-footer-brand {
    padding-right: 30px;

    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.dow-footer-logo {
    width: 135px;
    height: auto;

    display: block;
}


/* =====================================
   MISSION
===================================== */

.dow-footer-mission {
    min-height: 76px;

    padding-right: 40px;

    border-right: 1px solid rgba(255, 255, 255, 0.18);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dow-footer-mission h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 300;

    line-height: 1.4;

    letter-spacing: -0.15px;
}

.dow-footer-mission p {
    max-width: 560px;

    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 12px;
    font-weight: 300;

    line-height: 1.55;
}


/* =====================================
   CONTACT
===================================== */

.dow-footer-contact {
    min-height: 76px;

    padding-right: 35px;

    border-right: 1px solid rgba(255, 255, 255, 0.18);

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 12px;
}

.dow-footer-contact a,
.dow-location {
    display: flex;
    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 12px;
    font-weight: 300;

    text-decoration: none;
}

.dow-footer-contact a:hover {
    color: #ffffff;
}

.dow-contact-icon {
    width: 17px;
    height: 17px;

    flex: 0 0 17px;
}

.dow-contact-icon svg {
    width: 100%;
    height: 100%;

    display: block;

    fill: #ffffff;
}


/* =====================================
   SOCIALS
===================================== */

.dow-footer-socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 10px;
}

.dow-footer-socials a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 50%;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.dow-footer-socials a:hover {
    transform: translateY(-2px);

    background: rgba(255, 255, 255, 0.1);

    border-color: rgba(255, 255, 255, 0.5);
}

.dow-footer-socials svg {
    width: 17px;
    height: 17px;

    fill: #ffffff;
}


/* =====================================
   COPYRIGHT ROW
===================================== */

.dow-footer-bottom {
    width: min(1420px, 100%);

    min-height: 38px;

    margin: 0 auto;

    border-top: 1px solid rgba(255, 255, 255, 0.13);

    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.dow-footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.52);

    font-size: 9.5px;
    font-weight: 300;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1050px) {

    .dow-footer-main {
        grid-template-columns: 150px 1fr 1fr;

        gap: 30px;

        padding: 28px 0 22px;
    }

    .dow-footer-brand,
    .dow-footer-mission,
    .dow-footer-contact {
        border-right: none;
    }

    .dow-footer-socials {
        grid-column: 2 / -1;

        justify-content: flex-start;
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 700px) {

    .dow-footer {
        padding: 0 6%;
    }

    .dow-footer-main {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 34px 0 24px;
    }

    .dow-footer-brand,
    .dow-footer-mission,
    .dow-footer-contact {
        min-height: auto;

        padding-right: 0;

        border-right: none;
    }

    .dow-footer-logo {
        width: 125px;
    }

    .dow-footer-socials {
        grid-column: auto;

        justify-content: flex-start;
    }

    .dow-footer-bottom {
        min-height: 44px;

        justify-content: flex-start;
    }

}

/* =====================================
   TARGETS + CAPABILITIES REVEAL
===================================== */

body.animations-ready .target-item,
body.animations-ready .capabilities-heading,
body.animations-ready .capability {
    opacity: 0;
    transform: translateY(22px);

    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}


/* TARGETS — STAGGER */

body.animations-ready .target-item:nth-child(1) {
    transition-delay: 0s;
}

body.animations-ready .target-item:nth-child(2) {
    transition-delay: 0.10s;
}

body.animations-ready .target-item:nth-child(3) {
    transition-delay: 0.20s;
}

body.animations-ready .target-item:nth-child(4) {
    transition-delay: 0.30s;
}


/* CAPABILITY HEADING */

body.animations-ready .capabilities-heading {
    transition-delay: 0.08s;
}


/* CAPABILITIES — STAGGER */

body.animations-ready .capability:nth-child(1) {
    transition-delay: 0.08s;
}

body.animations-ready .capability:nth-child(2) {
    transition-delay: 0.16s;
}

body.animations-ready .capability:nth-child(3) {
    transition-delay: 0.24s;
}

body.animations-ready .capability:nth-child(4) {
    transition-delay: 0.32s;
}

body.animations-ready .capability:nth-child(5) {
    transition-delay: 0.40s;
}


/* VISIBLE STATE */

body.animations-ready .target-item.is-visible,
body.animations-ready .capabilities-heading.is-visible,
body.animations-ready .capability.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    .hero::before,
    .hero-copy .eyebrow,
    .hero-copy h1,
    .hero-copy>p,
    .hero-actions {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .target-item,
    .capabilities-heading,
    .capability {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* =========================================================
   ABOUT PAGE — CLEAN FINAL VERSION
========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.about-main-hero {
    width: 100%;

    background: #f1f7fb;

    overflow: hidden;
}

.about-main-hero-container {
    width: 100%;
    min-height: 520px;

    display: grid;
    grid-template-columns: 43% 57%;

    background: #f1f7fb;
}


/* =========================================================
   HERO TEXT — LEFT
========================================================= */

.about-main-copy {
    padding-left: max(5%, calc((100vw - 1420px) / 2));
    padding-right: 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #f1f7fb;

    position: relative;
    z-index: 3;
}

.about-main-label {
    color: #08639e;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2.8px;
    text-transform: uppercase;

    margin-bottom: 25px;
}

.about-main-copy h1 {
    max-width: 600px;

    color: #123f66;

    font-size: clamp(50px, 4.7vw, 71px);
    font-weight: 400;

    line-height: 1.04;
    letter-spacing: -2.5px;

    margin: 0 0 30px;
}

.about-main-copy h1 span {
    display: block;

    color: #08629d;

    font-weight: 300;
}

.about-main-copy>p {
    max-width: 555px;

    color: #61798b;

    font-size: 15px;
    font-weight: 300;

    line-height: 1.8;

    margin: 0;
}


/* SMALL TEXT AT BOTTOM */

.about-main-detail {
    margin-top: 50px;

    display: flex;
    align-items: center;

    gap: 16px;
}

.about-main-detail>span {
    width: 40px;
    height: 1px;

    background: #0866a3;
}

.about-main-detail small {
    color: #57768c;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 2.2px;
    text-transform: uppercase;
}


/* =========================================================
   HERO IMAGE — RIGHT
========================================================= */

.about-main-image {
    position: relative;

    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #f1f7fb;
    margin-right: 18px;
}

.about-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    position: relative;
    z-index: 1;
}


/*
   SOFT FADE
   Uses EXACTLY the same pale blue as the page.
   Therefore it should blend without creating another shade.
*/

.about-image-fade {
    display: none;
}



/* =========================================================
   PROBLEM SECTION
========================================================= */

.problem-section {
    width: 100%;
    background: #ffffff;
    padding: 75px 5% 85px;
    overflow: hidden;
}


/* CENTERED HEADING */

.problem-heading {
    width: min(820px, 92%);
    margin: 0 auto 55px;
    text-align: center;
}

.problem-label {
    display: block;

    color: #0865a1;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2.8px;
    text-transform: uppercase;

    margin-bottom: 22px;
}

.problem-heading h2 {
    max-width: 720px;

    margin: 0 auto 24px;

    color: #123f66;

    font-size: clamp(37px, 3.5vw, 52px);
    font-weight: 300;

    line-height: 1.16;
    letter-spacing: -1.6px;
}

.problem-heading p {
    max-width: 720px;

    margin: 0 auto;

    color: #667d8e;

    font-size: 14px;
    font-weight: 300;

    line-height: 1.8;
}


/* FOUR VERTICAL CARDS */

.problem-grid {
    width: min(1240px, 100%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.problem-card {
    min-height: 340px;

    padding: 34px 28px;

    background: #ffffff;

    border: 1px solid #d9e7ef;
    border-radius: 7px;

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-6px);

    border-color: #a9cfe3;

    box-shadow: 0 16px 40px rgba(18, 63, 102, 0.07);
}


/* ICON */

.problem-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e4f3fb;
    color: #07619b;

    font-size: 20px;

    margin-bottom: 42px;
}


/* CARD TEXT */

.problem-card h3 {
    color: #123f66;

    font-size: 18px;
    font-weight: 400;

    line-height: 1.35;

    margin: 0 0 16px;
}

.problem-card p {
    color: #687f90;

    font-size: 12px;
    font-weight: 300;

    line-height: 1.75;

    margin: 0;
}


/* SOLUTION BUTTON */

.problem-cta {
    margin-top: 50px;

    display: flex;
    justify-content: center;
}

.solution-button {
    min-height: 52px;

    padding: 0 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    background: #075b94;
    color: #ffffff;

    text-decoration: none;

    border-radius: 4px;

    font-size: 13px;
    font-weight: 500;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.solution-button:hover {
    background: #0871b5;
    transform: translateY(-2px);
}


/* TABLET */

@media (max-width: 1000px) {

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

}


/* MOBILE */

@media (max-width: 600px) {

    .problem-section {
        padding: 60px 6%;
    }

    .problem-heading {
        margin-bottom: 40px;
    }

    .problem-heading h2 {
        font-size: 36px;
    }

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

    .problem-card {
        min-height: 280px;
    }

}

/* =====================================
   ABOUT HERO — PAGE LOAD ANIMATION
===================================== */

.about-main-copy {
    animation:
        aboutTextEnter 1.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-main-image {
    animation:
        aboutImageEnter 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}


/* TEXT COMES FROM LEFT */

@keyframes aboutTextEnter {

    from {
        opacity: 0;
        transform: translateX(-70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* TRUCK COMES FROM RIGHT */

@keyframes aboutImageEnter {

    from {
        opacity: 0;
        transform: translateX(90px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =====================================
   ABOUT PAGE ANIMATIONS
===================================== */


/* HERO TEXT — LEFT TO RIGHT */


/* PROBLEM HEADING — RISES */

body.about-animations-ready .problem-heading {
    opacity: 0;
    transform: translateY(28px);
}


/* PROBLEM CARDS */

body.about-animations-ready .problem-card {
    opacity: 0;
    transform: translateY(32px);
}


/* SOLUTION BUTTON */

body.about-animations-ready .problem-cta {
    opacity: 0;
    transform: translateY(25px);
}


/* COMMON TIMING */


body.about-animations-ready .problem-heading,
body.about-animations-ready .problem-card,
body.about-animations-ready .problem-cta {

    transition:
        opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}


/* HERO IMAGE SLIGHTLY SLOWER */

body.about-animations-ready .about-main-image {
    transition-duration: 1.55s;
}


/* CARD STAGGER */

body.about-animations-ready .problem-card:nth-child(1) {
    transition-delay: 0.05s;
}

body.about-animations-ready .problem-card:nth-child(2) {
    transition-delay: 0.14s;
}

body.about-animations-ready .problem-card:nth-child(3) {
    transition-delay: 0.23s;
}

body.about-animations-ready .problem-card:nth-child(4) {
    transition-delay: 0.32s;
}


/* VISIBLE STATE */


body.about-animations-ready .problem-heading.is-visible,
body.about-animations-ready .problem-card.is-visible,
body.about-animations-ready .problem-cta.is-visible {
    opacity: 1;
    transform: none;
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-main-copy,
    .about-main-image,
    .problem-heading,
    .problem-card,
    .problem-cta {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

}

/* =========================================================
   SOLUTION PAGE
========================================================= */

.solution-page {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.solution-hero {
    min-height: 510px;

    display: grid;
    grid-template-columns: 42% 58%;

    background: #f1f7fb;
}


/* LEFT */

.solution-hero-copy {
    padding-left: max(5%, calc((100vw - 1420px) / 2));
    padding-right: 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-eyebrow {
    color: #08639e;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2.8px;
    text-transform: uppercase;

    margin-bottom: 24px;
}

.solution-hero-copy h1 {
    max-width: 590px;

    margin: 0 0 28px;

    color: #123f66;

    font-size: clamp(48px, 4.5vw, 68px);
    font-weight: 300;

    line-height: 1.04;
    letter-spacing: -2.3px;
}

.solution-hero-copy h1 span {
    display: block;

    color: #08639e;
}

.solution-hero-copy>p {
    max-width: 540px;

    margin: 0;

    color: #61798b;

    font-size: 15px;
    font-weight: 300;

    line-height: 1.75;
}


/* SMALL DETAIL */

.solution-detail-line {
    margin-top: 43px;

    display: flex;
    align-items: center;

    gap: 15px;
}

.solution-detail-line>span {
    width: 40px;
    height: 1px;

    background: #0865a1;
}

.solution-detail-line small {
    color: #59778c;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 2.2px;
    text-transform: uppercase;
}


/* RIGHT IMAGE */

.solution-hero-image {
    min-width: 0;

    padding: 24px 18px 24px 0;

    display: flex;
    align-items: center;

    background: #f1f7fb;
}

.solution-hero-image img {
    width: 100%;
    height: 100%;

    max-height: 465px;

    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: 3px;
}


/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.solution-section-heading {
    width: min(780px, 90%);

    margin: 0 auto;

    text-align: center;
}

.solution-section-heading>span {
    display: block;

    margin-bottom: 17px;

    color: #0865a1;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.solution-section-heading h2 {
    margin: 0 auto 17px;

    color: #123f66;

    font-size: clamp(32px, 3vw, 43px);
    font-weight: 300;

    line-height: 1.2;
    letter-spacing: -1.2px;
}

.solution-section-heading p {
    max-width: 690px;

    margin: 0 auto;

    color: #667e90;

    font-size: 13px;
    font-weight: 300;

    line-height: 1.75;
}


/* =========================================================
   MOBILE UNIT
========================================================= */

.mobile-unit {
    padding: 80px 5%;

    background: #ffffff;
}

.mobile-unit-info {
    width: min(1050px, 95%);

    margin: 55px auto 0;

    padding: 42px 50px;

    display: grid;
    grid-template-columns: 230px 1fr;

    align-items: center;

    gap: 55px;

    border-top: 1px solid #d4e4ed;
    border-bottom: 1px solid #d4e4ed;
}


/* 42 FT */

.unit-number {
    display: flex;
    align-items: flex-end;

    color: #08639e;
}

.unit-number strong {
    font-size: 100px;
    font-weight: 200;

    line-height: 0.8;

    letter-spacing: -6px;
}

.unit-number span {
    margin-left: 10px;

    font-size: 26px;
    font-weight: 300;
}


/* DESCRIPTION */

.unit-label {
    display: block;

    margin-bottom: 10px;

    color: #0865a1;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 2.1px;
    text-transform: uppercase;
}

.unit-description h3 {
    margin: 0 0 12px;

    color: #123f66;

    font-size: 25px;
    font-weight: 300;
}

.unit-description p {
    max-width: 630px;

    margin: 0;

    color: #677e8f;

    font-size: 13px;
    font-weight: 300;

    line-height: 1.7;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.solution-process {
    padding: 80px 5%;

    background: #f4f9fc;
}

.process-grid {
    width: min(1200px, 100%);

    margin: 60px auto 0;

    display: grid;

    grid-template-columns:
        1fr 70px 1fr 70px 1fr;

    align-items: center;
}

.process-step {
    min-height: 230px;

    position: relative;

    padding: 30px;
}

.process-number {
    color: #6d8ba0;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 1.8px;

    margin-bottom: 17px;
}

.process-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dff1fb;

    color: #07639d;

    font-size: 22px;
}

.process-step h3 {
    margin: 0 0 11px;

    color: #123f66;

    font-size: 18px;
    font-weight: 400;
}

.process-step p {
    margin: 0;

    color: #667e90;

    font-size: 12px;
    font-weight: 300;

    line-height: 1.7;
}

.process-arrow {
    color: #08639e;

    font-size: 31px;
    font-weight: 200;

    text-align: center;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.solution-capabilities {
    padding: 32px 5%;

    background: #ffffff;

    border-top: 1px solid #dce9f0;
    border-bottom: 1px solid #dce9f0;
}

.capability-title {
    width: min(1420px, 100%);

    margin: 0 auto 25px;
}

.capability-title span {
    color: #08639e;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 2.3px;
    text-transform: uppercase;
}

.solution-capability-list {
    width: min(1420px, 100%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.solution-capability {
    min-height: 65px;

    padding: 0 28px;

    display: flex;
    align-items: center;

    gap: 14px;

    border-right: 1px solid #d6e4ed;
}

.solution-capability:first-child {
    padding-left: 0;
}

.solution-capability:last-child {
    border-right: none;
}

.capability-symbol {
    color: #0865a1;

    font-size: 20px;
}

.solution-capability strong {
    display: block;

    color: #123f66;

    font-size: 13px;
    font-weight: 400;
}

.solution-capability small {
    display: block;

    margin-top: 5px;

    color: #7a8f9e;

    font-size: 9px;
    font-weight: 300;
}


/* =========================================================
   PARTNER CTA
========================================================= */

.solution-partner-cta {
    padding: 48px max(5%, calc((100vw - 1420px) / 2));

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    background: #075781;

    color: #ffffff;
}

.solution-partner-cta>div {
    max-width: 760px;
}

.solution-partner-cta>div>span {
    display: block;

    margin-bottom: 9px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 2.1px;
    text-transform: uppercase;
}

.solution-partner-cta h2 {
    margin: 0 0 9px;

    color: #ffffff;

    font-size: 29px;
    font-weight: 300;

    line-height: 1.25;
}

.solution-partner-cta p {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 12px;
    font-weight: 300;

    line-height: 1.6;
}

.solution-partner-button {
    min-width: 185px;
    min-height: 52px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    background: #ffffff;

    color: #075781;

    text-decoration: none;

    border-radius: 4px;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.solution-partner-button:hover {
    transform: translateY(-2px);

    background: #edf7fc;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .solution-hero {
        grid-template-columns: 1fr;
    }

    .solution-hero-copy {
        padding: 70px 6%;
    }

    .solution-hero-image {
        padding: 0 6% 50px;
    }

    .solution-hero-image img {
        height: auto;
    }

    .mobile-unit-info {
        grid-template-columns: 1fr;
    }

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

    .process-arrow {
        transform: rotate(90deg);

        padding: 10px 0;
    }

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

    .solution-capability {
        border-bottom: 1px solid #d6e4ed;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .solution-hero-copy h1 {
        font-size: 44px;
    }

    .mobile-unit {
        padding: 60px 6%;
    }

    .mobile-unit-info {
        padding: 35px 0;
    }

    .unit-number strong {
        font-size: 80px;
    }

    .solution-process {
        padding: 60px 6%;
    }

    .solution-capability-list {
        grid-template-columns: 1fr;
    }

    .solution-capability {
        padding: 20px 0;

        border-right: none;
    }

    .solution-partner-cta {
        padding: 45px 6%;

        flex-direction: column;
        align-items: flex-start;
    }

}

/* =====================================
   SOLUTION PAGE – LOWER SECTIONS
===================================== */

.solution-showcase,
.solution-pillars,
.solution-capabilities,
.solution-partner-cta {
    width: 100%;
}

/* ---------- LOWER SHOWCASE ---------- */
.solution-showcase {
    background: #ffffff;
    padding: 50px 0 30px;
}

.solution-showcase-container {
    width: min(1420px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-showcase-image {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #f7fbff;
    border: 1px solid #dbe7f2;
    border-radius: 24px;
    padding: 34px;
    min-height: 360px;
}

.solution-showcase-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    object-fit: contain;
}

.solution-showcase-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-mini-label {
    display: inline-block;
    margin-bottom: 18px;

    color: #0f63a9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.solution-showcase-copy h2 {
    margin: 0 0 18px;

    color: #123d77;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;
}

.solution-showcase-copy p {
    margin: 0;
    max-width: 620px;

    color: #4e6781;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 300;
}

/* ---------- PILLARS ---------- */
.solution-pillars {
    background: #f5f9fd;
    padding: 35px 0 40px;
}

.solution-pillars-container {
    width: min(1420px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.pillar-card {
    background: #ffffff;
    border: 1px solid #d9e6f2;
    border-radius: 20px;
    padding: 28px 24px;
    min-height: 250px;
}

.pillar-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8f2fb;
    color: #0f63a9;
    font-size: 26px;
    margin-bottom: 22px;
}

.pillar-card h3 {
    margin: 0 0 14px;

    color: #123d77;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
}

.pillar-card p {
    margin: 0;

    color: #617b96;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 300;
}

/* ---------- CAPABILITIES ---------- */
.solution-capabilities {
    background: #ffffff;
    padding: 28px 0 30px;
    border-top: 1px solid #dbe7f2;
}

.solution-capabilities-container {
    width: min(1420px, 92%);
    margin: 0 auto;
}

.capabilities-header {
    margin-bottom: 18px;
}

.capabilities-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    align-items: center;
}

.capability-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 58px;
    padding: 14px 16px;

    border: 1px solid #dbe7f2;
    border-radius: 16px;
    background: #f8fbfe;

    color: #123d77;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.capability-icon {
    font-size: 20px;
}

/* ---------- PARTNER CTA ---------- */
.solution-partner-cta {
    background: linear-gradient(135deg, #0b4f87 0%, #0e629f 100%);
    padding: 34px 0;
}

.solution-partner-cta-container {
    width: min(1420px, 92%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.partner-cta-text h2 {
    margin: 0 0 8px;

    color: #ffffff;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 600;
}

.partner-cta-text p {
    margin: 0;

    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
}

.partner-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: #ffffff;
    color: #0f63a9;
    text-decoration: none;

    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.25s ease;
}

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

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 1100px) {
    .solution-showcase-container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .solution-showcase-copy h2 {
        font-size: 38px;
    }

    .solution-pillars-container {
        grid-template-columns: 1fr;
    }

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

    .solution-partner-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .solution-showcase {
        padding: 35px 0 20px;
    }

    .solution-showcase-image {
        min-height: 260px;
        padding: 20px;
    }

    .solution-showcase-copy h2 {
        font-size: 30px;
    }

    .solution-showcase-copy p,
    .pillar-card p,
    .partner-cta-text p {
        font-size: 15px;
    }

    .pillar-card h3 {
        font-size: 22px;
    }

    .capabilities-row {
        grid-template-columns: 1fr;
    }

    .partner-cta-text h2 {
        font-size: 28px;
    }

    .partner-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   SOLUTION PAGE
========================================================= */

.solution-page {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.solution-hero {
    min-height: 515px;

    display: grid;
    grid-template-columns: 42% 58%;

    background: #f1f7fb;
}

.solution-hero-copy {
    padding-left: max(5%, calc((100vw - 1420px) / 2));
    padding-right: 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-label {
    display: block;

    color: #08639e;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2.7px;
    text-transform: uppercase;
}

.solution-hero-copy .solution-label {
    margin-bottom: 24px;
}

.solution-hero-copy h1 {
    max-width: 590px;

    margin: 0 0 28px;

    color: #123f66;

    font-size: clamp(48px, 4.5vw, 68px);
    font-weight: 300;

    line-height: 1.04;

    letter-spacing: -2.3px;
}

.solution-hero-copy h1 span {
    display: block;

    color: #08639e;
}

.solution-hero-copy>p {
    max-width: 540px;

    margin: 0;

    color: #61798b;

    font-size: 15px;
    font-weight: 300;

    line-height: 1.75;
}

.solution-hero-detail {
    margin-top: 42px;

    display: flex;
    align-items: center;

    gap: 15px;
}

.solution-hero-detail>span {
    width: 40px;
    height: 1px;

    background: #08639e;
}

.solution-hero-detail small {
    color: #58758a;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 2.1px;
    text-transform: uppercase;
}


/* IMAGE */

.solution-hero-image {
    min-width: 0;

    padding: 24px 18px 24px 0;

    display: flex;
    align-items: center;
}

.solution-hero-image img {
    width: 100%;
    height: 100%;

    max-height: 467px;

    object-fit: cover;
    object-position: center;

    display: block;
}


/* =========================================================
   MOBILE UNIT
========================================================= */

.solution-unit {
    padding: 65px 5%;

    background: #ffffff;
}

.solution-unit-container {
    width: min(1280px, 100%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: 58% 42%;

    align-items: center;

    gap: 65px;
}

.solution-unit-visual {
    min-height: 360px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: none;
}

.solution-unit-visual img {
    width: 100%;
    max-height: 380px;

    object-fit: contain;
    display: block;
}

.solution-unit-copy .solution-label {
    margin-bottom: 20px;
}

.solution-unit-number {
    margin-bottom: 18px;

    display: flex;
    align-items: flex-end;

    color: #08639e;
}

.solution-unit-number strong {
    font-size: 96px;
    font-weight: 200;

    line-height: 0.8;

    letter-spacing: -6px;
}

.solution-unit-number span {
    margin-left: 10px;

    font-size: 25px;
    font-weight: 300;
}

.solution-unit-copy h2 {
    margin: 0 0 15px;

    color: #123f66;

    font-size: 35px;
    font-weight: 300;

    line-height: 1.2;

    letter-spacing: -1px;
}

.solution-unit-copy p {
    max-width: 560px;

    margin: 0;

    color: #687f90;

    font-size: 14px;
    font-weight: 300;

    line-height: 1.75;
}


/* =========================================================
   THREE EXPLORATION ITEMS
========================================================= */

.solution-explore {
    padding: 55px 5%;

    background: #f4f9fc;
}

.solution-explore-container {
    width: min(1240px, 100%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.solution-explore-item {
    min-height: 300px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #d8e6ee;

    color: inherit;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.solution-explore-item:hover {
    transform: translateY(-5px);

    border-color: #accfe1;

    box-shadow: 0 14px 35px rgba(17, 64, 100, 0.06);
}

.solution-explore-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e3f2fa;

    color: #07629d;
}

.solution-explore-icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-explore-item>span {
    margin-bottom: 8px;

    color: #7890a1;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 1.8px;
}

.solution-explore-item h3 {
    margin: 0 0 13px;

    color: #123f66;

    font-size: 19px;
    font-weight: 400;
}

.solution-explore-item p {
    margin: 0 0 25px;

    color: #687f90;

    font-size: 12px;
    font-weight: 300;

    line-height: 1.7;
}

.solution-explore-item strong {
    margin-top: auto;

    color: #08639e;

    font-size: 11px;
    font-weight: 500;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.solution-capabilities {
    padding: 48px 5%;

    background: #ffffff;
}

.solution-capabilities-container {
    width: min(1420px, 100%);

    margin: 0 auto;
}

.solution-capabilities-heading {
    margin-bottom: 34px;

    text-align: center;
}

.solution-capabilities-heading .solution-label {
    margin-bottom: 13px;
}

.solution-capabilities-heading h2 {
    margin: 0;

    color: #123f66;

    font-size: 30px;
    font-weight: 300;

    letter-spacing: -0.7px;
}

.solution-capabilities-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid #d7e5ed;
    border-bottom: 1px solid #d7e5ed;
}

.solution-capability {
    min-height: 145px;

    padding: 28px 22px;

    display: flex;
    align-items: flex-start;

    gap: 15px;

    border-right: 1px solid #d7e5ed;
}

.solution-capability:last-child {
    border-right: none;
}

.solution-capability-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e5f3fa;

    color: #07629d;
}

.solution-capability-icon svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-capability h3 {
    margin: 3px 0 7px;

    color: #123f66;

    font-size: 14px;
    font-weight: 400;
}

.solution-capability p {
    margin: 0;

    color: #718797;

    font-size: 10.5px;
    font-weight: 300;

    line-height: 1.6;
}


/* =========================================================
   PARTNER CTA
========================================================= */

.solution-partner-copy>span {
    color: #0b6798;
}

.solution-partner-copy h2 {
    color: #123f66;
}

.solution-partner-copy p {
    color: #5f7789;
}

.solution-partner-container {
    width: min(1420px, 100%);

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

.solution-partner-copy {
    max-width: 830px;
}

.solution-partner-copy>span {
    display: block;

    margin-bottom: 9px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.solution-partner-copy h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 29px;
    font-weight: 300;

    line-height: 1.3;
}

.solution-partner-copy p {
    margin: 0;

    color: rgba(255, 255, 255, 0.66);

    font-size: 12px;
    font-weight: 300;

    line-height: 1.6;
}

.solution-partner-button {
    min-width: 190px;
    min-height: 52px;

    padding: 0 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    background: #ffffff;

    color: #075781;

    text-decoration: none;

    border-radius: 4px;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.solution-partner-button:hover {
    transform: translateY(-2px);

    background: #edf7fc;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .solution-hero {
        grid-template-columns: 1fr;
    }

    .solution-hero-copy {
        padding: 70px 6%;
    }

    .solution-hero-image {
        padding: 0 6% 50px;
    }

    .solution-hero-image img {
        height: auto;
    }

    .solution-unit-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .solution-explore-container {
        grid-template-columns: 1fr;
    }

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

    .solution-capability {
        border-bottom: 1px solid #d7e5ed;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .solution-hero-copy h1 {
        font-size: 44px;
    }

    .solution-unit {
        padding: 50px 6%;
    }

    .solution-unit-visual {
        min-height: 250px;
    }

    .solution-unit-number strong {
        font-size: 78px;
    }

    .solution-explore {
        padding: 45px 6%;
    }

    .solution-capabilities {
        padding: 45px 6%;
    }

    .solution-capabilities-row {
        grid-template-columns: 1fr;
    }

    .solution-capability {
        border-right: none;
    }

    .solution-partner {
        padding: 42px 6%;
    }

    .solution-partner-container {
        flex-direction: column;
        align-items: flex-start;

        gap: 28px;
    }

}

/* =========================================================
   SOLUTION PAGE ANIMATIONS
========================================================= */


/* HERO — RUNS WHEN PAGE OPENS */

.solution-hero-copy {
    animation:
        solutionHeroCopyIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.solution-hero-image {
    animation:
        solutionHeroImageIn 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}


@keyframes solutionHeroCopyIn {

    from {
        opacity: 0;
        transform: translateX(-70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes solutionHeroImageIn {

    from {
        opacity: 0;
        transform: translateX(85px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =========================================================
   SCROLL REVEAL — STARTING STATES
========================================================= */

body.solution-animations-ready .solution-unit-visual {
    opacity: 0;
    transform: translateX(-70px);
}

body.solution-animations-ready .solution-unit-copy {
    opacity: 0;
    transform: translateX(70px);
}

body.solution-animations-ready .solution-explore-item {
    opacity: 0;
    transform: translateY(35px);
}

body.solution-animations-ready .solution-capabilities-heading {
    opacity: 0;
    transform: translateY(25px);
}

body.solution-animations-ready .solution-capability {
    opacity: 0;
    transform: translateY(28px);
}

body.solution-animations-ready .solution-partner-container {
    opacity: 0;
    transform: translateY(30px);
}


/* =========================================================
   TRANSITION TIMING
========================================================= */

body.solution-animations-ready .solution-unit-visual,
body.solution-animations-ready .solution-unit-copy,
body.solution-animations-ready .solution-explore-item,
body.solution-animations-ready .solution-capabilities-heading,
body.solution-animations-ready .solution-capability,
body.solution-animations-ready .solution-partner-container {

    transition:
        opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}


/* TRUCK + 42 FT */

body.solution-animations-ready .solution-unit-visual {
    transition-duration: 1.45s;
}

body.solution-animations-ready .solution-unit-copy {
    transition-duration: 1.35s;
}


/* THREE EXPLORE CARDS */

body.solution-animations-ready .solution-explore-item:nth-child(1) {
    transition-delay: 0.05s;
}

body.solution-animations-ready .solution-explore-item:nth-child(2) {
    transition-delay: 0.16s;
}

body.solution-animations-ready .solution-explore-item:nth-child(3) {
    transition-delay: 0.27s;
}


/* FIVE CAPABILITIES */

body.solution-animations-ready .solution-capability:nth-child(1) {
    transition-delay: 0.04s;
}

body.solution-animations-ready .solution-capability:nth-child(2) {
    transition-delay: 0.11s;
}

body.solution-animations-ready .solution-capability:nth-child(3) {
    transition-delay: 0.18s;
}

body.solution-animations-ready .solution-capability:nth-child(4) {
    transition-delay: 0.25s;
}

body.solution-animations-ready .solution-capability:nth-child(5) {
    transition-delay: 0.32s;
}


/* =========================================================
   VISIBLE STATE
========================================================= */

body.solution-animations-ready .solution-unit-visual.is-visible,
body.solution-animations-ready .solution-unit-copy.is-visible,
body.solution-animations-ready .solution-explore-item.is-visible,
body.solution-animations-ready .solution-capabilities-heading.is-visible,
body.solution-animations-ready .solution-capability.is-visible,
body.solution-animations-ready .solution-partner-container.is-visible {

    opacity: 1;
    transform: none;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .solution-hero-copy,
    .solution-hero-image,
    .solution-unit-visual,
    .solution-unit-copy,
    .solution-explore-item,
    .solution-capabilities-heading,
    .solution-capability,
    .solution-partner-container {

        animation: none !important;
        transition: none !important;

        opacity: 1 !important;
        transform: none !important;
    }

}

/* =====================================
   FINAL PARTNERSHIP CTA OVERRIDE
===================================== */

.solution-partner {
    background: #dceef8;
    padding: 34px 5%;
    border-bottom: 1px solid #c6deeb;
}

.solution-partner-copy>span {
    color: #0b6798;
}

.solution-partner-copy h2 {
    color: #123f66;
}

.solution-partner-copy p {
    color: #5f7789;
}

.solution-partner-button {
    background: #075781;
    color: #ffffff;

    border: 1px solid #075781;
}

.solution-partner-button:hover {
    background: #0b6798;
    color: #ffffff;
}

/* =========================================================
   HOW IT WORKS PAGE
========================================================= */

.how-page {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.how-hero {
    min-height: 520px;

    display: grid;
    grid-template-columns: 42% 58%;

    background: #f1f7fb;
}


/* HERO COPY */

.how-hero-copy {
    padding-left: max(5%, calc((100vw - 1420px) / 2));
    padding-right: 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.how-label {
    display: block;

    color: #08639e;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2.7px;
    text-transform: uppercase;
}

.how-hero-copy .how-label {
    margin-bottom: 24px;
}

.how-hero-copy h1 {
    margin: 0 0 28px;

    color: #123f66;

    font-size: clamp(48px, 4.4vw, 68px);
    font-weight: 300;

    line-height: 1.05;

    letter-spacing: -2px;
}

.how-hero-copy h1 span {
    display: block;

    color: #08639e;
}

.how-hero-copy>p {
    max-width: 550px;

    margin: 0;

    color: #61798b;

    font-size: 15px;
    font-weight: 300;

    line-height: 1.75;
}


/* SMALL HERO DETAIL */

.how-hero-detail {
    margin-top: 42px;

    display: flex;
    align-items: center;

    gap: 15px;
}

.how-hero-detail>span {
    width: 40px;
    height: 1px;

    background: #08639e;
}

.how-hero-detail small {
    color: #59768a;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 2.1px;
    text-transform: uppercase;
}


/* HERO IMAGE */

.how-hero-image {
    min-width: 0;

    padding: 24px 18px 24px 0;

    display: flex;
    align-items: center;
}

.how-hero-image img {
    width: 100%;
    height: 100%;

    max-height: 470px;

    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: 3px;
}


/* =========================================================
   CARE JOURNEY
========================================================= */

.care-journey {
    padding: 75px 5% 80px;

    background: #ffffff;
}

.care-journey-heading {
    width: min(820px, 100%);

    margin: 0 auto 55px;

    text-align: center;
}

.care-journey-heading .how-label {
    margin-bottom: 14px;
}

.care-journey-heading h2 {
    margin: 0 0 15px;

    color: #123f66;

    font-size: 39px;
    font-weight: 300;

    line-height: 1.2;

    letter-spacing: -1px;
}

.care-journey-heading p {
    margin: 0 auto;

    max-width: 650px;

    color: #6c8292;

    font-size: 13px;
    font-weight: 300;

    line-height: 1.7;
}


/* =========================================================
   CARE STEPS
========================================================= */

.care-steps {
    width: min(1420px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 32px 1fr 32px 1fr 32px 1fr 32px 1fr 32px 1fr;

    align-items: center;
}

.care-step {
    min-height: 285px;

    padding: 25px 20px;

    border: 1px solid #d7e5ed;

    background: #ffffff;
}

.care-number {
    display: block;

    margin-bottom: 16px;

    color: #7c94a5;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 1.6px;
}

.care-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e4f2fa;

    color: #07639e;
}

.care-icon svg {
    width: 24px;
    height: 24px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.care-step h3 {
    margin: 0 0 12px;

    color: #123f66;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.3;
}

.care-step p {
    margin: 0;

    color: #6a8192;

    font-size: 11px;
    font-weight: 300;

    line-height: 1.65;
}

.care-arrow {
    text-align: center;

    color: #08639e;

    font-size: 25px;
    font-weight: 200;
}


/* =========================================================
   STATEMENT BAND
========================================================= */

.how-statement {
    padding: 55px 5%;

    background: #e5f2f9;
}

.how-statement-container {
    width: min(1100px, 100%);

    margin: 0 auto;

    display: flex;
    align-items: flex-start;

    gap: 30px;
}

.statement-mark {
    color: #63add7;

    font-size: 72px;
    font-weight: 300;

    line-height: 0.8;
}

.how-statement h2 {
    max-width: 900px;

    margin: 0;

    color: #123f66;

    font-size: 32px;
    font-weight: 300;

    line-height: 1.4;

    letter-spacing: -0.7px;
}


/* =========================================================
   NEXT STEP
========================================================= */

.how-next {
    padding: 42px 5%;

    background: #ffffff;
}

.how-next-container {
    width: min(1420px, 100%);

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.how-next .how-label {
    margin-bottom: 10px;
}

.how-next h2 {
    margin: 0;

    color: #123f66;

    font-size: 28px;
    font-weight: 300;
}

.how-next-actions {
    display: flex;

    gap: 12px;
}

.how-primary-btn,
.how-secondary-btn {
    min-height: 50px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 500;

    transition: 0.25s ease;
}

.how-primary-btn {
    background: #075781;

    color: #ffffff;
}

.how-secondary-btn {
    border: 1px solid #075781;

    color: #075781;

    background: transparent;
}

.how-primary-btn:hover,
.how-secondary-btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .how-hero {
        grid-template-columns: 1fr;
    }

    .how-hero-copy {
        padding: 70px 6%;
    }

    .how-hero-image {
        padding: 0 6% 50px;
    }

    .how-hero-image img {
        height: auto;
    }


    .care-steps {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }

    .care-arrow {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .how-hero-copy h1 {
        font-size: 43px;
    }

    .care-journey {
        padding: 55px 6%;
    }

    .care-journey-heading h2 {
        font-size: 32px;
    }

    .care-steps {
        grid-template-columns: 1fr;
    }

    .care-step {
        min-height: auto;
    }

    .how-statement {
        padding: 45px 6%;
    }

    .how-statement h2 {
        font-size: 25px;
    }

    .how-next {
        padding: 40px 6%;
    }

    .how-next-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .how-next-actions {
        width: 100%;

        flex-direction: column;
    }

    .how-primary-btn,
    .how-secondary-btn {
        width: 100%;
    }

}

/* =========================================================
   MAIN NAVIGATION + OUR SOLUTION DROPDOWN
========================================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 38px;
}


/* MAIN LINKS */

.main-nav>a,
.solution-parent {
    position: relative;

    color: #244c69;

    font-size: 13px;
    font-weight: 400;

    text-decoration: none;

    white-space: nowrap;

    transition: color 0.2s ease;
}

.main-nav>a:hover,
.solution-parent:hover {
    color: #08639e;
}


/* ACTIVE MAIN LINK */

.main-nav>a.active,
.solution-parent.active {
    color: #08639e;
}


/* LITTLE ACTIVE LINE */

.main-nav>a::after,
.solution-parent::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -12px;

    height: 2px;

    background: #08639e;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.25s ease;
}

.main-nav>a.active::after,
.solution-parent.active::after {
    transform: scaleX(1);
}


/* =========================================================
   DROPDOWN WRAPPER
========================================================= */

.nav-dropdown {
    position: relative;

    display: flex;
    align-items: center;
}


/* TEXT + ARROW */

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
}


/* =========================================================
   CHEVRON
========================================================= */

.solution-menu-toggle {
    width: 24px;
    height: 24px;

    margin-left: 3px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;

    border: none;

    cursor: pointer;
}

.solution-menu-toggle span {
    width: 6px;
    height: 6px;

    border-right: 1.5px solid #315b78;
    border-bottom: 1.5px solid #315b78;

    transform: rotate(45deg) translateY(-2px);

    transition:
        transform 0.22s ease,
        border-color 0.22s ease;
}

.solution-menu-toggle:hover span {
    border-color: #08639e;
}


/* =========================================================
   DROPDOWN
========================================================= */

.solution-dropdown-menu {
    position: absolute;

    top: calc(100% + 18px);
    left: 50%;

    width: 225px;

    padding: 8px;

    background: #ffffff;

    border: 1px solid #dce7ee;

    box-shadow:
        0 16px 40px rgba(18, 63, 102, 0.12);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform: translate(-50%, 8px);

    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;

    z-index: 2000;
}


/* DROPDOWN LINKS */

.solution-dropdown-menu a {
    display: block;

    width: 100%;

    padding: 12px 14px;

    color: #3c6078;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}


/* REMOVE MAIN NAV UNDERLINE INSIDE DROPDOWN */

.solution-dropdown-menu a::after {
    display: none !important;
}


/* DROPDOWN HOVER */

.solution-dropdown-menu a:hover {
    background: #f2f7fa;

    color: #08639e;
}


/* CURRENT SUBPAGE */

.solution-dropdown-menu a.sub-active {
    background: #eaf4fa;

    color: #08639e;

    font-weight: 500;
}


/* =========================================================
   OPEN DROPDOWN
========================================================= */

.nav-dropdown:hover .solution-dropdown-menu,
.nav-dropdown:focus-within .solution-dropdown-menu,
.nav-dropdown.dropdown-open .solution-dropdown-menu {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform: translate(-50%, 0);
}


/* CHEVRON ROTATION */

.nav-dropdown:hover .solution-menu-toggle span,
.nav-dropdown:focus-within .solution-menu-toggle span,
.nav-dropdown.dropdown-open .solution-menu-toggle span {
    transform: rotate(225deg) translate(-1px, -1px);
}

/* =========================================================
   FIX DROPDOWN HOVER GAP
========================================================= */

.solution-dropdown-menu {
    top: 100% !important;
}


/* Give the dropdown a small invisible hover bridge */
.solution-dropdown-menu::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    top: -14px;

    height: 14px;

    background: transparent;
}

/* =========================================================
   HOW IT WORKS — ANIMATIONS
========================================================= */


/* =====================================
   HERO — PAGE LOAD
===================================== */

.how-hero-copy {
    animation:
        howHeroCopyIn 1.45s cubic-bezier(.22, 1, .36, 1) both;
}


.how-hero-image {
    animation:
        howHeroImageIn 1.7s cubic-bezier(.22, 1, .36, 1) .08s both;
}


@keyframes howHeroCopyIn {

    from {
        opacity: 0;
        transform: translateX(-65px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes howHeroImageIn {

    from {
        opacity: 0;
        transform: translateX(80px) scale(1.025);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

}



/* =========================================================
   SCROLL REVEALS
   Only hidden after JavaScript confirms animations are ready
========================================================= */


/* CARE JOURNEY HEADING */

body.how-animations-ready .care-journey-heading {
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity .8s cubic-bezier(.22, 1, .36, 1),
        transform .8s cubic-bezier(.22, 1, .36, 1);
}


/* JOURNEY CARDS */

body.how-animations-ready .care-step {
    opacity: 0;
    transform: translateY(38px);

    transition:
        opacity .75s cubic-bezier(.22, 1, .36, 1),
        transform .75s cubic-bezier(.22, 1, .36, 1),
        border-color .25s ease,
        box-shadow .25s ease;
}


/* ARROWS */

body.how-animations-ready .care-arrow {
    opacity: 0;
    transform: translateX(-10px);

    transition:
        opacity .6s ease,
        transform .6s cubic-bezier(.22, 1, .36, 1);
}


/* STATEMENT */

body.how-animations-ready .how-statement-container {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity .85s cubic-bezier(.22, 1, .36, 1),
        transform .85s cubic-bezier(.22, 1, .36, 1);
}


/* FINAL CTA */

body.how-animations-ready .how-next-container {
    opacity: 0;
    transform: translateY(26px);

    transition:
        opacity .8s cubic-bezier(.22, 1, .36, 1),
        transform .8s cubic-bezier(.22, 1, .36, 1);
}



/* =========================================================
   VISIBLE STATE
========================================================= */

body.how-animations-ready .care-journey-heading.is-visible,
body.how-animations-ready .care-step.is-visible,
body.how-animations-ready .care-arrow.is-visible,
body.how-animations-ready .how-statement-container.is-visible,
body.how-animations-ready .how-next-container.is-visible {

    opacity: 1;
    transform: none;
}



/* =========================================================
   STAGGER THE SIX JOURNEY CARDS
========================================================= */

body.how-animations-ready .care-step:nth-of-type(1) {
    transition-delay: .03s;
}

body.how-animations-ready .care-step:nth-of-type(2) {
    transition-delay: .08s;
}

body.how-animations-ready .care-step:nth-of-type(3) {
    transition-delay: .13s;
}

body.how-animations-ready .care-step:nth-of-type(4) {
    transition-delay: .18s;
}

body.how-animations-ready .care-step:nth-of-type(5) {
    transition-delay: .23s;
}

body.how-animations-ready .care-step:nth-of-type(6) {
    transition-delay: .28s;
}



/* =========================================================
   CARD HOVER
========================================================= */

.care-step:hover {
    transform: translateY(-5px);

    border-color: #b7d5e6;

    box-shadow:
        0 16px 35px rgba(18, 63, 102, .08);
}


.care-step:hover .care-icon {
    transform: scale(1.06);
}


.care-icon {
    transition:
        transform .25s ease,
        background .25s ease;
}



/* =========================================================
   BUTTON MICRO-ANIMATION
========================================================= */

.how-primary-btn span {
    display: inline-block;

    transition: transform .25s ease;
}


.how-primary-btn:hover span {
    transform: translateX(5px);
}



/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .how-hero-copy,
    .how-hero-image {
        animation: none !important;
    }

    body.how-animations-ready .care-journey-heading,
    body.how-animations-ready .care-step,
    body.how-animations-ready .care-arrow,
    body.how-animations-ready .how-statement-container,
    body.how-animations-ready .how-next-container {

        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .care-step,
    .care-icon,
    .how-primary-btn span {
        transition: none !important;
    }

}

/* =========================================================
   TECHNOLOGY PAGE — FINAL LAYOUT
========================================================= */

.technology-main {
    width: 100%;
    overflow: hidden;

    background: #ffffff;
}


/* =========================================================
   OVERVIEW
========================================================= */

.tech-overview {
    padding: 68px 5% 55px;

    background:
        linear-gradient(180deg,
            #f7fbfe 0%,
            #ffffff 45%);
}


.tech-top {
    width: min(1420px, 100%);

    margin: 0 auto 34px;

    display: grid;
    grid-template-columns: minmax(420px, 1.05fr) 1fr;

    gap: 65px;

    align-items: center;
}


/* =========================================================
   HEADING
========================================================= */

.tech-eyebrow {
    display: block;

    margin-bottom: 15px;

    color: #08639e;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}


.tech-heading h1 {
    margin: 0 0 22px;

    color: #123f66;

    font-size: clamp(48px, 5vw, 68px);
    font-weight: 300;

    line-height: 1.05;

    letter-spacing: -2px;
}


.tech-heading h1 span {
    display: block;

    color: #08639e;
}


.tech-heading>p {
    max-width: 670px;

    margin: 0;

    color: #637c8f;

    font-size: 14px;
    font-weight: 300;

    line-height: 1.75;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.tech-feature-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}


.tech-feature-card {
    min-height: 195px;

    padding: 22px 17px;

    background: rgba(255, 255, 255, .86);

    border: 1px solid #d8e7ef;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.tech-feature-card:hover {
    transform: translateY(-5px);

    border-color: #b7d7e8;

    box-shadow:
        0 15px 34px rgba(18, 63, 102, .07);
}


.tech-feature-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e3f2fa;

    color: #0872ae;
}


.tech-feature-icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.tech-feature-card h3 {
    margin: 0 0 9px;

    color: #123f66;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.3;
}


.tech-feature-card p {
    margin: 0;

    color: #688094;

    font-size: 10.5px;
    font-weight: 300;

    line-height: 1.55;
}


/* =========================================================
   MAIN VISUALS
========================================================= */

.tech-showcase {
    width: min(1420px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr) minmax(0, .95fr);

    gap: 18px;
}


.tech-visual-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #d8e7ef;
}


/* =========================================================
   CONSULTATION IMAGE
========================================================= */

.tech-image-wrap {
    width: 100%;
    height: 440px;

    overflow: hidden;
}


.tech-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}


.tech-interior-card:hover .tech-image-wrap img {
    transform: scale(1.025);
}


/* CAPTION */

.tech-visual-caption {
    min-height: 90px;

    padding: 20px 24px;

    display: flex;
    align-items: flex-start;

    gap: 18px;
}


.tech-visual-caption>span {
    color: #08639e;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2px;
}


.tech-visual-caption h3 {
    margin: 0 0 6px;

    color: #123f66;

    font-size: 17px;
    font-weight: 400;
}


.tech-visual-caption p {
    margin: 0;

    color: #6a8192;

    font-size: 11px;
    font-weight: 300;

    line-height: 1.55;
}


/* =========================================================
   LAYOUT IMAGE
========================================================= */

.tech-layout-card {
    padding: 25px;
}


.tech-card-heading {
    margin-bottom: 20px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;
}


.tech-card-heading .tech-eyebrow {
    margin-bottom: 8px;
}


.tech-card-heading h2 {
    margin: 0;

    color: #123f66;

    font-size: 27px;
    font-weight: 300;

    letter-spacing: -.7px;
}


.tech-small-note {
    color: #6c8ea4;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 2px;

    line-height: 1.7;

    text-align: right;

    text-transform: uppercase;
}


.tech-layout-image {
    height: 440px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.tech-layout-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}


.tech-layout-card:hover .tech-layout-image img {
    transform: scale(1.025);
}


/* =========================================================
   PURPOSE / STORY
========================================================= */

.tech-purpose {
    padding: 45px 5% 55px;

    background: #ffffff;
}


.tech-purpose-container {
    width: min(1420px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    border-top: 1px solid #d8e7ef;
}


.tech-purpose-block {
    padding: 38px 45px 10px 0;

    display: grid;

    grid-template-columns: 74px 1fr;

    gap: 25px;
}


.tech-purpose-block+.tech-purpose-block {
    padding-left: 45px;

    border-left: 1px solid #d8e7ef;
}


.tech-purpose-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e5f3fa;

    color: #0870aa;
}


.tech-purpose-icon svg {
    width: 29px;
    height: 29px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.tech-purpose-block .tech-eyebrow {
    margin-bottom: 8px;
}


.tech-purpose-block h2 {
    margin: 0 0 13px;

    color: #123f66;

    font-size: 25px;
    font-weight: 300;

    line-height: 1.3;
}


.tech-purpose-block p {
    max-width: 570px;

    margin: 0;

    color: #60798b;

    font-size: 12px;
    font-weight: 300;

    line-height: 1.7;
}


.tech-purpose-block .tech-purpose-quote {
    margin-bottom: 12px;

    color: #08639e;

    font-style: italic;

    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .tech-top {
        grid-template-columns: 1fr;
    }

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

    .tech-showcase {
        grid-template-columns: 1fr;
    }

    .tech-image-wrap,
    .tech-layout-image {
        height: auto;
    }

    .tech-image-wrap img,
    .tech-layout-image img {
        height: auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .tech-overview {
        padding: 55px 6% 40px;
    }

    .tech-heading h1 {
        font-size: 43px;
    }

    .tech-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tech-feature-card {
        min-height: 175px;

        padding: 18px 12px;
    }

    .tech-layout-card {
        padding: 18px;
    }

    .tech-card-heading {
        flex-direction: column;

        gap: 8px;
    }

    .tech-small-note {
        text-align: left;
    }

    .tech-purpose {
        padding: 30px 6% 45px;
    }

    .tech-purpose-container {
        grid-template-columns: 1fr;
    }

    .tech-purpose-block {
        padding: 30px 0;

        grid-template-columns: 56px 1fr;
    }

    .tech-purpose-block+.tech-purpose-block {
        padding-left: 0;

        border-left: none;
        border-top: 1px solid #d8e7ef;
    }

    .tech-purpose-icon {
        width: 48px;
        height: 48px;
    }

}

/* =========================================================
   TECHNOLOGY PAGE V2
========================================================= */

.techv2-page {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   SHARED
========================================================= */

.techv2-label {
    display: block;
    margin-bottom: 13px;

    color: #0870aa;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2.8px;
    text-transform: uppercase;
}


.techv2-heading {
    width: min(850px, 100%);

    margin: 0 auto 38px;

    text-align: center;
}


.techv2-heading h2 {
    margin: 0 0 13px;

    color: #123f66;

    font-size: 36px;
    font-weight: 300;

    line-height: 1.2;
    letter-spacing: -1px;
}


.techv2-heading h2 span {
    color: #0870aa;
}


.techv2-heading>p {
    max-width: 620px;

    margin: 0 auto;

    color: #6c8394;

    font-size: 13px;
    font-weight: 300;

    line-height: 1.7;
}



/* =========================================================
   HERO
========================================================= */

.techv2-hero {
    min-height: 500px;

    padding: 40px 5%;

    display: grid;
    grid-template-columns: 36% 64%;

    align-items: center;

    background: #f1f7fb;
}


.techv2-hero-copy {
    padding-right: 35px;
}


.techv2-hero-copy h1 {
    margin: 0 0 24px;

    color: #123f66;

    font-size: clamp(48px, 4.7vw, 67px);
    font-weight: 300;

    line-height: 1.04;

    letter-spacing: -2px;
}


.techv2-hero-copy h1 span {
    display: block;

    color: #0870aa;
}


.techv2-hero-copy>p {
    max-width: 560px;

    margin: 0;

    color: #637d90;

    font-size: 14px;
    font-weight: 300;

    line-height: 1.75;
}


.techv2-detail {
    margin-top: 33px;

    display: flex;
    align-items: center;

    gap: 14px;
}


.techv2-detail>span {
    width: 40px;
    height: 1px;

    background: #0870aa;
}


.techv2-detail small {
    color: #607c90;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* MUCH BIGGER TRUCK */

.techv2-hero-image {
    height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.techv2-hero-image img {
    width: 118%;
    max-width: 1100px;

    height: 100%;

    display: block;

    object-fit: contain;
}



/* =========================================================
   CLINICAL AREAS
========================================================= */

.techv2-areas {
    padding: 62px 5% 68px;

    background: #ffffff;
}


.techv2-area-grid {
    width: min(1215px, 100%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #d6e5ed;
    border-bottom: 1px solid #d6e5ed;
}


.techv2-area-card {
    min-height: 220px;

    padding: 27px 25px;

    border-right: 1px solid #d6e5ed;
}


.techv2-area-card:first-child {
    border-left: 1px solid #d6e5ed;
}


.techv2-card-number {
    display: block;

    margin-bottom: 15px;

    color: #7896a8;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 2px;
}


.techv2-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e4f3fa;

    color: #0870aa;
}


.techv2-icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.techv2-area-card h3,
.techv2-digital-item h3 {
    margin: 0 0 10px;

    color: #123f66;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.35;
}


.techv2-area-card p,
.techv2-digital-item p {
    margin: 0;

    color: #708798;

    font-size: 11px;
    font-weight: 300;

    line-height: 1.65;
}



/* =========================================================
   EQUIPMENT
========================================================= */

.techv2-equipment {
    padding: 62px 5% 70px;

    background: #f4f9fc;
}


.techv2-equipment-grid {
    width: min(1215px, 100%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}


.techv2-equipment-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #d6e5ed;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.techv2-equipment-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(18, 63, 102, .07);
}


.techv2-equipment-image {
    height: 205px;

    padding: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-bottom: 1px solid #e0ebf1;

    background: #ffffff;
}


.techv2-equipment-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}


.techv2-equipment-copy {
    padding: 20px 20px 23px;
}


.techv2-equipment-copy>span {
    display: block;

    margin-bottom: 10px;

    color: #7895a7;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 2px;
}


.techv2-equipment-copy h3 {
    margin: 0 0 9px;

    color: #123f66;

    font-size: 17px;
    font-weight: 400;
}


.techv2-equipment-copy p {
    margin: 0;

    color: #708798;

    font-size: 11px;
    font-weight: 300;

    line-height: 1.6;
}



/* =========================================================
   DIGITAL SYSTEMS
========================================================= */

.techv2-digital {
    padding: 62px 5% 68px;

    background: #ffffff;
}


.techv2-digital-grid {
    width: min(1215px, 100%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #d6e5ed;
    border-bottom: 1px solid #d6e5ed;
}


.techv2-digital-item {
    min-height: 220px;

    padding: 28px 25px;

    border-right: 1px solid #d6e5ed;
}


.techv2-digital-item:first-child {
    border-left: 1px solid #d6e5ed;
}



/* =========================================================
   TRUST
========================================================= */

.techv2-trust {
    padding: 44px 5%;

    background: #e6f3f9;

    text-align: center;
}


.techv2-trust .techv2-label {
    margin-bottom: 11px;
}


.techv2-trust h2 {
    margin: 0;

    color: #123f66;

    font-size: 31px;
    font-weight: 300;

    line-height: 1.3;
}


.techv2-trust h2 span {
    color: #0870aa;
}



/* =========================================================
   CTA
========================================================= */

.techv2-cta {
    padding: 36px 5%;

    background: #dceef8;

    border-bottom: 1px solid #c6deeb;
}


.techv2-cta-inner {
    width: min(1215px, 100%);

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


.techv2-cta h2 {
    margin: 0;

    color: #123f66;

    font-size: 28px;
    font-weight: 300;
}


.techv2-cta-actions {
    display: flex;

    gap: 12px;
}


.techv2-primary-btn,
.techv2-secondary-btn {
    min-height: 49px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 500;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


.techv2-primary-btn {
    color: #ffffff;

    background: #075781;

    border: 1px solid #075781;
}


.techv2-secondary-btn {
    color: #075781;

    background: transparent;

    border: 1px solid #075781;
}


.techv2-primary-btn:hover,
.techv2-secondary-btn:hover {
    transform: translateY(-2px);
}


.techv2-secondary-btn:hover {
    color: #ffffff;

    background: #075781;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .techv2-hero {
        grid-template-columns: 1fr;
    }

    .techv2-hero-copy {
        padding-right: 0;
    }

    .techv2-area-grid,
    .techv2-equipment-grid,
    .techv2-digital-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .techv2-hero {
        min-height: auto;

        padding: 50px 6%;
    }

    .techv2-hero-copy h1 {
        font-size: 43px;
    }

    .techv2-hero-image {
        height: auto;
    }

    .techv2-hero-image img {
        width: 112%;
        height: auto;
    }

    .techv2-areas,
    .techv2-equipment,
    .techv2-digital {
        padding: 50px 6%;
    }

    .techv2-heading h2 {
        font-size: 31px;
    }

    .techv2-area-grid,
    .techv2-equipment-grid,
    .techv2-digital-grid {
        grid-template-columns: 1fr;
    }

    .techv2-area-card,
    .techv2-digital-item {
        border-left: 1px solid #d6e5ed;
        border-bottom: 1px solid #d6e5ed;
    }

    .techv2-trust {
        padding: 40px 6%;
    }

    .techv2-trust h2 {
        font-size: 27px;
    }

    .techv2-cta {
        padding: 34px 6%;
    }

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

    .techv2-cta-actions {
        width: 100%;

        flex-direction: column;
    }

    .techv2-primary-btn,
    .techv2-secondary-btn {
        width: 100%;
    }

}

/* =========================================================
   TECHNOLOGY V2 — ANIMATIONS
========================================================= */


/* ---------------------------------------------------------
   HERO — PAGE LOAD
--------------------------------------------------------- */

.techv2-hero-copy {
    animation:
        techv2HeroCopyIn 1.35s cubic-bezier(.22, 1, .36, 1) both;
}


.techv2-hero-image {
    animation:
        techv2HeroTruckIn 1.65s cubic-bezier(.22, 1, .36, 1) .08s both;
}


@keyframes techv2HeroCopyIn {

    from {
        opacity: 0;
        transform: translateX(-65px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes techv2HeroTruckIn {

    from {
        opacity: 0;
        transform: translateX(85px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

}



/* =========================================================
   SCROLL REVEAL — INITIAL STATE
========================================================= */

body.techv2-animations-ready .techv2-heading,

body.techv2-animations-ready .techv2-area-card,

body.techv2-animations-ready .techv2-equipment-card,

body.techv2-animations-ready .techv2-digital-item,

body.techv2-animations-ready .techv2-trust,

body.techv2-animations-ready .techv2-cta-inner {

    opacity: 0;

    transition:
        opacity .85s cubic-bezier(.22, 1, .36, 1),
        transform .85s cubic-bezier(.22, 1, .36, 1);
}



/* HEADINGS */

body.techv2-animations-ready .techv2-heading {

    transform: translateY(28px);
}



/* CLINICAL AREA CARDS */

body.techv2-animations-ready .techv2-area-card {

    transform: translateY(35px);
}



/* EQUIPMENT */

body.techv2-animations-ready .techv2-equipment-card {

    transform:
        translateY(38px) scale(.98);
}



/* DIGITAL SYSTEM CARDS */

body.techv2-animations-ready .techv2-digital-item {

    transform: translateY(32px);
}



/* TRUST */

body.techv2-animations-ready .techv2-trust {

    transform: translateY(25px);
}



/* CTA */

body.techv2-animations-ready .techv2-cta-inner {

    transform: translateY(25px);
}



/* =========================================================
   VISIBLE STATE
========================================================= */

body.techv2-animations-ready .is-visible {

    opacity: 1;

    transform:
        translateX(0) translateY(0) scale(1);
}



/* =========================================================
   STAGGER — CLINICAL AREAS
========================================================= */

.techv2-area-card:nth-child(1) {
    transition-delay: 0s !important;
}

.techv2-area-card:nth-child(2) {
    transition-delay: .09s !important;
}

.techv2-area-card:nth-child(3) {
    transition-delay: .18s !important;
}

.techv2-area-card:nth-child(4) {
    transition-delay: .27s !important;
}



/* =========================================================
   STAGGER — EQUIPMENT
========================================================= */

.techv2-equipment-card:nth-child(1) {
    transition-delay: 0s !important;
}

.techv2-equipment-card:nth-child(2) {
    transition-delay: .09s !important;
}

.techv2-equipment-card:nth-child(3) {
    transition-delay: .18s !important;
}

.techv2-equipment-card:nth-child(4) {
    transition-delay: .27s !important;
}



/* =========================================================
   STAGGER — DIGITAL SYSTEMS
========================================================= */

.techv2-digital-item:nth-child(1) {
    transition-delay: 0s !important;
}

.techv2-digital-item:nth-child(2) {
    transition-delay: .09s !important;
}

.techv2-digital-item:nth-child(3) {
    transition-delay: .18s !important;
}

.techv2-digital-item:nth-child(4) {
    transition-delay: .27s !important;
}



/* =========================================================
   SMALL HOVER MOTION
========================================================= */

.techv2-area-card {
    transition:
        opacity .85s cubic-bezier(.22, 1, .36, 1),
        transform .85s cubic-bezier(.22, 1, .36, 1),
        background .25s ease;
}


.techv2-area-card:hover {
    background: #f5fafc;
}


.techv2-digital-item {
    transition:
        opacity .85s cubic-bezier(.22, 1, .36, 1),
        transform .85s cubic-bezier(.22, 1, .36, 1),
        background .25s ease;
}


.techv2-digital-item:hover {
    background: #f5fafc;
}



/* EQUIPMENT IMAGE MOTION */

.techv2-equipment-image img {
    transition:
        transform .45s cubic-bezier(.22, 1, .36, 1);
}


.techv2-equipment-card:hover .techv2-equipment-image img {

    transform: scale(1.045);
}



/* ICON MICRO-MOTION */

.techv2-icon {
    transition:
        transform .3s ease,
        background .3s ease;
}


.techv2-area-card:hover .techv2-icon,
.techv2-digital-item:hover .techv2-icon {

    transform: translateY(-3px);

    background: #d8eef8;
}



/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .techv2-hero-copy,
    .techv2-hero-image {
        animation: none !important;
    }


    body.techv2-animations-ready .techv2-heading,

    body.techv2-animations-ready .techv2-area-card,

    body.techv2-animations-ready .techv2-equipment-card,

    body.techv2-animations-ready .techv2-digital-item,

    body.techv2-animations-ready .techv2-trust,

    body.techv2-animations-ready .techv2-cta-inner {

        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }


    .techv2-equipment-image img,
    .techv2-icon {
        transition: none !important;
    }

}

/* =========================================================
   HOME — SCALE OF THE PROBLEM
========================================================= */

.problem-stats {
    width: 100%;
    padding: 62px 5% 68px;
    background: #f3f8fb;
}


/* SECTION HEADING */

.problem-stats-heading {
    width: min(760px, 100%);
    margin: 0 auto 38px;
    text-align: center;
}

.problem-stats-heading>span {
    display: block;
    margin-bottom: 12px;

    color: #0870aa;

    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.problem-stats-heading h2 {
    margin: 0 0 13px;

    color: #123f66;

    font-size: 36px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
}

.problem-stats-heading p {
    max-width: 650px;
    margin: 0 auto;

    color: #6b8293;

    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
}


/* FOUR-CARD ROW */

.problem-stats-grid {
    width: min(1215px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #d5e5ee;
    border-bottom: 1px solid #d5e5ee;
}


/* INDIVIDUAL STAT */

.problem-stat {
    min-height: 260px;
    padding: 28px 25px;

    border-right: 1px solid #d5e5ee;

    background: #ffffff;
}

.problem-stat:first-child {
    border-left: 1px solid #d5e5ee;
}


/* VERY IMPORTANT — FIXES THE GIANT BLACK SVGs */

.problem-stat-icon {
    width: 48px !important;
    height: 48px !important;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e2f2fa;

    overflow: hidden;
}

.problem-stat-icon svg {
    width: 23px !important;
    height: 23px !important;

    min-width: 23px !important;
    min-height: 23px !important;
    max-width: 23px !important;
    max-height: 23px !important;

    display: block;

    fill: none !important;

    stroke: #0870aa !important;
    stroke-width: 1.7 !important;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* MAIN FIGURE */

.problem-stat>strong {
    display: block;

    margin-bottom: 10px;

    color: #0870aa;

    font-size: 29px;
    font-weight: 300;
    line-height: 1.15;
}


/* CARD TITLE */

.problem-stat h3 {
    margin: 0 0 10px;

    color: #123f66;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
}


/* DESCRIPTION */

.problem-stat p {
    margin: 0;

    color: #708798;

    font-size: 11px;
    font-weight: 300;
    line-height: 1.65;
}


/* SUBTLE HOVER */

.problem-stat {
    transition:
        background .25s ease,
        transform .25s ease;
}

.problem-stat:hover {
    background: #fafdff;
    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

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

    .problem-stat {
        border-bottom: 1px solid #d5e5ee;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 620px) {

    .problem-stats {
        padding: 50px 6%;
    }

    .problem-stats-heading h2 {
        font-size: 31px;
    }

    .problem-stats-grid {
        grid-template-columns: 1fr;
    }

    .problem-stat {
        min-height: auto;
        padding: 25px 22px;

        border-left: 1px solid #d5e5ee;
    }

}

.problem-distance {
    display: flex !important;
    align-items: baseline;
    gap: 4px;
}

/* =========================================================
   HOME PAGE — OUR RESPONSE
========================================================= */

.home-response {
    width: 100%;
    padding: 58px 5%;

    background: #ffffff;

    border-top: 1px solid #d7e6ee;
    border-bottom: 1px solid #d7e6ee;
}


.home-response-inner {
    width: min(1215px, 100%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}


/* =========================================================
   COPY
========================================================= */

.home-response-copy {
    max-width: 850px;
}


.home-response-label {
    display: block;

    margin-bottom: 12px;

    color: #0870aa;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2.8px;
    text-transform: uppercase;
}


.home-response-copy h2 {
    margin: 0 0 16px;

    color: #123f66;

    font-size: clamp(30px, 3vw, 40px);
    font-weight: 300;

    line-height: 1.2;
    letter-spacing: -1px;
}


.home-response-copy h2 span {
    display: block;
    color: #0870aa;
}


.home-response-copy p {
    max-width: 760px;

    margin: 0;

    color: #657e90;

    font-size: 13px;
    font-weight: 300;

    line-height: 1.75;
}


/* =========================================================
   BUTTON
========================================================= */

.home-response-button {
    min-width: 205px;
    min-height: 52px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    flex-shrink: 0;

    background: #075781;
    border: 1px solid #075781;

    color: #ffffff;

    font-size: 12px;
    font-weight: 500;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease;
}


.home-response-button:hover {
    background: #0a6798;

    transform: translateY(-2px);
}


.home-response-button span {
    display: inline-block;

    transition: transform .25s ease;
}


.home-response-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .home-response {
        padding: 48px 6%;
    }


    .home-response-inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 28px;
    }


    .home-response-copy {
        max-width: 100%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 550px) {

    .home-response {
        padding: 42px 6%;
    }


    .home-response-copy h2 {
        font-size: 29px;
    }


    .home-response-button {
        width: 100%;
    }

}

/* =========================================================
   ABOUT HERO — FINAL VISUAL TUNING
========================================================= */

.about-main-hero {
    padding: 48px 5%;
    background: #f1f7fb;
}


.about-main-hero-container {
    width: min(1420px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 41% 59%;
    align-items: center;

    gap: 48px;
}


/* LEFT COPY */

.about-main-copy {
    padding-right: 10px;
}


.about-main-copy h1 {
    margin: 0 0 26px;

    color: #123f66;

    font-size: clamp(46px, 4vw, 56px);
    font-weight: 300;

    line-height: 1.12;
    letter-spacing: -1.5px;
}


.about-main-copy h1 span {
    display: block;
    color: #0870aa;
}


/* SUPPORTING PARAGRAPH */

.about-main-copy>p {
    max-width: 500px;

    margin: 0;

    color: #657f91;

    font-size: 14px;
    font-weight: 300;

    line-height: 1.8;
}


/* IMAGE */

.about-main-image {
    width: 100%;
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}


.about-main-image img {
    width: 100%;
    height: 425px;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* BOTTOM DETAIL */

.about-main-detail {
    margin-top: 34px;
}


/* TABLET */

@media (max-width: 950px) {

    .about-main-hero-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-main-copy {
        padding-right: 0;
    }

    .about-main-copy h1 {
        font-size: 50px;
    }

    .about-main-image img {
        height: auto;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .about-main-hero {
        padding: 45px 6%;
    }

    .about-main-copy h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

}

/* ABOUT HERO — FORCE TWO-LINE TITLE */

.about-main-copy h1 {
    font-size: clamp(42px, 3.6vw, 52px);
    line-height: 1.12;
}

.about-main-copy .about-title-line {
    display: block;
    white-space: nowrap;
    color: #123f66;
}

.about-main-copy .about-title-blue {
    color: #0870aa;
}


/* allow natural wrapping again on smaller screens */

@media (max-width: 750px) {

    .about-main-copy .about-title-line {
        white-space: normal;
    }

}

/* =========================================================
   ABOUT HERO — PREVENT ANIMATION COLLISION
========================================================= */

.about-main-hero-container {
    overflow: hidden;
}


/* TEXT: smaller horizontal travel */
.about-main-copy {
    animation: aboutTextSafeEnter 1.35s cubic-bezier(.22, 1, .36, 1) both;
}


/* IMAGE: smaller horizontal travel */
.about-main-image {
    animation: aboutImageSafeEnter 1.55s cubic-bezier(.22, 1, .36, 1) .08s both;
}


@keyframes aboutTextSafeEnter {

    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes aboutImageSafeEnter {

    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/* =========================================================
   ABOUT HERO — SPACING FIX
========================================================= */

.about-main-hero {
    min-height: auto !important;
    padding: 34px 5% 38px !important;
}


.about-main-hero-container {
    width: min(1240px, 100%);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr) minmax(0, 1.12fr);

    gap: 72px;

    align-items: start;
}


/* LEFT SIDE */

.about-main-copy {
    padding-top: 6px;
    padding-right: 0;
}


.about-main-label {
    margin-bottom: 24px;
}


/* TWO-LINE TITLE */

.about-main-copy h1 {
    margin: 0 0 26px;

    font-size: 46px;
    line-height: 1.13;
    letter-spacing: -1.2px;
}


.about-main-copy .about-title-line {
    display: block;
    white-space: nowrap;
}


.about-main-copy .about-title-blue {
    color: #0870aa;
}


/* IMAGE */

.about-main-image {
    width: 100%;
    margin: 0;

    align-self: start;
}


.about-main-image img {
    width: 100%;
    height: 425px;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .about-main-hero-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-main-copy .about-title-line {
        white-space: normal;
    }

    .about-main-image img {
        height: auto;
    }

}

/* =========================================================
   ABOUT PAGE — FINAL SPACING + CARD HOVER
========================================================= */


/* REMOVE OLD EXTRA HERO HEIGHT */

.about-main-hero {
    min-height: 0 !important;
    height: auto !important;

    padding-top: 34px !important;
    padding-bottom: 28px !important;
}


.about-main-hero-container {
    min-height: 0 !important;
    height: auto !important;

    align-items: start;
}


/* REMOVE EXCESS SPACE BEFORE "OUR PURPOSE" */

.problem-section {
    margin-top: 0 !important;

    padding-top: 46px !important;
    padding-bottom: 62px !important;
}


/* TIGHTER HEADING AREA */

.problem-heading {
    margin-bottom: 38px !important;
}


/* =========================================================
   PURPOSE CARDS — HOVER
========================================================= */

.problem-card {
    transition:
        transform .3s cubic-bezier(.22, 1, .36, 1),
        box-shadow .3s ease,
        border-color .3s ease,
        background .3s ease;
}


/* Desktop mouse hover only */

@media (hover: hover) and (pointer: fine) {

    .problem-card:hover {
        transform: translateY(-8px) !important;

        border-color: #bcd9e8;

        box-shadow:
            0 16px 35px rgba(18, 63, 102, .08);

        background: #ffffff;
    }


    .problem-card:hover .problem-icon {
        transform: translateY(-2px);
    }

}


/* ICON MOTION */

.problem-icon {
    transition:
        transform .3s ease,
        background .3s ease;
}


/* MOBILE */

@media (max-width: 700px) {

    .about-main-hero {
        padding-bottom: 24px !important;
    }

    .problem-section {
        padding-top: 38px !important;
        padding-bottom: 50px !important;
    }

}

/* =========================================================
   SOLUTION PAGE — MOBILE UNIT SPACING FIX
========================================================= */

.solution-unit {
    padding: 42px 5% 46px !important;
    min-height: 0 !important;
    height: auto !important;
}

.solution-unit-container {
    width: min(1220px, 100%);
    margin: 0 auto;

    min-height: 0 !important;

    display: grid;
    grid-template-columns: 58% 42%;
    align-items: center;

    gap: 55px;
}


/* REMOVE OLD FORCED HEIGHT */

.solution-unit-visual {
    min-height: 0 !important;
    height: auto !important;

    padding: 0 !important;
}


/* MAKE THE TRUCK USE THE AVAILABLE SPACE */

.solution-unit-visual img {
    width: 100%;
    max-width: 720px;
    max-height: 330px;

    object-fit: contain;

    display: block;
    margin: 0 auto;
}


/* RIGHT COPY */

.solution-unit-copy {
    padding: 0 !important;
    margin: 0 !important;
}


/* TABLET */

@media (max-width: 950px) {

    .solution-unit-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .solution-unit {
        padding: 38px 6%;
    }

}

/* =========================================================
   SOLUTION — TRUCK DIMENSION ANIMATION
========================================================= */

.solution-unit-visual {
    position: relative;
}


/* measurement area under the trailer */

.truck-dimension {
    position: absolute;

    left: 29%;
    width: 67%;

    bottom: 0;

    height: 42px;

    pointer-events: none;
}


/* horizontal measurement line */

.truck-dimension-line {
    position: absolute;

    left: 0;
    right: 0;
    top: 7px;

    height: 1px;

    background: #0870aa;

    transform: scaleX(0);
    transform-origin: left center;

    opacity: 0;
}


/* small vertical marker at beginning */

.truck-dimension-start {
    position: absolute;

    left: 0;
    top: -5px;

    width: 1px;
    height: 11px;

    background: #0870aa;

    opacity: 0;
}


/* arrow at rear */

.truck-dimension-end {
    position: absolute;

    right: -1px;
    top: -4px;

    width: 8px;
    height: 8px;

    border-top: 1.5px solid #0870aa;
    border-right: 1.5px solid #0870aa;

    transform: rotate(45deg);

    opacity: 0;
}


/* 42 FT LABEL */

.truck-dimension-label {
    position: absolute;

    top: 16px;
    left: 50%;

    transform: translateX(-50%) translateY(5px);

    color: #0870aa;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 1.5px;

    opacity: 0;
}


/* =========================================================
   PLAY ANIMATION
========================================================= */

.solution-unit-visual.dimension-active .truck-dimension-line {

    animation:
        truckMeasureLine 1.4s cubic-bezier(.22, 1, .36, 1) forwards;
}


.solution-unit-visual.dimension-active .truck-dimension-start {

    animation:
        truckMeasureMarker .3s ease forwards;
}


.solution-unit-visual.dimension-active .truck-dimension-end {

    animation:
        truckMeasureMarker .3s ease 1.25s forwards;
}


.solution-unit-visual.dimension-active .truck-dimension-label {

    animation:
        truckMeasureLabel .65s cubic-bezier(.22, 1, .36, 1) 1.45s forwards;
}



/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes truckMeasureLine {

    0% {
        opacity: 1;
        transform: scaleX(0);
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
    }

}


@keyframes truckMeasureMarker {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes truckMeasureLabel {

    from {
        opacity: 0;

        transform:
            translateX(-50%) translateY(5px);
    }

    to {
        opacity: 1;

        transform:
            translateX(-50%) translateY(0);
    }

}


/* MOBILE */

@media (max-width: 950px) {

    .truck-dimension {
        left: 28%;
        width: 68%;
    }

}


/* ACCESSIBILITY */

/* =========================================================
   SOLUTION — TRUCK LENGTH MEASUREMENT
========================================================= */

.solution-unit-visual {
    position: relative;
    min-height: 0 !important;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* isolates the animation from the page grid */

.truck-visual-wrap {
    position: relative;

    width: 100%;
    max-width: 720px;

    margin: 0 auto;

    padding-bottom: 42px;
}


.truck-visual-wrap>img {
    width: 100%;
    height: auto;

    display: block;
    object-fit: contain;
}


/* measurement line */

.truck-measure {
    position: absolute;

    left: 28%;
    right: 4%;
    bottom: 8px;

    height: 28px;

    pointer-events: none;
}


/* starting marker */

.truck-measure-start {
    position: absolute;

    left: 0;
    top: 0;

    width: 1px;
    height: 10px;

    background: #0870aa;

    opacity: 0;
}


/* line */

.truck-measure-line {
    position: absolute;

    left: 0;
    right: 7px;
    top: 5px;

    height: 1px;

    background: #0870aa;

    transform: scaleX(0);
    transform-origin: left center;

    opacity: 0;
}


/* arrow head */

.truck-measure-arrow {
    position: absolute;

    right: 0;
    top: 1px;

    width: 8px;
    height: 8px;

    border-top: 1.5px solid #0870aa;
    border-right: 1.5px solid #0870aa;

    transform: rotate(45deg);

    opacity: 0;
}


/* measurement text */

.truck-measure-text {
    position: absolute;

    left: 50%;
    top: 13px;

    transform: translateX(-50%) translateY(4px);

    color: #0870aa;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 1.5px;

    opacity: 0;
}


/* =========================================================
   ACTIVE ANIMATION
========================================================= */

.solution-unit-visual.truck-measure-active .truck-measure-start {
    animation: truckMarkerIn .2s ease forwards;
}


.solution-unit-visual.truck-measure-active .truck-measure-line {
    animation: truckLineDraw 1.35s cubic-bezier(.22, 1, .36, 1) forwards;
}


.solution-unit-visual.truck-measure-active .truck-measure-arrow {
    animation: truckMarkerIn .25s ease 1.2s forwards;
}


.solution-unit-visual.truck-measure-active .truck-measure-text {
    animation: truckTextIn .55s ease 1.35s forwards;
}


@keyframes truckLineDraw {

    from {
        opacity: 1;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }

}


@keyframes truckMarkerIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes truckTextIn {

    from {
        opacity: 0;
        transform: translateX(-50%) translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

}

/* =========================================================
   SIMPLE TRUCK MEASUREMENT
========================================================= */

.solution-unit-visual {
    display: flex;
    flex-direction: column;
    align-items: center;

    min-height: 0 !important;
    overflow: visible !important;
}


.solution-unit-visual>img {
    width: 100%;
    max-width: 720px;
    height: auto;

    display: block;
}


/* measurement sits UNDER the image */

.simple-truck-measure {
    position: relative;

    width: 65%;
    height: 36px;

    margin-top: 2px;
    margin-left: 24%;

    opacity: 1;
}


/* starting vertical mark */

.simple-measure-start {
    position: absolute;

    left: 0;
    top: 3px;

    width: 1px;
    height: 11px;

    background: #0870aa;
}


/* animated horizontal line */

.simple-measure-line {
    position: absolute;

    left: 0;
    top: 8px;

    width: calc(100% - 8px);
    height: 1.5px;

    background: #0870aa;

    transform: scaleX(0);
    transform-origin: left center;

    animation:
        simpleTruckLine 1.5s cubic-bezier(.22, 1, .36, 1) .35s forwards;
}


/* arrow head */

.simple-measure-arrow {
    position: absolute;

    right: 0;
    top: 4px;

    width: 8px;
    height: 8px;

    border-top: 1.5px solid #0870aa;
    border-right: 1.5px solid #0870aa;

    transform: rotate(45deg);

    opacity: 0;

    animation:
        simpleTruckArrow .25s ease 1.7s forwards;
}


/* 42 ft text */

.simple-measure-label {
    position: absolute;

    left: 50%;
    top: 17px;

    transform: translateX(-50%);

    color: #0870aa;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 1.5px;

    opacity: 0;

    animation:
        simpleTruckLabel .45s ease 1.8s forwards;
}


@keyframes simpleTruckLine {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


@keyframes simpleTruckArrow {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes simpleTruckLabel {

    from {
        opacity: 0;
        transform: translateX(-50%) translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

}

/* HOW IT WORKS — CLOSING QUOTATION MARK */

.how-statement-container h2::after {
    content: "”";

    display: inline-block;

    margin-left: 10px;

    color: #5eb5e4;

    font-size: 48px;
    font-weight: 300;
    line-height: 0;

    vertical-align: -12px;
}

/* =========================================================
   HOW IT WORKS — COMPACT HERO
========================================================= */

.how-hero {
    min-height: 0 !important;
    height: auto !important;

    padding: 26px 2% 28px !important;
}


.how-hero-container {
    width: min(1310px, 100%);
    margin: 0 auto;

    min-height: 0 !important;

    display: grid;
    grid-template-columns: 39% 61%;

    align-items: center;

    gap: 42px;
}


/* LEFT SIDE */

.how-hero-copy {
    padding: 0 !important;
}


.how-hero-copy h1 {
    margin: 0 0 22px;

    font-size: clamp(48px, 4.2vw, 60px);
    line-height: 1.05;

    letter-spacing: -1.6px;
}


.how-hero-copy>p {
    max-width: 490px;

    margin: 0;

    line-height: 1.7;
}


/* IMAGE */

.how-hero-image {
    min-height: 0 !important;
    height: auto !important;
}


.how-hero-image img {
    width: 100%;
    height: 410px;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* SMALL DETAIL AT BOTTOM */

.how-hero-detail {
    margin-top: 28px !important;
}


/* TABLET */

@media (max-width: 950px) {

    .how-hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .how-hero-image img {
        height: auto;
    }

}

/* =========================================================
   TECHNOLOGY PAGE — CLEAN REBUILD
   Namespace: techclean-
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

.techclean-page {
    width: 100%;
    overflow: hidden;

    background: #ffffff;
    color: #123f66;
}


.techclean-label {
    display: block;

    margin-bottom: 13px;

    color: #0870aa;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 3px;
    text-transform: uppercase;
}


/* =========================================================
   01 — CLINICAL LAYOUT / HERO
========================================================= */

.techclean-hero {
    width: 100%;

    padding: 44px 5% 48px;

    background: #eef6fa;
}


.techclean-hero-inner {
    width: min(1240px, 100%);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(360px, 0.82fr) minmax(0, 1.18fr);

    align-items: center;

    gap: 58px;
}


/* LEFT */

.techclean-hero-copy {
    min-width: 0;
}


.techclean-hero-copy h1 {
    margin: 0 0 22px;

    color: #123f66;

    font-size: clamp(44px, 4.3vw, 59px);
    font-weight: 300;

    line-height: 1.08;
    letter-spacing: -1.6px;
}


.techclean-hero-copy h1 span {
    display: block;

    color: #0870aa;
}


.techclean-hero-copy>p {
    max-width: 520px;

    margin: 0;

    color: #688296;

    font-size: 13px;
    font-weight: 300;

    line-height: 1.75;
}


/* SMALL ZONE INDEX */

.techclean-zones {
    margin-top: 32px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    border-top: 1px solid #bfd7e4;
}


.techclean-zone {
    min-height: 64px;

    padding: 14px 12px 12px 0;

    display: flex;
    align-items: flex-start;

    gap: 10px;

    border-bottom: 1px solid #d5e4ec;
}


.techclean-zone:nth-child(odd) {
    border-right: 1px solid #d5e4ec;

    padding-right: 18px;
}


.techclean-zone:nth-child(even) {
    padding-left: 18px;
}


.techclean-zone span {
    margin-top: 2px;

    color: #0870aa;

    font-size: 8px;
    letter-spacing: 1.5px;
}


.techclean-zone strong {
    color: #123f66;

    font-size: 11px;
    font-weight: 400;

    line-height: 1.4;
}


/* RIGHT — TRUCK LAYOUT IMAGE */

.techclean-hero-visual {
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}


.techclean-hero-visual img {
    width: 110%;
    max-width: 820px;
    height: auto;

    display: block;

    object-fit: contain;
}


/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.techclean-section-heading {
    width: min(900px, 100%);
    margin: 0 auto 38px;

    text-align: center;
}


.techclean-section-heading h2 {
    margin: 0 0 14px;

    color: #123f66;

    font-size: clamp(32px, 3vw, 42px);
    font-weight: 300;

    line-height: 1.16;
    letter-spacing: -1px;
}


.techclean-section-heading h2 span {
    color: #0870aa;
}


.techclean-section-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #71889a;

    font-size: 12px;
    font-weight: 300;

    line-height: 1.7;
}


/* =========================================================
   02 — CLINICAL EQUIPMENT
========================================================= */

.techclean-equipment {
    width: 100%;

    padding: 58px 5% 64px;

    background: #ffffff;
}


.techclean-equipment-grid {
    width: min(1240px, 100%);
    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #c9dce7;
    border-left: 1px solid #c9dce7;
}


/* CARD */

.techclean-equipment-card {
    min-width: 0;

    background: #ffffff;

    border-right: 1px solid #c9dce7;
    border-bottom: 1px solid #c9dce7;

    transition:
        transform .3s cubic-bezier(.22, 1, .36, 1),
        box-shadow .3s ease,
        border-color .3s ease;
}


.techclean-equipment-image {
    height: 205px;

    padding: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f7fbfd;

    border-bottom: 1px solid #d7e6ee;

    overflow: hidden;
}


.techclean-equipment-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    transition: transform .35s ease;
}


.techclean-equipment-copy {
    padding: 22px 20px 26px;
}


.techclean-card-number {
    display: block;

    margin-bottom: 13px;

    color: #7893a5;

    font-size: 8px;
    letter-spacing: 2px;
}


.techclean-equipment-copy h3 {
    margin: 0 0 10px;

    color: #063f6c;

    font-size: 17px;
    font-weight: 400;

    line-height: 1.3;
}


.techclean-equipment-copy p {
    margin: 0;

    color: #74899a;

    font-size: 11px;
    font-weight: 300;

    line-height: 1.65;
}


@media (hover: hover) and (pointer: fine) {

    .techclean-equipment-card:hover {
        position: relative;
        z-index: 2;

        transform: translateY(-7px);

        border-color: #afd0e1;

        box-shadow:
            0 18px 40px rgba(18, 63, 102, .08);
    }


    .techclean-equipment-card:hover .techclean-equipment-image img {
        transform: scale(1.035);
    }

}


/* =========================================================
   03 — DIGITAL SYSTEMS
========================================================= */

.techclean-digital {
    width: 100%;

    padding: 58px 5% 66px;

    background: #eef6fa;
}


.techclean-digital-grid {
    width: min(1240px, 100%);
    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #c8dce7;
    border-left: 1px solid #c8dce7;
}


.techclean-digital-card {
    min-height: 230px;

    padding: 28px 25px;

    background: rgba(255, 255, 255, .72);

    border-right: 1px solid #c8dce7;
    border-bottom: 1px solid #c8dce7;

    transition:
        transform .3s cubic-bezier(.22, 1, .36, 1),
        background .3s ease,
        box-shadow .3s ease;
}


.techclean-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ddf0f9;

    color: #0870aa;
}


.techclean-icon svg {
    width: 23px;
    height: 23px;
}


.techclean-digital-card h3 {
    margin: 0 0 10px;

    color: #063f6c;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.35;
}


.techclean-digital-card p {
    margin: 0;

    color: #73899a;

    font-size: 11px;
    font-weight: 300;

    line-height: 1.65;
}


@media (hover: hover) and (pointer: fine) {

    .techclean-digital-card:hover {
        position: relative;
        z-index: 2;

        transform: translateY(-7px);

        background: #ffffff;

        box-shadow:
            0 18px 40px rgba(18, 63, 102, .07);
    }

}


/* =========================================================
   04 — PEOPLE + TECHNOLOGY
========================================================= */

.techclean-human {
    width: 100%;

    padding: 48px 5%;

    background: #ffffff;

    border-top: 1px solid #d7e6ee;
    border-bottom: 1px solid #d7e6ee;
}


.techclean-human-inner {
    width: min(1050px, 100%);
    margin: 0 auto;

    text-align: center;
}


.techclean-human-inner h2 {
    margin: 0;

    color: #123f66;

    font-size: clamp(30px, 3vw, 40px);
    font-weight: 300;

    line-height: 1.2;
    letter-spacing: -1px;
}


.techclean-human-inner h2 span {
    color: #0870aa;
}


.techclean-human-inner p {
    max-width: 710px;

    margin: 18px auto 0;

    color: #74899a;

    font-size: 12px;
    font-weight: 300;

    line-height: 1.7;
}


/* =========================================================
   05 — PLANNED COVERAGE
========================================================= */

.techclean-coverage {
    width: 100%;

    padding: 58px 5%;

    background: #f5fafc;
}


.techclean-coverage-card {
    width: min(1240px, 100%);
    margin: 0 auto;

    min-height: 220px;

    padding: 36px 42px;

    display: grid;

    grid-template-columns:
        72px minmax(0, 1fr) 215px;

    align-items: center;

    gap: 32px;

    background: #ffffff;

    border: 1px solid #c8dce7;
}


/* ICON */

.techclean-coverage-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ddf0f9;

    color: #0870aa;
}


.techclean-coverage-icon svg {
    width: 26px;
    height: 26px;
}


/* COPY */

.techclean-coverage-copy h2 {
    max-width: 650px;

    margin: 0 0 13px;

    color: #123f66;

    font-size: clamp(27px, 2.5vw, 35px);
    font-weight: 300;

    line-height: 1.2;
    letter-spacing: -.7px;
}


.techclean-coverage-copy p {
    max-width: 680px;

    margin: 0 0 20px;

    color: #74899a;

    font-size: 11px;
    font-weight: 300;

    line-height: 1.7;
}


.techclean-text-link {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    color: #0870aa;

    font-size: 11px;
    font-weight: 500;

    text-decoration: none;
}


.techclean-text-link span {
    transition: transform .25s ease;
}


.techclean-text-link:hover span {
    transform: translateX(4px);
}


/* STAT */

.techclean-coverage-stat {
    min-height: 140px;

    padding-left: 35px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-left: 1px solid #d3e2ea;
}


.techclean-coverage-stat strong {
    color: #0870aa;

    font-size: 62px;
    font-weight: 300;

    line-height: .9;
}


.techclean-coverage-stat>span {
    margin-top: 8px;

    color: #123f66;

    font-size: 18px;
    font-weight: 400;
}


.techclean-coverage-stat small {
    margin-top: 7px;

    color: #8296a5;

    font-size: 9px;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}


/* =========================================================
   06 — PARTNERSHIP CTA
========================================================= */

.techclean-cta {
    width: 100%;

    padding: 42px 5%;

    background: #dceef8;

    border-top: 1px solid #c6deeb;
}


.techclean-cta-inner {
    width: min(1240px, 100%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 55px;
}


.techclean-cta-inner h2 {
    margin: 0 0 9px;

    color: #123f66;

    font-size: clamp(28px, 2.7vw, 38px);
    font-weight: 300;

    line-height: 1.15;
    letter-spacing: -.8px;
}


.techclean-cta-inner p {
    margin: 0;

    color: #657e90;

    font-size: 11px;
    font-weight: 300;

    line-height: 1.6;
}


/* CTA BUTTONS */

.techclean-cta-actions {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


.techclean-primary-btn,
.techclean-secondary-btn {
    min-height: 50px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    font-size: 11px;
    font-weight: 500;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}


.techclean-primary-btn {
    background: #075781;

    border: 1px solid #075781;

    color: #ffffff;
}


.techclean-secondary-btn {
    background: transparent;

    border: 1px solid #0870aa;

    color: #075781;
}


.techclean-primary-btn:hover,
.techclean-secondary-btn:hover {
    transform: translateY(-2px);
}


.techclean-primary-btn:hover {
    background: #0a6798;
}


.techclean-secondary-btn:hover {
    background: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .techclean-hero-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .techclean-hero-copy {
        max-width: 680px;
    }


    .techclean-hero-visual img {
        width: 100%;
        max-width: 900px;
    }


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


    .techclean-coverage-card {
        grid-template-columns:
            65px minmax(0, 1fr);

        gap: 25px;
    }


    .techclean-coverage-stat {
        grid-column: 2;

        min-height: 0;

        padding: 20px 0 0;

        border-left: 0;
        border-top: 1px solid #d3e2ea;
    }


    .techclean-cta-inner {
        align-items: flex-start;
        flex-direction: column;

        gap: 28px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .techclean-hero {
        padding: 38px 6% 42px;
    }


    .techclean-hero-copy h1 {
        font-size: 42px;
    }


    .techclean-zones {
        grid-template-columns: 1fr;
    }


    .techclean-zone:nth-child(odd) {
        border-right: 0;

        padding-right: 0;
    }


    .techclean-zone:nth-child(even) {
        padding-left: 0;
    }


    .techclean-equipment,
    .techclean-digital,
    .techclean-coverage {
        padding-left: 6%;
        padding-right: 6%;
    }


    .techclean-equipment-grid,
    .techclean-digital-grid {
        grid-template-columns: 1fr;
    }


    .techclean-equipment-image {
        height: 230px;
    }


    .techclean-coverage-card {
        padding: 28px;

        grid-template-columns: 1fr;

        gap: 22px;
    }


    .techclean-coverage-stat {
        grid-column: auto;

        padding-top: 22px;
    }


    .techclean-cta {
        padding: 38px 6%;
    }


    .techclean-cta-actions {
        width: 100%;

        flex-direction: column;
    }


    .techclean-primary-btn,
    .techclean-secondary-btn {
        width: 100%;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .techclean-equipment-card,
    .techclean-equipment-image img,
    .techclean-digital-card,
    .techclean-primary-btn,
    .techclean-secondary-btn,
    .techclean-text-link span {
        transition: none !important;
    }

}

/* TECHNOLOGY HERO — ZONE DESCRIPTIONS */

.techclean-zone {
    min-height: 82px;
}

.techclean-zone>div {
    min-width: 0;
}

.techclean-zone strong {
    display: block;
    margin-bottom: 5px;
}

.techclean-zone p {
    margin: 0;

    color: #7a91a1;

    font-size: 9.5px;
    font-weight: 300;

    line-height: 1.45;
}

/* =========================================================
   TECHNOLOGY HERO — FINAL LAYOUT TUNING
========================================================= */


/* Give more room to the truck */

.techclean-hero-inner {
    width: min(1320px, 100%) !important;

    grid-template-columns:
        minmax(390px, 0.75fr) minmax(0, 1.25fr) !important;

    gap: 38px !important;
}


/* =========================================================
   FORCE THE CLINICAL ZONES BACK TO 2 x 2
========================================================= */

.techclean-zones {
    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    margin-top: 28px;

    border-top: 1px solid #bfd7e4;
}


.techclean-zone {
    min-height: 92px !important;

    padding: 15px 18px 15px 0 !important;

    display: flex !important;
    align-items: flex-start;

    gap: 10px;

    border-bottom: 1px solid #d5e4ec;
}


/* LEFT COLUMN */

.techclean-zone:nth-child(odd) {
    padding-right: 20px !important;

    border-right: 1px solid #d5e4ec;
}


/* RIGHT COLUMN */

.techclean-zone:nth-child(even) {
    padding-left: 20px !important;
}


/* NUMBER */

.techclean-zone>span {
    flex: 0 0 auto;

    margin-top: 2px;

    color: #0870aa;

    font-size: 8px;
    letter-spacing: 1.5px;
}


/* TEXT AREA */

.techclean-zone>div {
    min-width: 0;
}


.techclean-zone strong {
    display: block;

    margin-bottom: 6px;

    color: #123f66;

    font-size: 11px;
    font-weight: 400;

    line-height: 1.35;
}


.techclean-zone p {
    margin: 0;

    color: #7a91a1;

    font-size: 9px;
    font-weight: 300;

    line-height: 1.5;
}


/* =========================================================
   BIGGER TRUCK
========================================================= */

.techclean-hero-visual {
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
}


.techclean-hero-visual img {
    width: 122% !important;
    max-width: 900px !important;
    height: auto;

    object-fit: contain;

    transform: translateX(2%);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .techclean-hero-inner {
        grid-template-columns: 1fr !important;
    }

    .techclean-hero-visual img {
        width: 100% !important;
        max-width: 850px !important;

        transform: none;
    }

}


@media (max-width: 600px) {

    .techclean-zones {
        grid-template-columns: 1fr !important;
    }

    .techclean-zone:nth-child(odd),
    .techclean-zone:nth-child(even) {
        padding-left: 0 !important;
        padding-right: 0 !important;

        border-right: 0;
    }

}

/* =========================================================
   TECHNOLOGY PAGE — CLINICAL LAYOUT
   CLEAN REBUILD
========================================================= */

.tc-layout {
    width: 100%;
    padding: 42px 5% 46px;

    background: #eef6fa;

    overflow: hidden;
}


.tc-layout-inner {
    width: min(1320px, 100%);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(390px, 40%) minmax(0, 60%);

    align-items: center;

    gap: 42px;
}


/* LEFT */

.tc-layout-content {
    min-width: 0;
}


.tc-layout-label {
    display: block;

    margin-bottom: 14px;

    color: #0870aa;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 3px;
    text-transform: uppercase;
}


.tc-layout-content h1 {
    margin: 0 0 20px;

    color: #123f66;

    font-size: clamp(43px, 4vw, 58px);
    font-weight: 300;

    line-height: 1.07;
    letter-spacing: -1.5px;
}


.tc-layout-content h1 span {
    display: block;

    color: #0870aa;
}


.tc-layout-intro {
    max-width: 500px;

    margin: 0;

    color: #718899;

    font-size: 12px;
    font-weight: 300;

    line-height: 1.7;
}


/* =========================================================
   EXACT 2 × 2 GRID
========================================================= */

.tc-layout-grid {
    width: 100%;

    margin-top: 27px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    border-top: 1px solid #c5dce8;
    border-left: 1px solid #c5dce8;
}


.tc-layout-area {
    min-width: 0;
    min-height: 100px;

    padding: 16px;

    display: flex;
    align-items: flex-start;

    gap: 10px;

    border-right: 1px solid #c5dce8;
    border-bottom: 1px solid #c5dce8;
}


.tc-area-number {
    flex: 0 0 auto;

    margin-top: 2px;

    color: #0870aa;

    font-size: 8px;
    letter-spacing: 1.5px;
}


.tc-layout-area>div {
    min-width: 0;
}


.tc-layout-area h3 {
    margin: 0 0 6px;

    color: #123f66;

    font-size: 11px;
    font-weight: 400;

    line-height: 1.35;
}


.tc-layout-area p {
    margin: 0;

    color: #7a91a1;

    font-size: 9px;
    font-weight: 300;

    line-height: 1.5;
}


/* =========================================================
   TRUCK
========================================================= */

.tc-layout-visual {
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}


.tc-layout-visual img {
    width: 118%;
    max-width: 920px;
    height: auto;

    display: block;

    object-fit: contain;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .tc-layout-inner {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .tc-layout-visual img {
        width: 100%;
        max-width: 900px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 620px) {

    .tc-layout {
        padding: 34px 6% 40px;
    }

    .tc-layout-content h1 {
        font-size: 40px;
    }

    .tc-layout-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   TECHNOLOGY — REMAINING PAGE
========================================================= */


/* COMMON SECTION HEADING */

.tc-section-heading {
    width: min(850px, 100%);
    margin: 0 auto 36px;

    text-align: center;
}

.tc-section-heading>span,
.tc-human-inner>span,
.tc-coverage-copy>span,
.tc-partner-inner>div:first-child>span {
    display: block;

    margin-bottom: 12px;

    color: #0870aa;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.tc-section-heading h2 {
    margin: 0 0 13px;

    color: #123f66;

    font-size: clamp(32px, 3vw, 42px);
    font-weight: 300;

    line-height: 1.15;
    letter-spacing: -1px;
}

.tc-section-heading h2 strong {
    color: #0870aa;
    font-weight: 300;
}

.tc-section-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #758b9b;

    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   EQUIPMENT
========================================================= */

.tc-equipment {
    padding: 58px 5% 64px;

    background: #ffffff;
}

.tc-equipment-grid {
    width: min(1240px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #cadde7;
    border-left: 1px solid #cadde7;
}

.tc-equipment-card {
    background: #ffffff;

    border-right: 1px solid #cadde7;
    border-bottom: 1px solid #cadde7;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.tc-equipment-image {
    height: 205px;

    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f7fbfd;

    border-bottom: 1px solid #d8e7ee;
}

.tc-equipment-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform .3s ease;
}

.tc-equipment-copy {
    padding: 20px 20px 25px;
}

.tc-equipment-copy>span {
    display: block;

    margin-bottom: 11px;

    color: #8297a6;

    font-size: 8px;
    letter-spacing: 2px;
}

.tc-equipment-copy h3 {
    margin: 0 0 9px;

    color: #123f66;

    font-size: 17px;
    font-weight: 400;
}

.tc-equipment-copy p {
    margin: 0;

    color: #788d9d;

    font-size: 10px;
    line-height: 1.65;
}

.tc-equipment-card:hover {
    position: relative;
    z-index: 2;

    transform: translateY(-6px);

    box-shadow:
        0 16px 35px rgba(18, 63, 102, .08);
}

.tc-equipment-card:hover img {
    transform: scale(1.035);
}


/* =========================================================
   DIGITAL SYSTEMS
========================================================= */

.tc-digital {
    padding: 58px 5% 64px;

    background: #eef6fa;
}

.tc-digital-grid {
    width: min(1240px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #c7dce7;
    border-left: 1px solid #c7dce7;
}

.tc-digital-card {
    min-height: 225px;

    padding: 27px 24px;

    background: rgba(255, 255, 255, .75);

    border-right: 1px solid #c7dce7;
    border-bottom: 1px solid #c7dce7;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.tc-digital-icon {
    width: 49px;
    height: 49px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dceff8;

    color: #0870aa;
}

.tc-digital-icon svg {
    width: 23px;
    height: 23px;
}

.tc-digital-card h3 {
    margin: 0 0 9px;

    color: #123f66;

    font-size: 16px;
    font-weight: 400;
}

.tc-digital-card p {
    margin: 0;

    color: #788d9d;

    font-size: 10px;
    line-height: 1.65;
}

.tc-digital-card:hover {
    position: relative;
    z-index: 2;

    transform: translateY(-6px);

    background: #ffffff;

    box-shadow:
        0 16px 35px rgba(18, 63, 102, .07);
}


/* =========================================================
   PEOPLE + TECHNOLOGY
========================================================= */

.tc-human {
    padding: 46px 5%;

    background: #ffffff;

    border-top: 1px solid #d8e6ed;
    border-bottom: 1px solid #d8e6ed;
}

.tc-human-inner {
    width: min(1000px, 100%);
    margin: 0 auto;

    text-align: center;
}

.tc-human-inner h2 {
    margin: 0;

    color: #123f66;

    font-size: clamp(29px, 2.8vw, 39px);
    font-weight: 300;

    line-height: 1.2;
}

.tc-human-inner h2 strong {
    color: #0870aa;
    font-weight: 300;
}

.tc-human-inner p {
    max-width: 700px;

    margin: 16px auto 0;

    color: #788d9d;

    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   PLANNED COVERAGE
========================================================= */

.tc-coverage {
    padding: 54px 5%;

    background: #f5fafc;
}

.tc-coverage-card {
    width: min(1240px, 100%);
    margin: 0 auto;

    padding: 34px 40px;

    display: grid;

    grid-template-columns:
        70px minmax(0, 1fr) 210px;

    align-items: center;

    gap: 30px;

    background: #ffffff;

    border: 1px solid #c8dce7;
}

.tc-coverage-icon {
    width: 57px;
    height: 57px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dceff8;

    color: #0870aa;
}

.tc-coverage-icon svg {
    width: 25px;
    height: 25px;
}

.tc-coverage-copy h2 {
    max-width: 650px;

    margin: 0 0 12px;

    color: #123f66;

    font-size: clamp(26px, 2.4vw, 34px);
    font-weight: 300;

    line-height: 1.2;
}

.tc-coverage-copy p {
    max-width: 660px;

    margin: 0 0 17px;

    color: #788d9d;

    font-size: 10px;
    line-height: 1.7;
}

.tc-coverage-copy a {
    display: inline-flex;

    gap: 12px;

    color: #0870aa;

    font-size: 10px;
    font-weight: 500;

    text-decoration: none;
}

.tc-coverage-copy a b {
    font-weight: 400;
}

.tc-coverage-stat {
    min-height: 130px;

    padding-left: 32px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-left: 1px solid #d4e3ea;
}

.tc-coverage-stat strong {
    color: #0870aa;

    font-size: 60px;
    font-weight: 300;

    line-height: .9;
}

.tc-coverage-stat>span {
    margin-top: 8px;

    color: #123f66;

    font-size: 17px;
}

.tc-coverage-stat small {
    margin-top: 6px;

    color: #8497a5;

    font-size: 8px;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}


/* =========================================================
   PARTNERSHIP CTA
========================================================= */

.tc-partner {
    padding: 40px 5%;

    background: #dceef8;
}

.tc-partner-inner {
    width: min(1240px, 100%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;
}

.tc-partner-inner h2 {
    margin: 0 0 8px;

    color: #123f66;

    font-size: clamp(27px, 2.6vw, 37px);
    font-weight: 300;
}

.tc-partner-inner p {
    margin: 0;

    color: #657e90;

    font-size: 10px;
}

.tc-partner-actions {
    display: flex;

    gap: 12px;

    flex-shrink: 0;
}

.tc-partner-primary,
.tc-partner-secondary {
    min-height: 50px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 17px;

    font-size: 10px;
    font-weight: 500;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease;
}

.tc-partner-primary {
    color: #ffffff;

    background: #075781;

    border: 1px solid #075781;
}

.tc-partner-secondary {
    color: #075781;

    background: transparent;

    border: 1px solid #0870aa;
}

.tc-partner-primary:hover,
.tc-partner-secondary:hover {
    transform: translateY(-2px);
}

.tc-partner-primary:hover {
    background: #0a6798;
}

.tc-partner-secondary:hover {
    background: #ffffff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

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

    .tc-coverage-card {
        grid-template-columns: 60px 1fr;
    }

    .tc-coverage-stat {
        grid-column: 2;

        padding: 20px 0 0;

        border-left: 0;
        border-top: 1px solid #d4e3ea;
    }

    .tc-partner-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 620px) {

    .tc-equipment-grid,
    .tc-digital-grid {
        grid-template-columns: 1fr;
    }

    .tc-coverage-card {
        padding: 27px;

        grid-template-columns: 1fr;
    }

    .tc-coverage-stat {
        grid-column: auto;
    }

    .tc-partner-actions {
        width: 100%;

        flex-direction: column;
    }

    .tc-partner-primary,
    .tc-partner-secondary {
        width: 100%;
    }

}

/* =========================================================
   TECHNOLOGY PAGE — ANIMATIONS
========================================================= */


/* =========================================================
   HERO — PAGE LOAD
========================================================= */

.tc-layout-content {
    animation:
        tcHeroContentIn 1.25s cubic-bezier(.22, 1, .36, 1) both;
}


.tc-layout-visual {
    animation:
        tcHeroTruckIn 1.55s cubic-bezier(.22, 1, .36, 1) .08s both;
}


@keyframes tcHeroContentIn {

    from {
        opacity: 0;
        transform: translateX(-45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes tcHeroTruckIn {

    from {
        opacity: 0;

        transform:
            translateX(65px) scale(.98);
    }

    to {
        opacity: 1;

        transform:
            translateX(0) scale(1);
    }

}


/* =========================================================
   SCROLL REVEAL — INITIAL STATE
   Only activates when JavaScript is working
========================================================= */

body.tc-animations-ready .tc-section-heading,
body.tc-animations-ready .tc-equipment-card,
body.tc-animations-ready .tc-digital-card,
body.tc-animations-ready .tc-human-inner,
body.tc-animations-ready .tc-coverage-card,
body.tc-animations-ready .tc-partner-inner {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .8s cubic-bezier(.22, 1, .36, 1),
        transform .8s cubic-bezier(.22, 1, .36, 1);
}


/* =========================================================
   REVEALED STATE
========================================================= */

body.tc-animations-ready .tc-section-heading.tc-visible,

body.tc-animations-ready .tc-equipment-card.tc-visible,

body.tc-animations-ready .tc-digital-card.tc-visible,

body.tc-animations-ready .tc-human-inner.tc-visible,

body.tc-animations-ready .tc-coverage-card.tc-visible,

body.tc-animations-ready .tc-partner-inner.tc-visible {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   EQUIPMENT — STAGGER
========================================================= */

.tc-equipment-card:nth-child(1) {
    transition-delay: 0s !important;
}

.tc-equipment-card:nth-child(2) {
    transition-delay: .08s !important;
}

.tc-equipment-card:nth-child(3) {
    transition-delay: .16s !important;
}

.tc-equipment-card:nth-child(4) {
    transition-delay: .24s !important;
}


/* =========================================================
   DIGITAL SYSTEMS — STAGGER
========================================================= */

.tc-digital-card:nth-child(1) {
    transition-delay: 0s !important;
}

.tc-digital-card:nth-child(2) {
    transition-delay: .08s !important;
}

.tc-digital-card:nth-child(3) {
    transition-delay: .16s !important;
}

.tc-digital-card:nth-child(4) {
    transition-delay: .24s !important;
}


/* =========================================================
   COVERAGE — SLIGHTLY STRONGER ENTRANCE
========================================================= */

body.tc-animations-ready .tc-coverage-card {
    transform: translateY(35px);
}


body.tc-animations-ready .tc-coverage-card.tc-visible {
    transform: translateY(0);
}


/* =========================================================
   CTA
========================================================= */

body.tc-animations-ready .tc-partner-inner {
    transform: translateY(24px);
}


body.tc-animations-ready .tc-partner-inner.tc-visible {
    transform: translateY(0);
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .tc-layout-content,
    .tc-layout-visual {
        animation: none !important;
    }


    body.tc-animations-ready .tc-section-heading,
    body.tc-animations-ready .tc-equipment-card,
    body.tc-animations-ready .tc-digital-card,
    body.tc-animations-ready .tc-human-inner,
    body.tc-animations-ready .tc-coverage-card,
    body.tc-animations-ready .tc-partner-inner {

        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }

}

/* =========================================================
   PLANNED COVERAGE PAGE
========================================================= */

.coverage-page {
    width: 100%;
    overflow: hidden;
    color: #123f66;
}


/* HERO */

.coverage-hero {
    padding: 52px 5% 58px;
    background: #eef6fa;
}

.coverage-hero-inner {
    width: min(1240px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(350px, .82fr) minmax(0, 1.18fr);

    align-items: center;
    gap: 60px;
}


/* COPY */

.coverage-label {
    display: block;

    margin-bottom: 15px;

    color: #0870aa;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.coverage-copy h1 {
    margin: 0 0 22px;

    color: #123f66;

    font-size: clamp(44px, 4.3vw, 60px);
    font-weight: 300;

    line-height: 1.07;
    letter-spacing: -1.5px;
}

.coverage-copy h1 span {
    display: block;
    color: #0870aa;
}

.coverage-intro {
    max-width: 510px;

    margin: 0;

    color: #708899;

    font-size: 13px;
    font-weight: 300;

    line-height: 1.75;
}


/* COUNTY LIST */

.coverage-counties {
    margin-top: 31px;

    border-top: 1px solid #c6dce7;
}

.coverage-county {
    width: 100%;

    padding: 15px 8px;

    display: flex;
    align-items: center;

    gap: 14px;

    border: 0;
    border-bottom: 1px solid #d3e3eb;

    background: transparent;

    text-align: left;

    cursor: pointer;

    transition:
        background .25s ease,
        padding-left .25s ease;
}

.coverage-county>span {
    color: #0870aa;

    font-size: 8px;
    letter-spacing: 1.5px;
}

.coverage-county strong {
    display: block;

    color: #123f66;

    font-size: 13px;
    font-weight: 400;
}

.coverage-county small {
    display: block;

    margin-top: 3px;

    color: #8297a6;

    font-size: 9px;
}

.coverage-county.is-active {
    padding-left: 16px;

    background: rgba(255, 255, 255, .75);
}


/* NOTE */

.coverage-note {
    margin-top: 24px;

    display: flex;
    align-items: flex-start;

    gap: 13px;
}

.coverage-note>span {
    width: 34px;
    height: 1px;

    margin-top: 8px;

    flex: 0 0 auto;

    background: #0870aa;
}

.coverage-note p {
    max-width: 430px;

    margin: 0;

    color: #718899;

    font-size: 9.5px;

    line-height: 1.6;
}


/* =========================================================
   MAP PANEL
========================================================= */

.coverage-map-panel {
    min-width: 0;

    padding: 22px 24px 20px;

    background: rgba(255, 255, 255, .78);

    border: 1px solid #c7dce7;
}

.coverage-map-header {
    margin-bottom: 12px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 25px;
}

.coverage-map-header>div:first-child>span {
    display: block;

    margin-bottom: 4px;

    color: #8195a4;

    font-size: 8px;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.coverage-map-header>div:first-child>strong {
    color: #123f66;

    font-size: 16px;
    font-weight: 400;
}

.coverage-stat {
    text-align: right;
}

.coverage-stat strong {
    display: block;

    color: #0870aa;

    font-size: 35px;
    font-weight: 300;

    line-height: .9;
}

.coverage-stat span {
    color: #718899;

    font-size: 8px;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* LEAFLET MAP */

#coverage-map {
    width: 100%;
    height: 445px;

    background: transparent;
}


/* remove normal leaflet chrome feel */

#coverage-map .leaflet-control-container {
    display: none;
}

#coverage-map .leaflet-pane,
#coverage-map .leaflet-map-pane {
    outline: none;
}


/* COUNTY LABEL */

.coverage-map-label {
    padding: 4px 7px !important;

    background: #ffffff !important;

    border: 1px solid #c5dbe6 !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    color: #123f66 !important;

    font-family: inherit !important;

    font-size: 9px !important;
    font-weight: 500 !important;

    white-space: nowrap;
}

.coverage-map-label::before {
    display: none !important;
}


/* LEGEND */

.coverage-map-legend {
    padding-top: 13px;

    display: flex;
    gap: 24px;

    border-top: 1px solid #d5e4eb;
}

.coverage-map-legend span {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #758b9b;

    font-size: 8px;
}

.coverage-map-legend i {
    width: 14px;
    height: 8px;

    display: block;
}

.coverage-legend-pilot {
    background: #0870aa;
}

.coverage-legend-country {
    background: #e5edf1;

    border: 1px solid #9fb7c5;
}


/* =========================================================
   CONTEXT
========================================================= */

.coverage-context {
    padding: 44px 5%;

    background: #ffffff;
}

.coverage-context-inner {
    width: min(1240px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #d1e1e9;
    border-left: 1px solid #d1e1e9;
}

.coverage-context-inner>div {
    padding: 26px;

    border-right: 1px solid #d1e1e9;
    border-bottom: 1px solid #d1e1e9;
}

.coverage-context-inner span {
    display: block;

    margin-bottom: 13px;

    color: #0870aa;

    font-size: 8px;
    letter-spacing: 1.5px;
}

.coverage-context-inner strong {
    color: #123f66;

    font-size: 16px;
    font-weight: 400;
}

.coverage-context-inner p {
    margin: 8px 0 0;

    color: #788d9d;

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   CTA
========================================================= */

.coverage-partner {
    padding: 38px 5%;

    background: #dceef8;
}

.coverage-partner-inner {
    width: min(1240px, 100%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.coverage-partner-inner>div>span {
    display: block;

    margin-bottom: 9px;

    color: #0870aa;

    font-size: 8px;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.coverage-partner-inner h2 {
    margin: 0;

    color: #123f66;

    font-size: clamp(25px, 2.6vw, 35px);
    font-weight: 300;
}

.coverage-partner-button {
    min-height: 50px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;

    gap: 20px;

    flex-shrink: 0;

    background: #075781;

    color: #ffffff;

    font-size: 10px;
    font-weight: 500;

    text-decoration: none;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .coverage-hero-inner {
        grid-template-columns: 1fr;
    }

    #coverage-map {
        height: 400px;
    }

}

@media (max-width: 650px) {

    .coverage-context-inner {
        grid-template-columns: 1fr;
    }

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

    .coverage-partner-button {
        width: 100%;
        justify-content: center;
    }

    #coverage-map {
        height: 360px;
    }

}

/* =========================================================
   PLANNED COVERAGE — REAL INTERACTIVE MAP
========================================================= */

#coverage-map {
    width: 100%;
    height: 555px;

    background: #f9fcfd;

    cursor: grab;
}


#coverage-map:active {
    cursor: grabbing;
}


/* make the geographic map occupy the panel */

.coverage-map-panel {
    padding: 20px 20px 16px;
}


/* BACK TO KENYA */

.coverage-map-back {
    min-height: 38px;

    padding: 0 14px;

    display: flex;
    align-items: center;

    gap: 8px;

    border: 1px solid #c5dbe6;

    background: rgba(255, 255, 255, .95);

    color: #123f66;

    font-family: inherit;

    font-size: 10px;

    cursor: pointer;

    box-shadow: none;
}


.coverage-map-back span {
    color: #0870aa;

    font-size: 15px;
}


/* COUNTY TOOLTIP */

.coverage-map-label {
    padding: 5px 8px !important;

    background: #ffffff !important;

    border: 1px solid #c5dbe6 !important;

    border-radius: 2px !important;

    box-shadow: none !important;

    color: #123f66 !important;

    font-family: inherit !important;

    font-size: 9px !important;

    font-weight: 500 !important;
}


.coverage-map-label::before {
    display: none !important;
}


/* Leaflet itself should remain clean */

#coverage-map .leaflet-container {
    font-family: inherit;
}


@media (max-width: 900px) {

    #coverage-map {
        height: 500px;
    }

}


@media (max-width: 650px) {

    #coverage-map {
        height: 430px;
    }

}

/* =========================================================
   PLANNED COVERAGE — STATIC KENYA MAP
========================================================= */

.coverage-static-page {
    width: 100%;
    overflow: hidden;
}


.coverage-static-hero {
    padding: 48px 5% 54px;

    background: #eef6fa;
}


.coverage-static-inner {
    width: min(1240px, 100%);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(350px, .78fr) minmax(0, 1.22fr);

    align-items: center;

    gap: 58px;
}



/* =========================================================
   LEFT COPY
========================================================= */

.coverage-static-label {
    display: block;

    margin-bottom: 16px;

    color: #0870aa;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 3px;
    text-transform: uppercase;
}


.coverage-static-copy h1 {
    margin: 0 0 24px;

    color: #123f66;

    font-size: clamp(46px, 4.4vw, 63px);
    font-weight: 300;

    line-height: 1.05;

    letter-spacing: -1.6px;
}


.coverage-static-copy h1 span {
    display: block;

    color: #0870aa;
}


.coverage-static-intro {
    max-width: 490px;

    margin: 0;

    color: #718899;

    font-size: 13px;
    font-weight: 300;

    line-height: 1.75;
}



/* =========================================================
   COUNTY ROWS
========================================================= */

.coverage-static-counties {
    margin-top: 31px;

    border-top: 1px solid #c6dce7;
}


.coverage-static-county {
    min-height: 60px;

    padding: 13px 8px;

    display: flex;
    align-items: center;

    gap: 15px;

    border-bottom: 1px solid #d2e2ea;
}


.coverage-static-county>span {
    color: #0870aa;

    font-size: 8px;

    letter-spacing: 1.5px;
}


.coverage-static-county strong {
    display: block;

    color: #123f66;

    font-size: 13px;
    font-weight: 400;
}


.coverage-static-county small {
    display: block;

    margin-top: 3px;

    color: #8397a5;

    font-size: 9px;
}



/* NOTE */

.coverage-static-note {
    margin-top: 23px;

    display: flex;
    align-items: flex-start;

    gap: 13px;
}


.coverage-static-note>span {
    width: 34px;
    height: 1px;

    margin-top: 8px;

    flex-shrink: 0;

    background: #0870aa;
}


.coverage-static-note p {
    margin: 0;

    color: #748b9b;

    font-size: 9px;

    line-height: 1.6;
}



/* =========================================================
   MAP CARD
========================================================= */

.coverage-static-map-card {
    min-width: 0;

    padding: 20px 23px 16px;

    background: #ffffff;

    border: 1px solid #c7dce7;
}


.coverage-static-map-header {
    margin-bottom: 5px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}


.coverage-static-map-header>div:first-child>span {
    display: block;

    margin-bottom: 4px;

    color: #8296a4;

    font-size: 8px;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.coverage-static-map-header>div:first-child>strong {
    color: #123f66;

    font-size: 16px;
    font-weight: 400;
}


.coverage-static-stat {
    text-align: right;
}


.coverage-static-stat strong {
    display: block;

    color: #0870aa;

    font-size: 38px;
    font-weight: 300;

    line-height: .9;
}


.coverage-static-stat span {
    color: #7c919f;

    font-size: 8px;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}



/* =========================================================
   MAP
========================================================= */

.coverage-static-map {
    position: relative;

    width: 100%;
    height: 530px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


.coverage-static-map img {
    width: auto;
    height: 96%;

    max-width: 100%;

    object-fit: contain;

    display: block;

    user-select: none;

    animation:
        coverageMapAppear 1.1s cubic-bezier(.22, 1, .36, 1) both;
}



/* =========================================================
   PINS
========================================================= */

.coverage-pin {
    position: absolute;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 7px;

    opacity: 0;

    transform:
        translate(-50%, -100%) translateY(-18px);

    animation:
        coveragePinDrop .75s cubic-bezier(.22, 1, .36, 1) forwards;
}


/* approximate positions on kenyanmap.png */

.coverage-pin-trans {
    left: 22.5%;
    top: 55%;

    animation-delay: .8s;
}


.coverage-pin-bungoma {
    left: 18.5%;
    top: 59.5%;

    animation-delay: 1.55s;
}


.coverage-pin-kakamega {
    left: 22%;
    top: 62.5%;

    animation-delay: 2.3s;
}



.coverage-pin-marker {
    position: relative;

    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


.coverage-pin-marker svg {
    width: 31px;
    height: 31px;

    overflow: visible;

    fill: #0870aa;

    stroke: #ffffff;

    stroke-width: 1.3;
}



/* subtle pulse */

.coverage-pin-marker::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 20px;
    height: 20px;

    border: 1px solid rgba(8, 112, 170, .55);

    border-radius: 50%;

    transform:
        translate(-50%, -50%) scale(.5);

    opacity: 0;

    animation:
        coveragePinPulse 2s ease-out infinite;

    animation-delay: 3s;
}



.coverage-pin-label {
    padding: 5px 8px;

    background: rgba(255, 255, 255, .95);

    border: 1px solid #c7dce7;

    color: #123f66;

    font-size: 9px;
    font-weight: 500;

    white-space: nowrap;
}



/* =========================================================
   LEGEND
========================================================= */

.coverage-static-legend {
    padding-top: 13px;

    border-top: 1px solid #d4e3ea;
}


.coverage-static-legend span {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #758b9b;

    font-size: 8px;
}


.coverage-static-legend i {
    width: 15px;
    height: 8px;

    background: #0870aa;
}



/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes coverageMapAppear {

    from {
        opacity: 0;
        transform: scale(.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


@keyframes coveragePinDrop {

    from {
        opacity: 0;

        transform:
            translate(-50%, -100%) translateY(-20px) scale(.75);
    }

    to {
        opacity: 1;

        transform:
            translate(-50%, -100%) translateY(0) scale(1);
    }

}


@keyframes coveragePinPulse {

    0% {
        opacity: .7;

        transform:
            translate(-50%, -50%) scale(.55);
    }

    75% {
        opacity: 0;

        transform:
            translate(-50%, -50%) scale(2.1);
    }

    100% {
        opacity: 0;
    }

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .coverage-static-inner {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .coverage-static-map {
        height: 500px;
    }

}


@media (max-width: 650px) {

    .coverage-static-hero {
        padding:
            35px 5% 40px;
    }


    .coverage-static-copy h1 {
        font-size: 44px;
    }


    .coverage-static-map-card {
        padding:
            17px 14px 14px;
    }


    .coverage-static-map {
        height: 400px;
    }


    .coverage-pin-label {
        display: none;
    }


    .coverage-pin-marker,
    .coverage-pin-marker svg {
        width: 26px;
        height: 26px;
    }

}



/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {

    .coverage-static-map img,
    .coverage-pin,
    .coverage-pin-marker::after {
        animation: none !important;

        opacity: 1 !important;
    }

}

/* =========================================================
   PLANNED COVERAGE — LARGE STATIC MAP
========================================================= */

.coverage-static-page {
    width: 100%;
    overflow: hidden;
}


/* MAIN SECTION */

.coverage-static-hero {
    padding: 42px 5% 48px;

    background: #eef6fa;
}


.coverage-static-inner {
    width: min(1280px, 100%);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(340px, .72fr) minmax(0, 1.28fr);

    align-items: center;

    gap: 42px;
}



/* =========================================================
   LEFT SIDE
========================================================= */

.coverage-static-label {
    display: block;

    margin-bottom: 15px;

    color: #0870aa;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.coverage-static-copy h1 {
    margin: 0 0 24px;

    color: #123f66;

    font-size: clamp(47px, 4.5vw, 64px);

    font-weight: 300;

    line-height: 1.03;

    letter-spacing: -1.6px;
}


.coverage-static-copy h1 span {
    display: block;

    color: #0870aa;
}


.coverage-static-intro {
    max-width: 485px;

    margin: 0;

    color: #718899;

    font-size: 13px;

    line-height: 1.75;
}



/* COUNTY LIST */

.coverage-static-counties {
    margin-top: 29px;

    border-top: 1px solid #c6dce7;
}


.coverage-static-county {
    min-height: 59px;

    padding: 12px 7px;

    display: flex;
    align-items: center;

    gap: 15px;

    border-bottom: 1px solid #d2e2ea;
}


.coverage-static-county>span {
    color: #0870aa;

    font-size: 8px;

    letter-spacing: 1.4px;
}


.coverage-static-county strong {
    display: block;

    color: #123f66;

    font-size: 13px;

    font-weight: 400;
}


.coverage-static-county small {
    display: block;

    margin-top: 2px;

    color: #8397a5;

    font-size: 9px;
}


.coverage-static-note {
    margin-top: 22px;

    display: flex;

    gap: 13px;

    align-items: flex-start;
}


.coverage-static-note>span {
    width: 34px;
    height: 1px;

    margin-top: 8px;

    background: #0870aa;

    flex-shrink: 0;
}


.coverage-static-note p {
    margin: 0;

    color: #748b9b;

    font-size: 9px;

    line-height: 1.6;
}



/* =========================================================
   MAP AREA — NO CARD BACKGROUND
========================================================= */

.coverage-static-map-card {
    position: relative;

    min-width: 0;

    padding: 0;

    background: transparent;

    border: none;
}


/* MAP HEADER */

.coverage-static-map-header {
    position: relative;

    z-index: 10;

    margin-bottom: 5px;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;
}


.coverage-static-map-header>div:first-child>span {
    display: block;

    margin-bottom: 3px;

    color: #8296a4;

    font-size: 8px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.coverage-static-map-header>div:first-child>strong {
    color: #123f66;

    font-size: 16px;

    font-weight: 400;
}


.coverage-static-stat {
    text-align: right;
}


.coverage-static-stat strong {
    display: block;

    color: #0870aa;

    font-size: 40px;

    font-weight: 300;

    line-height: .9;
}


.coverage-static-stat span {
    color: #7c919f;

    font-size: 8px;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}



/* =========================================================
   ACTUAL MAP STAGE
========================================================= */

.coverage-static-map {
    position: relative;

    width: 100%;

    height: 570px;

    overflow: visible;

    display: flex;

    justify-content: center;

    align-items: center;
}


.coverage-static-map img {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 108%;

    max-width: none;

    height: auto;

    transform:
        translate(-50%, -50%);

    object-fit: contain;

    display: block;

    user-select: none;

    pointer-events: none;
}



/* =========================================================
   LOCATION PINS
========================================================= */

.coverage-pin {
    position: absolute;

    z-index: 20;

    display: flex;

    align-items: center;

    gap: 6px;

    opacity: 0;

    transform:
        translate(-50%, -100%);

    animation:
        coveragePinDrop .7s cubic-bezier(.22, 1, .36, 1) forwards;
}



/*
   IMPORTANT:
   these coordinates are now moved INSIDE
   the western Kenya region.
*/

.coverage-pin-trans {
    left: 31.5%;
    top: 55%;

    animation-delay: .7s;
}


.coverage-pin-bungoma {
    left: 28.5%;
    top: 59.5%;

    animation-delay: 1.4s;
}


.coverage-pin-kakamega {
    left: 31.5%;
    top: 63%;

    animation-delay: 2.1s;
}



.coverage-pin-marker {
    position: relative;

    width: 30px;
    height: 30px;

    flex-shrink: 0;
}


.coverage-pin-marker svg {
    width: 30px;
    height: 30px;

    fill: #0870aa;

    stroke: #ffffff;

    stroke-width: 1.3;

    overflow: visible;
}



/* pulse */

.coverage-pin-marker::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 18px;
    height: 18px;

    border: 1px solid rgba(8, 112, 170, .6);

    border-radius: 50%;

    transform:
        translate(-50%, -50%) scale(.5);

    opacity: 0;

    animation:
        coveragePinPulse 2s ease-out infinite;

    animation-delay: 2.8s;
}



/* LABELS */

.coverage-pin-label {
    padding: 5px 8px;

    background: rgba(255, 255, 255, .96);

    border: 1px solid #c5dce8;

    color: #123f66;

    font-size: 9px;

    white-space: nowrap;
}



/* =========================================================
   REMOVE OLD LEGEND BAR
========================================================= */

.coverage-static-legend {
    display: none;
}



/* =========================================================
   ANIMATION
========================================================= */

@keyframes coveragePinDrop {

    from {
        opacity: 0;

        transform:
            translate(-50%, -100%) translateY(-18px) scale(.75);
    }

    to {
        opacity: 1;

        transform:
            translate(-50%, -100%) translateY(0) scale(1);
    }

}


@keyframes coveragePinPulse {

    0% {
        opacity: .65;

        transform:
            translate(-50%, -50%) scale(.6);
    }

    75% {
        opacity: 0;

        transform:
            translate(-50%, -50%) scale(2.2);
    }

    100% {
        opacity: 0;
    }

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .coverage-static-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .coverage-static-map {
        height: 560px;
    }


    .coverage-static-map img {
        width: 95%;
    }

}


@media (max-width: 650px) {

    .coverage-static-hero {
        padding:
            34px 5% 38px;
    }


    .coverage-static-copy h1 {
        font-size: 44px;
    }


    .coverage-static-map {
        height: 420px;
    }


    .coverage-static-map img {
        width: 105%;
    }


    .coverage-pin-label {
        display: none;
    }

}

/* =========================================================
   PLANNED COVERAGE MAP — FINAL POSITIONING FIX
========================================================= */

.coverage-static-map-card {
    background: transparent;
    border: none;
    padding: 0;
}


/* area available for the map */

.coverage-static-map {
    width: 100%;
    height: 565px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
}


/*
   This wrapper is the key.
   The map AND pins now share the same coordinate system.
*/

.coverage-map-art {
    position: relative;

    height: 100%;
    width: fit-content;

    display: inline-block;
}


/* actual Kenya image */

.coverage-map-art>img {
    position: relative;

    width: auto;
    height: 100%;

    max-width: none;

    display: block;

    object-fit: contain;

    pointer-events: none;
    user-select: none;
}


/* =========================================================
   PINS
========================================================= */

.coverage-pin {
    position: absolute;
    z-index: 10;

    display: flex;
    align-items: center;

    gap: 6px;

    opacity: 0;

    transform:
        translate(-50%, -100%);

    animation:
        coveragePinDrop .7s cubic-bezier(.22, 1, .36, 1) forwards;
}


/*
   These percentages are now relative to KENYA itself,
   not the whole right-hand section.
*/

.coverage-pin-trans {
    left: 22.5%;
    top: 57%;

    animation-delay: .7s;
}


.coverage-pin-bungoma {
    left: 18.5%;
    top: 62%;

    animation-delay: 1.4s;
}


.coverage-pin-kakamega {
    left: 22%;
    top: 65%;

    animation-delay: 2.1s;
}


/* marker */

.coverage-pin-marker {
    position: relative;

    width: 29px;
    height: 29px;

    flex-shrink: 0;
}


.coverage-pin-marker svg {
    width: 29px;
    height: 29px;

    fill: #0870aa;
    stroke: #ffffff;

    stroke-width: 1.3;

    overflow: visible;
}


/* label */

.coverage-pin-label {
    padding: 5px 8px;

    background: rgba(255, 255, 255, .96);

    border: 1px solid #c5dce8;

    color: #123f66;

    font-size: 9px;

    white-space: nowrap;
}


/* animation */

@keyframes coveragePinDrop {

    from {
        opacity: 0;

        transform:
            translate(-50%, -100%) translateY(-18px) scale(.75);
    }

    to {
        opacity: 1;

        transform:
            translate(-50%, -100%) translateY(0) scale(1);
    }

}


/* TABLET */

@media (max-width: 950px) {

    .coverage-static-map {
        height: 520px;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .coverage-static-map {
        height: 410px;
    }

    .coverage-pin-label {
        display: none;
    }

}

/* =========================================================
   PLANNED COVERAGE PAGE — CLEAN VERSION
========================================================= */

.pc-page {
    width: 100%;
    overflow: hidden;

    color: #123f66;
}


/* =========================================================
   HERO
========================================================= */

.pc-hero {
    padding: 48px 5% 54px;

    background: #eef6fa;
}


.pc-hero-inner {
    width: min(1280px, 100%);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(360px, .76fr) minmax(0, 1.24fr);

    align-items: center;

    gap: 52px;
}


/* LABEL */

.pc-label {
    display: block;

    margin-bottom: 15px;

    color: #0870aa;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* HERO TITLE */

.pc-hero-copy h1 {
    margin: 0 0 24px;

    color: #123f66;

    font-size: clamp(48px, 4.4vw, 64px);
    font-weight: 300;

    line-height: 1.04;

    letter-spacing: -1.7px;
}


.pc-hero-copy h1 span {
    display: block;

    color: #0870aa;
}


/* INTRO */

.pc-intro {
    max-width: 500px;

    margin: 0;

    color: #718899;

    font-size: 13px;
    font-weight: 300;

    line-height: 1.75;
}


/* =========================================================
   HERO COUNTY LIST
========================================================= */

.pc-county-list {
    margin-top: 30px;

    border-top: 1px solid #c8dce7;
}


.pc-county-row {
    min-height: 60px;

    padding: 12px 8px;

    display: flex;
    align-items: center;

    gap: 16px;

    border-bottom: 1px solid #d1e1e9;
}


.pc-number {
    color: #0870aa;

    font-size: 8px;

    letter-spacing: 1.4px;
}


.pc-county-row strong {
    display: block;

    color: #123f66;

    font-size: 13px;
    font-weight: 400;
}


.pc-county-row small {
    display: block;

    margin-top: 3px;

    color: #8397a5;

    font-size: 9px;
}


/* NOTE */

.pc-note {
    margin-top: 22px;

    display: flex;

    align-items: flex-start;

    gap: 13px;
}


.pc-note>span {
    width: 34px;
    height: 1px;

    margin-top: 8px;

    flex-shrink: 0;

    background: #0870aa;
}


.pc-note p {
    margin: 0;

    max-width: 440px;

    color: #748b9b;

    font-size: 9px;

    line-height: 1.6;
}


/* =========================================================
   MAP
========================================================= */

.pc-map-area {
    min-width: 0;

    background: transparent;
}


.pc-map-top {
    margin-bottom: 6px;

    display: flex;
    justify-content: space-between;

    align-items: flex-end;

    gap: 25px;
}


.pc-map-top>div:first-child>span {
    display: block;

    margin-bottom: 3px;

    color: #8296a4;

    font-size: 8px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.pc-map-top>div:first-child>strong {
    color: #123f66;

    font-size: 16px;
    font-weight: 400;
}


/* MAP STAT */

.pc-map-stat {
    text-align: right;
}


.pc-map-stat strong {
    display: block;

    color: #0870aa;

    font-size: 40px;
    font-weight: 300;

    line-height: .9;
}


.pc-map-stat span {
    color: #7c919f;

    font-size: 8px;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


/* MAP IMAGE */

.pc-map-image {
    width: 100%;

    height: 555px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: visible;
}


.pc-map-image img {
    width: auto;

    height: 100%;

    max-width: 100%;

    object-fit: contain;

    display: block;

    user-select: none;

    animation:
        pcMapEnter 1.2s cubic-bezier(.22, 1, .36, 1) both;
}


/* =========================================================
   INITIAL ROLLOUT
========================================================= */

.pc-rollout {
    padding: 62px 5%;

    background: #ffffff;
}


.pc-rollout-inner {
    width: min(1215px, 100%);

    margin: 0 auto;
}


.pc-section-heading {
    max-width: 760px;

    margin: 0 auto 38px;

    text-align: center;
}


.pc-section-heading h2 {
    margin: 0;

    color: #123f66;

    font-size: clamp(34px, 3.4vw, 46px);
    font-weight: 300;

    line-height: 1.15;
}


.pc-section-heading h2 span {
    color: #0870aa;
}


.pc-section-heading p {
    max-width: 660px;

    margin: 15px auto 0;

    color: #778d9c;

    font-size: 11px;

    line-height: 1.7;
}


/* ROLLOUT CARDS */

.pc-rollout-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #d0e0e8;
    border-left: 1px solid #d0e0e8;
}


.pc-rollout-card {
    min-height: 235px;

    padding: 28px 28px 24px;

    border-right: 1px solid #d0e0e8;
    border-bottom: 1px solid #d0e0e8;

    background: #ffffff;

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        background .28s ease;
}


.pc-rollout-card:hover {
    transform: translateY(-5px);

    background: #fbfdfe;

    box-shadow:
        0 16px 40px rgba(18, 63, 102, .07);
}


.pc-card-number {
    display: block;

    margin-bottom: 30px;

    color: #0870aa;

    font-size: 8px;

    letter-spacing: 1.5px;
}


.pc-rollout-card h3 {
    margin: 0;

    color: #123f66;

    font-size: 19px;
    font-weight: 400;
}


.pc-rollout-card p {
    margin: 11px 0 25px;

    color: #7a8f9e;

    font-size: 10px;

    line-height: 1.65;
}


.pc-card-status {
    color: #0870aa;

    font-size: 8px;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


/* =========================================================
   DEPLOYMENT APPROACH
========================================================= */

.pc-approach {
    padding: 58px 5%;

    background: #eef6fa;
}


.pc-approach-inner {
    width: min(1215px, 100%);

    margin: 0 auto;
}


.pc-approach-intro {
    margin-bottom: 34px;
}


.pc-approach-intro h2 {
    margin: 0;

    color: #123f66;

    font-size: clamp(34px, 3.4vw, 45px);
    font-weight: 300;
}


.pc-approach-intro h2 span {
    color: #0870aa;
}


.pc-approach-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #c7dce7;
}


.pc-approach-item {
    padding: 28px 28px 10px 0;

    display: flex;

    gap: 18px;

    border-right: 1px solid #c7dce7;
}


.pc-approach-item+.pc-approach-item {
    padding-left: 28px;
}


.pc-approach-item:last-child {
    border-right: none;
}


.pc-approach-item>span {
    color: #0870aa;

    font-size: 8px;
    letter-spacing: 1.3px;
}


.pc-approach-item strong {
    color: #123f66;

    font-size: 15px;
    font-weight: 400;
}


.pc-approach-item p {
    margin: 8px 0 0;

    color: #748b9b;

    font-size: 10px;

    line-height: 1.65;
}


/* =========================================================
   IMPACT CTA
========================================================= */

.pc-impact-cta {
    padding: 42px 5%;

    background: #dceef8;
}


.pc-impact-cta-inner {
    width: min(1215px, 100%);

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


.pc-impact-cta-inner h2 {
    margin: 0;

    color: #123f66;

    font-size: clamp(28px, 3vw, 39px);

    font-weight: 300;

    line-height: 1.15;
}


.pc-impact-cta-inner h2 span {
    display: block;

    color: #0870aa;
}


.pc-impact-cta-inner p {
    max-width: 640px;

    margin: 12px 0 0;

    color: #708899;

    font-size: 10px;

    line-height: 1.65;
}


/* BUTTON */

.pc-impact-button {
    min-height: 52px;

    padding: 0 25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    flex-shrink: 0;

    background: #075781;

    border: 1px solid #075781;

    color: #ffffff;

    font-size: 10px;
    font-weight: 500;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease;
}


.pc-impact-button:hover {
    background: #0870aa;

    transform: translateY(-2px);
}


/* =========================================================
   MAP ANIMATION
========================================================= */

@keyframes pcMapEnter {

    from {
        opacity: 0;

        transform:
            translateX(40px) scale(.97);
    }

    to {
        opacity: 1;

        transform:
            translateX(0) scale(1);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .pc-hero-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .pc-map-image {
        height: 520px;
    }


    .pc-rollout-grid,
    .pc-approach-grid {
        grid-template-columns: 1fr;
    }


    .pc-approach-item,
    .pc-approach-item+.pc-approach-item {
        padding:
            24px 0;

        border-right: none;

        border-bottom: 1px solid #c7dce7;
    }


    .pc-impact-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 650px) {

    .pc-hero {
        padding:
            35px 5% 40px;
    }


    .pc-hero-copy h1 {
        font-size: 44px;
    }


    .pc-map-image {
        height: 410px;
    }


    .pc-impact-button {
        width: 100%;
    }

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .pc-map-image img {
        animation: none !important;
    }

}

/* =========================================================
   PLANNED COVERAGE — COMPACT SPACING
========================================================= */

/* HERO */
.pc-hero {
    padding-top: 34px;
    padding-bottom: 36px;
}

.pc-hero-inner {
    gap: 38px;
}

.pc-map-image {
    height: 500px;
}


/* PILOT STRATEGY */
.pc-rollout {
    padding-top: 38px;
    padding-bottom: 42px;
}

.pc-section-heading {
    margin-bottom: 26px;
}

.pc-section-heading .pc-label {
    margin-bottom: 10px;
}

.pc-section-heading h2 {
    line-height: 1.08;
}

.pc-section-heading p {
    margin-top: 11px;
}


/* CARDS */
.pc-rollout-card {
    min-height: 190px;
    padding: 22px 28px 20px;
}

.pc-card-number {
    margin-bottom: 20px;
}

.pc-rollout-card p {
    margin-top: 8px;
    margin-bottom: 18px;
}


/* DEPLOYMENT APPROACH */
.pc-approach {
    padding-top: 40px;
    padding-bottom: 42px;
}

.pc-approach-intro {
    margin-bottom: 24px;
}


/* IMPACT CTA */
.pc-impact-cta {
    padding-top: 32px;
    padding-bottom: 32px;
}

.pc-impact-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.pc-partner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    padding: 18px 26px;

    border: 1px solid #08638f;
    background: transparent;
    color: #08638f;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.pc-partner-button:hover {
    background: #08638f;
    color: white;
}

/* =========================================================
   HERO
========================================================= */

.impact-hero {
    background: #f1f8fc;
    padding: 55px 0 55px;
}

.impact-hero-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 55px;
}

.impact-hero-content h1 {
    max-width: 620px;
    margin: 0;

    color: #064b76;
    font-size: clamp(42px, 4.4vw, 64px);
    line-height: 1.03;
    font-weight: 300;
    letter-spacing: -2px;
}

.impact-hero-content h1 span {
    display: block;
    color: #0886c8;
}

.impact-hero-content p {
    max-width: 560px;
    margin: 22px 0 0;

    color: #668399;
    font-size: 15px;
    line-height: 1.7;
}

.impact-hero-image {
    display: flex;
    justify-content: flex-end;
}

.impact-hero-image img {
    width: 100%;
    max-width: 520px;
    height: 360px;
    object-fit: cover;

    border: 1px solid #d9e8ef;
    box-shadow: 0 16px 35px rgba(0, 64, 99, 0.08);
    background: #ffffff;
}

/* FIX IMPACT SVG ICONS */

.impact-stat-card .impact-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 42px;
    overflow: hidden;

    margin-bottom: 20px;

    background: #e9f5fa;
}

.impact-stat-card .impact-icon svg {
    width: 22px !important;
    height: 22px !important;

    min-width: 22px;
    min-height: 22px;
    max-width: 22px;
    max-height: 22px;

    display: block;
    flex: 0 0 22px;
}

/* =========================================================
   IMPACT HERO — SIDE MARGIN FIX
========================================================= */

body .impact-page .impact-hero {
    width: 100% !important;
    padding: 55px 0 !important;
}

body .impact-page .impact-hero .impact-container {
    width: calc(100% - 140px) !important;
    max-width: 1210px !important;

    margin: 0 auto !important;
    padding: 0 !important;
}

body .impact-page .impact-hero-layout {
    display: grid !important;

    grid-template-columns: 1fr 1fr !important;

    align-items: center !important;

    gap: 70px !important;
}


/* LEFT HERO TEXT */

body .impact-page .impact-hero-content {
    width: 100% !important;
    max-width: 580px !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* RIGHT HERO IMAGE */

body .impact-page .impact-hero-image {
    width: 100% !important;

    display: flex !important;
    justify-content: flex-end !important;

    margin: 0 !important;
    padding: 0 !important;
}

body .impact-page .impact-hero-image img {
    width: 100% !important;
    max-width: 520px !important;

    height: 360px !important;

    object-fit: cover !important;

    display: block !important;
}


/* TABLET */

@media (max-width: 1000px) {

    body .impact-page .impact-hero .impact-container {
        width: calc(100% - 70px) !important;
    }

    body .impact-page .impact-hero-layout {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    body .impact-page .impact-hero-image {
        justify-content: flex-start !important;
    }

    body .impact-page .impact-hero-image img {
        max-width: 100% !important;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    body .impact-page .impact-hero .impact-container {
        width: calc(100% - 40px) !important;
    }

}

/* =========================================================
   IMPACT PAGE — FINAL OVERRIDE
   Paste at the VERY BOTTOM of style.css
========================================================= */


/* ---------------------------------------------------------
   PROJECTED IMPACT SECTION
--------------------------------------------------------- */

body .impact-page .impact-projected {
    width: 100% !important;
    padding: 70px 0 75px !important;
    margin: 0 !important;
    background: #ffffff !important;
}

body .impact-page .impact-projected .impact-container {
    width: calc(100% - 120px) !important;
    max-width: 1210px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}


/* ---------------------------------------------------------
   SECTION INTRO
--------------------------------------------------------- */

body .impact-page .impact-heading-row {
    display: block !important;
    width: 100% !important;
    margin: 0 0 40px !important;
    padding: 0 !important;
}

body .impact-page .impact-heading-row .impact-label {
    display: block !important;
    margin: 0 0 14px !important;
    padding: 0 !important;

    color: #087fbd !important;

    font-size: 10px !important;
    font-weight: 600 !important;

    line-height: 1.2 !important;

    letter-spacing: 4px !important;
    text-transform: uppercase !important;
}

body .impact-page .impact-heading-row h2 {
    display: block !important;

    width: 100% !important;
    max-width: 760px !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #074d77 !important;

    font-size: clamp(36px, 3.4vw, 49px) !important;
    font-weight: 300 !important;

    line-height: 1.08 !important;
    letter-spacing: -1.4px !important;
}

body .impact-page .impact-heading-row h2 span {
    display: block !important;
    color: #0787c8 !important;
}

body .impact-page .impact-heading-copy {
    display: block !important;

    width: 100% !important;
    max-width: 650px !important;

    margin: 20px 0 0 !important;
    padding: 0 !important;

    color: #6c8598 !important;

    font-size: 14px !important;
    font-weight: 400 !important;

    line-height: 1.7 !important;
}


/* ---------------------------------------------------------
   FOUR STAT CARDS
--------------------------------------------------------- */

body .impact-page .impact-stat-grid {
    display: grid !important;

    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    width: 100% !important;

    gap: 16px !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* CARD */

body .impact-page .impact-stat-grid .impact-stat-card {
    display: flex !important;
    flex-direction: column !important;

    min-width: 0 !important;
    min-height: 255px !important;

    margin: 0 !important;
    padding: 28px 26px !important;

    background: #f5fafc !important;

    border: 1px solid #d8e7ef !important;

    box-sizing: border-box !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease !important;
}

body .impact-page .impact-stat-grid .impact-stat-card:hover {
    transform: translateY(-4px) !important;

    background: #ffffff !important;

    box-shadow: 0 14px 35px rgba(0, 73, 110, 0.08) !important;
}


/* ---------------------------------------------------------
   CARD ICON
--------------------------------------------------------- */

body .impact-page .impact-stat-card .impact-icon {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 42px !important;
    height: 42px !important;

    min-width: 42px !important;
    min-height: 42px !important;

    max-width: 42px !important;
    max-height: 42px !important;

    flex: 0 0 42px !important;

    margin: 0 0 24px !important;
    padding: 0 !important;

    background: #e8f4f9 !important;
    color: #087db8 !important;

    overflow: hidden !important;
}

body .impact-page .impact-stat-card .impact-icon svg {
    display: block !important;

    width: 21px !important;
    height: 21px !important;

    min-width: 21px !important;
    min-height: 21px !important;

    max-width: 21px !important;
    max-height: 21px !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* ---------------------------------------------------------
   CARD NUMBER / MAIN WORD
--------------------------------------------------------- */

body .impact-page .impact-stat-card strong {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #087db8 !important;

    font-size: clamp(38px, 3.3vw, 52px) !important;
    font-weight: 300 !important;

    line-height: 1 !important;
    letter-spacing: -1.5px !important;
}


/* CARD TITLE */

body .impact-page .impact-stat-card h3 {
    display: block !important;

    margin: 14px 0 0 !important;
    padding: 0 !important;

    color: #064a74 !important;

    font-size: 16px !important;
    font-weight: 600 !important;

    line-height: 1.35 !important;
}


/* CARD DESCRIPTION */

body .impact-page .impact-stat-card p {
    display: block !important;

    margin: 17px 0 0 !important;
    padding: 0 !important;

    color: #6d8799 !important;

    font-size: 13px !important;
    font-weight: 400 !important;

    line-height: 1.7 !important;
}


/* ---------------------------------------------------------
   PROJECTED IMPACT DISCLAIMER
--------------------------------------------------------- */

body .impact-page .impact-note {
    display: block !important;

    width: 100% !important;

    margin: 28px 0 0 !important;
    padding: 18px 0 0 !important;

    border-top: 1px solid #d6e5ed !important;

    color: #8198a8 !important;

    font-size: 10px !important;
    font-weight: 400 !important;

    line-height: 1.6 !important;
}


/* =========================================================
   PARTNER CTA
========================================================= */

body .impact-page .impact-partner {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 62px 0 !important;

    background: #08658f !important;
}

body .impact-page .impact-partner .impact-container {
    width: calc(100% - 120px) !important;
    max-width: 1210px !important;

    margin: 0 auto !important;
    padding: 0 !important;
}

body .impact-page .impact-partner-inner {
    display: flex !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 70px !important;
}


/* CTA TEXT */

body .impact-page .impact-partner .impact-label {
    display: block !important;

    margin: 0 0 14px !important;

    color: #b8e3f5 !important;

    font-size: 10px !important;
    font-weight: 600 !important;

    letter-spacing: 4px !important;
    text-transform: uppercase !important;
}

body .impact-page .impact-partner h2 {
    max-width: 700px !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: clamp(34px, 3.2vw, 47px) !important;
    font-weight: 300 !important;

    line-height: 1.08 !important;
    letter-spacing: -1.3px !important;
}

body .impact-page .impact-partner h2 span {
    display: block !important;

    color: #b5e1f3 !important;
}

body .impact-page .impact-partner p {
    max-width: 680px !important;

    margin: 19px 0 0 !important;
    padding: 0 !important;

    color: rgba(255, 255, 255, 0.76) !important;

    font-size: 14px !important;
    font-weight: 400 !important;

    line-height: 1.7 !important;
}


/* CTA BUTTON */

body .impact-page .impact-partner-btn {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: space-between !important;

    min-width: 210px !important;

    gap: 35px !important;

    margin: 0 !important;
    padding: 19px 23px !important;

    background: #ffffff !important;
    color: #07577e !important;

    border: none !important;

    text-decoration: none !important;

    font-size: 13px !important;
    font-weight: 600 !important;

    line-height: 1 !important;

    white-space: nowrap !important;

    box-sizing: border-box !important;

    transition:
        transform 0.25s ease,
        background 0.25s ease !important;
}

body .impact-page .impact-partner-btn:hover {
    background: #eaf7fc !important;

    transform: translateY(-3px) !important;
}

body .impact-page .impact-partartner-btn span,
body .impact-page .impact-partner-btn span {
    display: inline-block !important;

    font-size: 18px !important;

    transition: transform 0.25s ease !important;
}

body .impact-page .impact-partner-btn:hover span {
    transform: translateX(4px) !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    body .impact-page .impact-projected .impact-container,
    body .impact-page .impact-partner .impact-container {
        width: calc(100% - 70px) !important;
    }

    body .impact-page .impact-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body .impact-page .impact-partner-inner {
        flex-direction: column !important;

        align-items: flex-start !important;

        gap: 32px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    body .impact-page .impact-projected {
        padding: 55px 0 !important;
    }

    body .impact-page .impact-projected .impact-container,
    body .impact-page .impact-partner .impact-container {
        width: calc(100% - 40px) !important;
    }

    body .impact-page .impact-heading-row h2 {
        font-size: 35px !important;
    }

    body .impact-page .impact-stat-grid {
        grid-template-columns: 1fr !important;

        gap: 12px !important;
    }

    body .impact-page .impact-stat-grid .impact-stat-card {
        min-height: auto !important;

        padding: 24px !important;
    }

    body .impact-page .impact-partner {
        padding: 50px 0 !important;
    }

    body .impact-page .impact-partner h2 {
        font-size: 36px !important;
    }

    body .impact-page .impact-partner-btn {
        width: 100% !important;
    }

}

/* =========================================================
   IMPACT PAGE HERO — FINAL VERSION
========================================================= */

body .impact-page .impact-main-hero {
    position: relative;

    width: 100%;
    min-height: 560px;

    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    background-image: url("Assets/impacthero.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* =========================================================
   DARK GRADIENT
========================================================= */

body .impact-page .impact-main-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(3, 38, 62, 0.94) 0%,
            rgba(3, 38, 62, 0.86) 30%,
            rgba(3, 38, 62, 0.65) 48%,
            rgba(3, 38, 62, 0.25) 68%,
            rgba(3, 38, 62, 0.05) 100%);
}


/* =========================================================
   INNER CONTAINER
========================================================= */

body .impact-page .impact-main-hero-inner {
    position: relative;

    z-index: 2;

    width: calc(100% - 140px);
    max-width: 1210px;

    margin: 0 auto;

    padding: 85px 0;

    box-sizing: border-box;
}


/* =========================================================
   TEXT CONTENT
========================================================= */

body .impact-page .impact-main-hero-content {
    width: 100%;
    max-width: 670px;
}


/* SMALL LABEL */

body .impact-page .impact-main-hero-label {
    display: block;

    margin: 0 0 18px;

    color: #bde8fa;

    font-size: 10px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: 4px;
    text-transform: uppercase;
}


/* =========================================================
   HEADLINE
========================================================= */

body .impact-page .impact-main-hero h1 {
    max-width: 670px;

    margin: 0;
    padding: 0;

    color: #ffffff;

    font-size: clamp(43px, 4.6vw, 65px);
    font-weight: 300;

    line-height: 1.03;

    letter-spacing: -2px;
}

body .impact-page .impact-main-hero h1 span {
    display: block;

    color: #bce8fa;
}


/* =========================================================
   DESCRIPTION
========================================================= */

body .impact-page .impact-main-hero p {
    max-width: 590px;

    margin: 25px 0 0;

    padding: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 15px;
    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   BUTTON AREA
========================================================= */

body .impact-page .impact-main-hero-actions {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 30px;
}


/* PRIMARY BUTTON */

body .impact-page .impact-main-hero-primary {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 17px 22px;

    background: #078bd3;

    color: #ffffff;

    border: 1px solid #078bd3;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

body .impact-page .impact-main-hero-primary:hover {
    background: #0679ba;

    transform: translateY(-2px);
}

body .impact-page .impact-main-hero-primary span {
    font-size: 18px;

    transition: transform 0.25s ease;
}

body .impact-page .impact-main-hero-primary:hover span {
    transform: translateX(4px);
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

body .impact-page .impact-main-hero-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 17px 22px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.55);

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    backdrop-filter: blur(4px);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

body .impact-page .impact-main-hero-secondary:hover {
    background: #ffffff;

    color: #07577e;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    body .impact-page .impact-main-hero {
        min-height: 540px;

        background-position: 65% center;
    }

    body .impact-page .impact-main-hero-inner {
        width: calc(100% - 70px);

        padding: 75px 0;
    }

    body .impact-page .impact-main-hero-content {
        max-width: 600px;
    }

    body .impact-page .impact-main-hero h1 {
        font-size: 52px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    body .impact-page .impact-main-hero {
        min-height: 620px;

        align-items: flex-end;

        background-position: 65% center;
    }

    body .impact-page .impact-main-hero-overlay {
        background:
            linear-gradient(0deg,
                rgba(3, 38, 62, 0.98) 0%,
                rgba(3, 38, 62, 0.90) 42%,
                rgba(3, 38, 62, 0.50) 72%,
                rgba(3, 38, 62, 0.15) 100%);
    }

    body .impact-page .impact-main-hero-inner {
        width: calc(100% - 40px);

        padding: 55px 0;
    }

    body .impact-page .impact-main-hero h1 {
        font-size: 40px;

        line-height: 1.06;

        letter-spacing: -1.4px;
    }

    body .impact-page .impact-main-hero p {
        font-size: 14px;
    }

    body .impact-page .impact-main-hero-actions {
        flex-direction: column;

        align-items: stretch;

        gap: 10px;
    }

    body .impact-page .impact-main-hero-primary,
    body .impact-page .impact-main-hero-secondary {
        width: 100%;

        box-sizing: border-box;
    }

}

/* =========================================================
   IMPACT CTA — MATCH SOLUTION PAGE CTA
========================================================= */

body .impact-page .impact-partner {
    background: #d9ebf5 !important;
    /* light blue like first image */
    padding: 58px 0 !important;
}

body .impact-page .impact-partner .impact-label {
    color: #5b86a0 !important;
}

body .impact-page .impact-partner h2 {
    color: #0b4e78 !important;
}

body .impact-page .impact-partner h2 span {
    color: #2d79a5 !important;
}

body .impact-page .impact-partner p {
    color: #6b8798 !important;
}

body .impact-page .impact-partner-btn {
    background: #0b5f8f !important;
    color: #ffffff !important;
    border: none !important;
}

body .impact-page .impact-partner-btn:hover {
    background: #094f77 !important;
}

body .impact-page .impact-partner-btn span {
    color: #ffffff !important;
}

/* =========================================================
   IMPACT PAGE ANIMATIONS
========================================================= */


/* HERO LOAD ANIMATION */

.impact-hero-animate {
    opacity: 0;
    transform: translateY(24px);

    animation: impactHeroReveal 0.8s ease forwards;
}

.impact-delay-1 {
    animation-delay: 0.1s;
}

.impact-delay-2 {
    animation-delay: 0.25s;
}

.impact-delay-3 {
    animation-delay: 0.4s;
}

.impact-delay-4 {
    animation-delay: 0.55s;
}

@keyframes impactHeroReveal {

    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.impact-reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.impact-reveal.impact-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   STAT CARD STAGGER
========================================================= */

.impact-card-reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.65s ease,
        transform 0.65s ease,
        box-shadow 0.25s ease;
}

.impact-card-reveal.impact-visible {
    opacity: 1;

    transform: translateY(0);
}


/* stagger cards */

.impact-card-reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.impact-card-reveal:nth-child(2) {
    transition-delay: 0.15s;
}

.impact-card-reveal:nth-child(3) {
    transition-delay: 0.25s;
}

.impact-card-reveal:nth-child(4) {
    transition-delay: 0.35s;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .impact-hero-animate,
    .impact-reveal,
    .impact-card-reveal {

        animation: none !important;

        transition: none !important;

        opacity: 1 !important;

        transform: none !important;
    }

}

/* =========================================================
   IMPACT PAGE — FINAL MOTION SYSTEM
========================================================= */


/* =========================================================
   1. HERO IMAGE CINEMATIC ZOOM
========================================================= */

/*
   The image currently sits as a background on .impact-main-hero.
   We move it onto ::before so the IMAGE can animate independently
   from the text and dark overlay.
*/

body .impact-page .impact-main-hero {
    position: relative !important;
    overflow: hidden !important;

    /* remove original background from the section itself */
    background-image: none !important;
}


/* animated background image */

body .impact-page .impact-main-hero::before {
    content: "";

    position: absolute;
    inset: -20px;

    background-image: url("Assets/impacthero.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    z-index: 0;

    transform: scale(1.08);

    animation: impactHeroImageReveal 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}


/* dark overlay remains above the image */

body .impact-page .impact-main-hero-overlay {
    position: absolute !important;
    inset: 0 !important;

    z-index: 1 !important;
}


/* text remains above everything */

body .impact-page .impact-main-hero-inner {
    position: relative !important;

    z-index: 2 !important;
}


@keyframes impactHeroImageReveal {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }

}


/* =========================================================
   2. GENERAL SCROLL REVEAL
========================================================= */

.impact-scroll-reveal {
    opacity: 0;

    transform: translateY(34px);

    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


.impact-scroll-reveal.impact-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   3. IMPACT CARDS
========================================================= */

body .impact-page .impact-stat-card {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.25s ease,
        background 0.25s ease;
}


body .impact-page .impact-stat-card.impact-visible {
    opacity: 1;

    transform: translateY(0);
}


/* stagger from left to right */

body .impact-page .impact-stat-card:nth-child(1) {
    transition-delay: 0.05s;
}

body .impact-page .impact-stat-card:nth-child(2) {
    transition-delay: 0.14s;
}

body .impact-page .impact-stat-card:nth-child(3) {
    transition-delay: 0.23s;
}

body .impact-page .impact-stat-card:nth-child(4) {
    transition-delay: 0.32s;
}


/* keep hover movement after cards appear */

body .impact-page .impact-stat-card.impact-visible:hover {
    transform: translateY(-5px);
}


/* =========================================================
   4. PARTNER SECTION
========================================================= */

/* section itself softly reveals */

body .impact-page .impact-partner {
    overflow: hidden;
}


/* text side */

body .impact-page .impact-partner-inner>div:first-child {
    opacity: 0;

    transform: translateX(-35px);

    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


/* button side */

body .impact-page .impact-partner .impact-partner-btn {
    opacity: 0;

    transform: translateX(35px);

    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.25s ease;
}


/* activate both */

body .impact-page .impact-partner.impact-visible .impact-partner-inner>div:first-child {
    opacity: 1;

    transform: translateX(0);
}


body .impact-page .impact-partner.impact-visible .impact-partner-btn {
    opacity: 1;

    transform: translateX(0);

    transition-delay: 0.15s;
}


/* preserve button hover */

body .impact-page .impact-partner.impact-visible .impact-partner-btn:hover {
    transform: translateY(-3px);
}


/* =========================================================
   5. NUMBER ANIMATION
========================================================= */

body .impact-page .impact-stat-card strong {
    font-variant-numeric: tabular-nums;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    body .impact-page .impact-main-hero::before {
        animation: none !important;
        transform: none !important;
    }

    .impact-scroll-reveal,
    body .impact-page .impact-stat-card,
    body .impact-page .impact-partner-inner>div:first-child,
    body .impact-page .impact-partner .impact-partner-btn {

        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }

}

/* =========================================================
   PITCH DECK PAGE
========================================================= */

body .pitchdeck-page {
    background: #f6f8fb;
}


/* HERO */

body .pitchdeck-page .pitchdeck-hero {
    background: #eaf2f8;
    padding: 90px 70px;
}

body .pitchdeck-page .pitchdeck-hero-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 40px;
    align-items: center;
}

body .pitchdeck-page .pitchdeck-label,
body .pitchdeck-page .pitchdeck-section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #1084d0;
    margin-bottom: 18px;
    font-weight: 600;
}

body .pitchdeck-page .pitchdeck-hero h1 {
    font-size: 64px;
    line-height: 1.08;
    font-weight: 300;
    color: #0f4f83;
    margin-bottom: 24px;
    max-width: 760px;
}

body .pitchdeck-page .pitchdeck-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #657c93;
    max-width: 760px;
    margin-bottom: 32px;
}

body .pitchdeck-page .pitchdeck-hero-actions,
body .pitchdeck-page .pitchdeck-cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

body .pitchdeck-page .pitchdeck-primary-btn,
body .pitchdeck-page .pitchdeck-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    min-height: 56px;
    padding: 0 28px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.25s ease;
}

body .pitchdeck-page .pitchdeck-primary-btn {
    background: #0b6ca8;
    color: #ffffff;
}

body .pitchdeck-page .pitchdeck-primary-btn:hover {
    transform: translateY(-2px);
    background: #095c8e;
}

body .pitchdeck-page .pitchdeck-secondary-btn {
    border: 1px solid rgba(15, 79, 131, 0.25);
    color: #0f4f83;
    background: transparent;
}

body .pitchdeck-page .pitchdeck-secondary-btn:hover {
    transform: translateY(-2px);
    background: rgba(15, 79, 131, 0.05);
}

body .pitchdeck-page .dark-secondary {
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}


/* MINI STATS */

body .pitchdeck-page .pitchdeck-hero-card {
    background: #ffffff;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    border: 1px solid #d7e4ef;
}

body .pitchdeck-page .pitchdeck-mini-stat {
    background: #f7fbff;
    border: 1px solid #dce9f3;
    padding: 22px;
}

body .pitchdeck-page .pitchdeck-mini-stat strong {
    display: block;
    font-size: 34px;
    line-height: 1.1;
    color: #1084d0;
    margin-bottom: 10px;
    font-weight: 400;
}

body .pitchdeck-page .pitchdeck-mini-stat span {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    color: #5f7489;
}


/* OVERVIEW */

body .pitchdeck-page .pitchdeck-overview,
body .pitchdeck-page .pitchdeck-financials {
    padding: 90px 70px;
}

body .pitchdeck-page .pitchdeck-section-heading {
    max-width: 900px;
    margin: 0 auto 44px auto;
    text-align: center;
}

body .pitchdeck-page .pitchdeck-section-heading h2,
body .pitchdeck-page .pitchdeck-financial-copy h2,
body .pitchdeck-page .pitchdeck-cta h2 {
    font-size: 52px;
    line-height: 1.14;
    font-weight: 300;
    color: #0f4f83;
    margin-bottom: 16px;
}

body .pitchdeck-page .pitchdeck-section-heading p,
body .pitchdeck-page .pitchdeck-financial-copy p,
body .pitchdeck-page .pitchdeck-cta p {
    font-size: 17px;
    line-height: 1.8;
    color: #6a7f93;
}


/* GRID */

body .pitchdeck-page .pitchdeck-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

body .pitchdeck-page .pitchdeck-card {
    background: #ffffff;
    border: 1px solid #dce8f1;
    padding: 28px;
    min-height: 240px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body .pitchdeck-page .pitchdeck-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 79, 131, 0.08);
}

body .pitchdeck-page .pitchdeck-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf6fc;
    color: #1084d0;
    font-size: 22px;
    margin-bottom: 18px;
}

body .pitchdeck-page .pitchdeck-card h3 {
    font-size: 24px;
    color: #0f4f83;
    margin-bottom: 12px;
    font-weight: 500;
}

body .pitchdeck-page .pitchdeck-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #6a7f93;
}


/* FINANCIALS */

body .pitchdeck-page .pitchdeck-financials-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: start;
}

body .pitchdeck-page .pitchdeck-funding-list {
    margin-top: 28px;
    display: grid;
    gap: 24px;
}

body .pitchdeck-page .pitchdeck-funding-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

body .pitchdeck-page .pitchdeck-funding-top strong,
body .pitchdeck-page .pitchdeck-funding-top span {
    color: #0f4f83;
    font-size: 16px;
}

body .pitchdeck-page .pitchdeck-bar {
    height: 16px;
    background: #e4edf4;
    overflow: hidden;
}

body .pitchdeck-page .pitchdeck-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #1084d0 0%, #0f4f83 100%);
}

body .pitchdeck-page .fill-60 {
    width: 60%;
}

body .pitchdeck-page .fill-25 {
    width: 25%;
}

body .pitchdeck-page .fill-15 {
    width: 15%;
}

body .pitchdeck-page .pitchdeck-graph-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

body .pitchdeck-page .pitchdeck-graph-card {
    background: #ffffff;
    border: 1px solid #dce8f1;
    padding: 26px;
    min-height: 180px;
}

body .pitchdeck-page .pitchdeck-graph-label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8aa3b8;
    font-weight: 600;
}

body .pitchdeck-page .pitchdeck-graph-card strong {
    display: block;
    font-size: 40px;
    line-height: 1.1;
    color: #1084d0;
    font-weight: 400;
    margin-bottom: 10px;
}

body .pitchdeck-page .pitchdeck-graph-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #6a7f93;
}


/* CTA */

body .pitchdeck-page .pitchdeck-cta {
    background: #0f6f99;
    padding: 90px 70px;
}

body .pitchdeck-page .pitchdeck-cta-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 34px;
    align-items: center;
}

body .pitchdeck-page .pitchdeck-cta h2,
body .pitchdeck-page .pitchdeck-cta p,
body .pitchdeck-page .pitchdeck-cta .pitchdeck-section-label {
    color: #ffffff;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    body .pitchdeck-page .pitchdeck-hero-inner,
    body .pitchdeck-page .pitchdeck-financials-inner,
    body .pitchdeck-page .pitchdeck-cta-inner {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {

    body .pitchdeck-page .pitchdeck-hero,
    body .pitchdeck-page .pitchdeck-overview,
    body .pitchdeck-page .pitchdeck-financials,
    body .pitchdeck-page .pitchdeck-cta {
        padding: 64px 24px;
    }

    body .pitchdeck-page .pitchdeck-hero h1 {
        font-size: 42px;
    }

    body .pitchdeck-page .pitchdeck-section-heading h2,
    body .pitchdeck-page .pitchdeck-financial-copy h2,
    body .pitchdeck-page .pitchdeck-cta h2 {
        font-size: 36px;
    }

    body .pitchdeck-page .pitchdeck-grid,
    body .pitchdeck-page .pitchdeck-graph-panel,
    body .pitchdeck-page .pitchdeck-hero-card {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   FIX IMPACT HERO PITCH DECK BUTTON
========================================= */

body .impact-page .impact-main-hero-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    width: auto !important;
    min-width: 222px !important;
    height: auto !important;

    padding: 18px 22px !important;

    gap: 28px !important;

    background: #078bd3 !important;
    color: #ffffff !important;

    border: 1px solid #078bd3 !important;

    text-decoration: none !important;

    font-size: 13px !important;
    font-weight: 600 !important;

    box-sizing: border-box !important;

    position: relative !important;
    overflow: hidden !important;
}

body .impact-page .impact-main-hero-primary span {
    color: #ffffff !important;
    font-size: 18px !important;
}

body .impact-page .impact-main-hero-primary:hover {
    background: #0678b8 !important;
    border-color: #0678b8 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* =========================================================
   FINAL FIX — IMPACT HERO PITCH DECK BUTTON
========================================================= */

body .impact-page a.impact-main-hero-primary {
    position: relative !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 220px !important;
    max-width: none !important;

    height: 58px !important;
    min-height: 58px !important;

    margin: 0 !important;
    padding: 0 22px !important;

    gap: 28px !important;

    background: #0b93d5 !important;
    background-image: none !important;

    color: #ffffff !important;

    border: none !important;

    text-decoration: none !important;

    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;

    white-space: nowrap !important;

    transform: none;

    overflow: visible !important;

    box-sizing: border-box !important;
}


/* KILL OLD BUTTON PSEUDO-ELEMENTS */

body .impact-page a.impact-main-hero-primary::before,
body .impact-page a.impact-main-hero-primary::after {
    content: none !important;
    display: none !important;
}


/* ARROW */

body .impact-page a.impact-main-hero-primary span {
    position: static !important;

    display: inline-block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    color: #ffffff !important;

    font-size: 18px !important;
    line-height: 1 !important;

    transform: none !important;
}


/* HOVER */

body .impact-page a.impact-main-hero-primary:hover {
    background: #087db7 !important;
    color: #ffffff !important;

    transform: translateY(-2px) !important;
}

/* =========================================================
   CLEAN IMPACT PITCH DECK BUTTON
========================================================= */

body .impact-page .impact-pitch-link-fixed {
    all: unset !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    min-width: 222px !important;
    height: 58px !important;

    padding: 0 22px !important;
    margin: 0 !important;

    box-sizing: border-box !important;

    background: #0b93d5 !important;
    color: #ffffff !important;

    cursor: pointer !important;

    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 600 !important;

    text-decoration: none !important;
    text-indent: 0 !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none !important;
}

body .impact-page .impact-pitch-link-fixed .impact-pitch-link-text {
    all: unset !important;

    display: inline-block !important;

    color: #ffffff !important;

    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 600 !important;

    white-space: nowrap !important;
}

body .impact-page .impact-pitch-link-fixed .impact-pitch-link-arrow {
    all: unset !important;

    display: inline-block !important;

    margin-left: 28px !important;

    color: #ffffff !important;

    font-size: 18px !important;
    line-height: 1 !important;
}

body .impact-page .impact-pitch-link-fixed:hover {
    background: #087db7 !important;
}

/* =========================================
   PITCH DECK — ACTIVE STATE
========================================= */

.pitch-btn-active {
    position: relative !important;

    background: #ffffff !important;
    color: #075b8f !important;

    border: 1px solid #c9dce7 !important;

    box-shadow: none !important;
}

.pitch-btn-active span {
    color: #075b8f !important;
}


/* ACTIVE LINE BELOW */

.pitch-btn-active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 2px;

    background: #078bd3;
}


/* REMOVE ANY OLD CORNER EFFECT */

.pitch-btn-active::before {
    content: none !important;
    display: none !important;
}


/* OPTIONAL HOVER */

.pitch-btn-active:hover {
    background: #f8fcff !important;
    color: #075b8f !important;

    transform: translateY(-1px);
}

/* =========================================
   PITCH DECK CTA — COMPACT LIGHT BLUE VERSION
========================================= */

body .pitchdeck-page .pitchdeck-cta {
    background: #d9ebf5 !important;
    padding: 48px 70px !important;
}

body .pitchdeck-page .pitchdeck-cta-inner {
    max-width: 1215px !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;

    gap: 50px !important;
}


/* SMALL LABEL */

body .pitchdeck-page .pitchdeck-cta .pitchdeck-section-label {
    color: #4f7f9b !important;

    font-size: 10px !important;
    letter-spacing: 3px !important;

    margin-bottom: 12px !important;
}


/* HEADING */

body .pitchdeck-page .pitchdeck-cta h2 {
    max-width: 720px !important;

    margin: 0 !important;

    color: #0b4f78 !important;

    font-size: clamp(30px, 3vw, 42px) !important;
    line-height: 1.08 !important;

    font-weight: 300 !important;
}


/* PARAGRAPH */

body .pitchdeck-page .pitchdeck-cta p {
    max-width: 680px !important;

    margin: 16px 0 0 !important;

    color: #6b8798 !important;

    font-size: 14px !important;
    line-height: 1.7 !important;
}


/* BUTTON AREA */

body .pitchdeck-page .pitchdeck-cta-actions {
    display: flex !important;
    align-items: center !important;

    gap: 14px !important;
}


/* OPEN PITCH DECK */

body .pitchdeck-page .pitchdeck-cta .pitchdeck-primary-btn {
    min-height: 52px !important;

    padding: 0 24px !important;

    background: #0b6694 !important;
    color: #ffffff !important;

    font-size: 13px !important;
}


/* PARTNER BUTTON */

body .pitchdeck-page .pitchdeck-cta .pitchdeck-secondary-btn {
    min-height: 52px !important;

    padding: 0 24px !important;

    background: transparent !important;

    border: 1px solid #0b6694 !important;

    color: #0b6694 !important;

    font-size: 13px !important;
}


/* HOVER */

body .pitchdeck-page .pitchdeck-cta .pitchdeck-secondary-btn:hover {
    background: #0b6694 !important;
    color: #ffffff !important;
}


/* TABLET / MOBILE */

@media (max-width: 900px) {

    body .pitchdeck-page .pitchdeck-cta {
        padding: 45px 35px !important;
    }

    body .pitchdeck-page .pitchdeck-cta-inner {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

}

@media (max-width: 650px) {

    body .pitchdeck-page .pitchdeck-cta {
        padding: 40px 20px !important;
    }

    body .pitchdeck-page .pitchdeck-cta-actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    body .pitchdeck-page .pitchdeck-cta .pitchdeck-primary-btn,
    body .pitchdeck-page .pitchdeck-cta .pitchdeck-secondary-btn {
        width: 100% !important;
    }

}

/* =========================================================
   PITCH DECK — ANIMATION SYSTEM
========================================================= */


/* ---------------------------------------------------------
   HERO ENTRANCE
--------------------------------------------------------- */

.pd-motion .pitchdeck-hero-copy {
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.pd-motion .pitchdeck-hero-card {
    opacity: 0;
    transform: translateY(32px) scale(0.98);

    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);

    transition-delay: 0.15s;
}

.pd-motion .pitchdeck-hero-copy.pd-visible,
.pd-motion .pitchdeck-hero-card.pd-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* ---------------------------------------------------------
   SECTION HEADINGS
--------------------------------------------------------- */

.pd-motion .pitchdeck-section-heading {
    opacity: 0;
    transform: translateY(32px);

    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.pd-motion .pitchdeck-section-heading.pd-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ---------------------------------------------------------
   DECK OVERVIEW CARDS
--------------------------------------------------------- */

.pd-motion .pitchdeck-card {
    opacity: 0;
    transform: translateY(34px);

    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.25s ease;
}

.pd-motion .pitchdeck-card.pd-visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger */

.pd-motion .pitchdeck-card:nth-child(1) {
    transition-delay: 0.04s;
}

.pd-motion .pitchdeck-card:nth-child(2) {
    transition-delay: 0.11s;
}

.pd-motion .pitchdeck-card:nth-child(3) {
    transition-delay: 0.18s;
}

.pd-motion .pitchdeck-card:nth-child(4) {
    transition-delay: 0.25s;
}

.pd-motion .pitchdeck-card:nth-child(5) {
    transition-delay: 0.04s;
}

.pd-motion .pitchdeck-card:nth-child(6) {
    transition-delay: 0.11s;
}

.pd-motion .pitchdeck-card:nth-child(7) {
    transition-delay: 0.18s;
}

.pd-motion .pitchdeck-card:nth-child(8) {
    transition-delay: 0.25s;
}


/* Keep hover after entrance */

.pd-motion .pitchdeck-card.pd-visible:hover {
    transform: translateY(-5px);
}


/* ---------------------------------------------------------
   FINANCIAL SECTION TEXT
--------------------------------------------------------- */

.pd-motion .pitchdeck-financial-copy {
    opacity: 0;
    transform: translateX(-35px);

    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.pd-motion .pitchdeck-financial-copy.pd-visible {
    opacity: 1;
    transform: translateX(0);
}


/* ---------------------------------------------------------
   FUNDING BARS
--------------------------------------------------------- */

/*
   Keep their existing widths:
   fill-60 = 60%
   fill-25 = 25%
   fill-15 = 15%

   We simply scale those widths from zero.
*/

.pd-motion .pitchdeck-bar-fill {
    transform: scaleX(0);
    transform-origin: left center;

    transition:
        transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}


/* little stagger between bars */

.pd-motion .pitchdeck-funding-item:nth-child(1) .pitchdeck-bar-fill {
    transition-delay: 0.05s;
}

.pd-motion .pitchdeck-funding-item:nth-child(2) .pitchdeck-bar-fill {
    transition-delay: 0.18s;
}

.pd-motion .pitchdeck-funding-item:nth-child(3) .pitchdeck-bar-fill {
    transition-delay: 0.31s;
}


/* Grow bars when financial section becomes visible */

.pd-motion .pitchdeck-financials.pd-visible .pitchdeck-bar-fill {
    transform: scaleX(1);
}


/* ---------------------------------------------------------
   ROI / SROI CARDS
--------------------------------------------------------- */

.pd-motion .pitchdeck-graph-card {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pd-motion .pitchdeck-graph-card.pd-visible {
    opacity: 1;
    transform: translateY(0);
}

.pd-motion .pitchdeck-graph-card:nth-child(1) {
    transition-delay: 0.05s;
}

.pd-motion .pitchdeck-graph-card:nth-child(2) {
    transition-delay: 0.14s;
}

.pd-motion .pitchdeck-graph-card:nth-child(3) {
    transition-delay: 0.23s;
}

.pd-motion .pitchdeck-graph-card:nth-child(4) {
    transition-delay: 0.32s;
}


/* Prevent changing number widths from making cards jump */

.pitchdeck-mini-stat strong,
.pitchdeck-graph-card strong,
.pitchdeck-funding-top span {
    font-variant-numeric: tabular-nums;
}


/* ---------------------------------------------------------
   FINAL CTA
--------------------------------------------------------- */

.pd-motion .pitchdeck-cta-inner>div:first-child {
    opacity: 0;
    transform: translateX(-32px);

    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.pd-motion .pitchdeck-cta-actions {
    opacity: 0;
    transform: translateX(32px);

    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);

    transition-delay: 0.12s;
}

.pd-motion .pitchdeck-cta-inner.pd-visible>div:first-child,
.pd-motion .pitchdeck-cta-inner.pd-visible .pitchdeck-cta-actions {
    opacity: 1;
    transform: translateX(0);
}


/* ---------------------------------------------------------
   REDUCED MOTION
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .pd-motion .pitchdeck-hero-copy,
    .pd-motion .pitchdeck-hero-card,
    .pd-motion .pitchdeck-section-heading,
    .pd-motion .pitchdeck-card,
    .pd-motion .pitchdeck-financial-copy,
    .pd-motion .pitchdeck-graph-card,
    .pd-motion .pitchdeck-cta-inner>div:first-child,
    .pd-motion .pitchdeck-cta-actions {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .pd-motion .pitchdeck-bar-fill {
        transform: scaleX(1) !important;
        transition: none !important;
    }
}

/* =========================================================
   PITCH DECK HERO — TEXT ENTRANCE
========================================================= */

/* small PITCH DECK label */
body .pitchdeck-page .pitchdeck-hero-copy .pitchdeck-label {
    opacity: 0;
    transform: translateY(18px);

    animation: pdHeroTextIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.10s forwards;
}


/* main headline */
body .pitchdeck-page .pitchdeck-hero-copy h1 {
    opacity: 0;
    transform: translateY(28px);

    animation: pdHeroTextIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}


/* description */
body .pitchdeck-page .pitchdeck-hero-copy>p {
    opacity: 0;
    transform: translateY(24px);

    animation: pdHeroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.38s forwards;
}


/* View Full Deck + Request PDF */
body .pitchdeck-page .pitchdeck-hero-actions {
    opacity: 0;
    transform: translateY(22px);

    animation: pdHeroTextIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.52s forwards;
}


/* animation */
@keyframes pdHeroTextIn {

    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* accessibility */

@media (prefers-reduced-motion: reduce) {

    body .pitchdeck-page .pitchdeck-hero-copy .pitchdeck-label,
    body .pitchdeck-page .pitchdeck-hero-copy h1,
    body .pitchdeck-page .pitchdeck-hero-copy>p,
    body .pitchdeck-page .pitchdeck-hero-actions {

        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* =========================================================
   PITCH DECK — TIGHTER SECTION SPACING
========================================================= */


/* HERO — slightly more compact */

body .pitchdeck-page .pitchdeck-hero {
    padding-top: 70px !important;
    padding-bottom: 65px !important;
}


/* DECK OVERVIEW */

body .pitchdeck-page .pitchdeck-overview {
    padding-top: 65px !important;
    padding-bottom: 45px !important;
}


/* reduce space under overview heading */

body .pitchdeck-page .pitchdeck-section-heading {
    margin-bottom: 34px !important;
}


/* FINANCIAL SECTION */

body .pitchdeck-page .pitchdeck-financials {
    padding-top: 45px !important;
    padding-bottom: 65px !important;
}


/* reduce unnecessary spacing inside financial section */

body .pitchdeck-page .pitchdeck-financial-copy h2 {
    margin-bottom: 14px !important;
}

body .pitchdeck-page .pitchdeck-financial-copy p {
    margin-bottom: 0 !important;
}

body .pitchdeck-page .pitchdeck-funding-list {
    margin-top: 24px !important;
}


/* FINAL CTA */

body .pitchdeck-page .pitchdeck-cta {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}

/* =========================================================
   PARTNER WITH US MODAL
========================================================= */

body.partner-modal-open {
    overflow: hidden;
}


.partner-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.partner-modal.partner-modal-active {
    opacity: 1;
    visibility: visible;
}


/* BACKDROP */

.partner-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(3, 32, 51, 0.72);

    backdrop-filter: blur(6px);
}


/* MODAL */

.partner-modal-box {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 760px;

    max-height: calc(100vh - 50px);
    overflow-y: auto;

    padding: 42px;

    background: #ffffff;

    box-shadow:
        0 30px 80px rgba(2, 38, 61, 0.25);

    transform: translateY(25px) scale(0.98);

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


.partner-modal.partner-modal-active .partner-modal-box {
    transform: translateY(0) scale(1);
}


/* CLOSE */

.partner-modal-close {
    position: absolute;

    top: 18px;
    right: 20px;

    width: 38px;
    height: 38px;

    border: none;

    background: #edf6fa;
    color: #075b8f;

    font-size: 25px;
    line-height: 1;

    cursor: pointer;

    transition: 0.2s ease;
}


.partner-modal-close:hover {
    background: #075b8f;
    color: #ffffff;
}


/* HEADER */

.partner-modal-label {
    display: block;

    margin-bottom: 13px;

    color: #0784c5;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.partner-modal-header h2 {
    max-width: 580px;

    margin: 0;

    color: #074d77;

    font-size: clamp(34px, 4vw, 46px);

    line-height: 1.08;

    font-weight: 300;

    letter-spacing: -1.4px;
}


.partner-modal-header p {
    max-width: 620px;

    margin: 17px 0 0;

    color: #6a8395;

    font-size: 14px;

    line-height: 1.7;
}


/* FORM */

.partner-form {
    margin-top: 32px;
}


.partner-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin-bottom: 18px;
}


.partner-form-field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.partner-form-field label {
    color: #174d6e;

    font-size: 12px;

    font-weight: 600;
}


.partner-form-field input,
.partner-form-field select,
.partner-form-field textarea {

    width: 100%;

    padding: 14px 15px;

    border: 1px solid #cadde8;

    background: #f9fcfd;

    color: #244f69;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    box-sizing: border-box;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}


.partner-form-field textarea {
    resize: vertical;

    min-height: 125px;
}


.partner-form-field input:focus,
.partner-form-field select:focus,
.partner-form-field textarea:focus {

    border-color: #0784c5;

    background: #ffffff;
}


.partner-message-field {
    margin-top: 4px;
}


/* FOOTER */

.partner-form-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 26px;

    padding-top: 22px;

    border-top: 1px solid #d9e7ee;
}


.partner-form-footer p {
    max-width: 330px;

    margin: 0;

    color: #7a919f;

    font-size: 11px;

    line-height: 1.6;
}


.partner-form-footer strong {
    color: #52778d;
    font-weight: 600;
}


/* SUBMIT */

.partner-submit-btn {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 28px;

    padding: 17px 21px;

    border: none;

    background: #08658f;

    color: #ffffff;

    font-family: inherit;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.partner-submit-btn span {
    font-size: 18px;
}


.partner-submit-btn:hover {
    background: #075277;

    transform: translateY(-2px);
}


/* MOBILE */

@media (max-width: 650px) {

    .partner-modal {
        padding: 12px;
        align-items: flex-end;
    }

    .partner-modal-box {
        max-height: 92vh;

        padding: 35px 22px 25px;
    }

    .partner-form-row {
        grid-template-columns: 1fr;
    }

    .partner-form-footer {
        flex-direction: column;

        align-items: stretch;
    }

    .partner-submit-btn {
        width: 100%;
    }

}

/* =========================================================
   HOME HERO — PARTNER WITH US BUTTON FIX
========================================================= */

.hero .hero-secondary-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 50px !important;

    padding: 0 22px !important;

    background: rgba(255, 255, 255, 0.04) !important;

    border: 1px solid rgba(255, 255, 255, 0.65) !important;

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 13px !important;
    font-weight: 600 !important;

    box-sizing: border-box !important;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease !important;
}


/* HOVER */

.hero .hero-secondary-btn:hover {
    background: #ffffff !important;
    color: #075b8f !important;

    transform: translateY(-2px);
}

/* HOW IT WORKS — PARTNER BUTTON FIX */

.how-secondary-btn.open-partner-modal {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 143px !important;
    height: 50px !important;

    padding: 0 24px !important;

    background: transparent !important;
    border: 1px solid #086394 !important;

    color: #086394 !important;
    text-decoration: none !important;

    font-size: 13px !important;
    font-weight: 500 !important;

    box-sizing: border-box !important;
}


/* remove anything being generated beside it */

.how-secondary-btn.open-partner-modal::before,
.how-secondary-btn.open-partner-modal::after {
    display: none !important;
    content: none !important;
}


/* hover */

.how-secondary-btn.open-partner-modal:hover {
    background: #086394 !important;
    color: #ffffff !important;
}

/* TECHNOLOGY PAGE — PARTNER BUTTON FIX */

.tc-partner-primary[data-partner-modal] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;

    width: auto !important;
    min-width: 208px !important;
    height: 50px !important;

    padding: 0 24px !important;

    background: #086394 !important;
    border: 1px solid #086394 !important;

    color: #ffffff !important;
    text-decoration: none !important;

    font-size: 13px !important;
    font-weight: 600 !important;

    box-sizing: border-box !important;
    white-space: nowrap !important;
}


/* keep arrow inside button */

.tc-partner-primary[data-partner-modal] b {
    position: static !important;
    display: inline-block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    color: #ffffff !important;

    font-weight: 400 !important;
    transform: none !important;
}


/* remove accidental generated elements */

.tc-partner-primary[data-partner-modal]::before,
.tc-partner-primary[data-partner-modal]::after {
    display: none !important;
    content: none !important;
}


/* hover */

.tc-partner-primary[data-partner-modal]:hover {
    background: #07557f !important;
    color: #ffffff !important;
}

/* TECHNOLOGY — PARTNER WITH US BUTTON */

.technology-partner-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    min-width: 192px;
    height: 50px;
    padding: 0 24px;

    background: #086394;
    border: 1px solid #086394;

    color: #ffffff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;

    box-sizing: border-box;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.technology-partner-modal-btn span {
    position: static;
    display: inline-block;

    width: auto;
    height: auto;
    margin: 0;
    padding: 0;

    background: transparent;
    color: inherit;
}

.technology-partner-modal-btn:hover {
    background: #07557f;
    transform: translateY(-2px);
}

/* PLANNED COVERAGE — PARTNER BUTTON */

.pc-partner-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    min-width: 200px;
    height: 54px;
    padding: 0 26px;

    background: transparent;
    border: 1px solid #087db7;

    color: #075581;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;

    box-sizing: border-box;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.pc-partner-modal-btn span {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;

    background: transparent;
    color: inherit;
}

.pc-partner-modal-btn:hover {
    background: #087db7;
    color: #ffffff;
    transform: translateY(-2px);
}

/* =====================================================
   IMPACT PAGE — PROJECTED IMPACT RESTORE
===================================================== */

.impact-results {
    background: #ffffff;
    padding: 90px 0 70px;
}

.impact-results .impact-container {
    width: min(1210px, calc(100% - 80px));
    margin: 0 auto;
}

.impact-results-header {
    margin-bottom: 48px;
}

.impact-results-header .impact-label {
    display: block;
    margin-bottom: 16px;

    color: #087db7;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
}

.impact-results-header h2 {
    margin: 0;

    color: #075581;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 400;
}

.impact-results-header h2 span {
    color: #0787c8;
}

.impact-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #cfe0ea;
    border-bottom: 1px solid #cfe0ea;
}

.impact-result-card {
    min-height: 290px;
    padding: 34px 28px;

    border-right: 1px solid #cfe0ea;
    box-sizing: border-box;
}

.impact-result-card:first-child {
    border-left: 1px solid #cfe0ea;
}

.impact-result-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;
    margin-bottom: 25px;

    background: #e6f5fb;
    color: #0787c8;

    font-size: 20px;
}

.impact-result-number,
.impact-result-word {
    margin-bottom: 10px;

    color: #0787c8;
    font-size: 44px;
    line-height: 1;
    font-weight: 300;
}

.impact-result-card h3 {
    margin: 0 0 18px;

    color: #064c76;
    font-size: 18px;
    font-weight: 600;
}

.impact-result-card p {
    margin: 0;

    color: #73889a;
    font-size: 14px;
    line-height: 1.75;
}

.impact-results-note {
    padding-top: 22px;

    color: #7b91a3;
    font-size: 11px;
}


/* TABLET */

@media (max-width: 950px) {

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

    .impact-result-card:nth-child(2) {
        border-right: 1px solid #cfe0ea;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .impact-results {
        padding: 65px 0 50px;
    }

    .impact-results .impact-container {
        width: calc(100% - 40px);
    }

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

    .impact-result-card {
        border-left: 1px solid #cfe0ea;
        border-right: 1px solid #cfe0ea;
        border-bottom: 1px solid #cfe0ea;
    }

    .impact-result-card:last-child {
        border-bottom: none;
    }

}

/* =====================================================
   IMPACT PAGE — RESTORED OUTCOMES
   ISOLATED: DOES NOT TOUCH BUTTONS OR PARTNER MODAL
===================================================== */

.impact-outcomes-restore {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: center;

    margin-top: 65px;
    margin-bottom: 55px;
}

.impact-outcomes-restore-copy {
    max-width: 540px;
}

.impact-outcomes-restore-label {
    display: block;
    margin-bottom: 18px;

    color: #0787c8;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
}

.impact-outcomes-restore-heading {
    margin: 0 0 22px;

    color: #075581;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 400;
}

.impact-outcomes-restore-heading span {
    color: #0787c8;
}

.impact-outcomes-restore-text {
    margin: 0;
    max-width: 500px;

    color: #71889b;
    font-size: 15px;
    line-height: 1.8;
}


/* STAT GRID */

.impact-outcomes-restore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    background: #ffffff;
    border: 1px solid #d4e2eb;
}

.impact-outcomes-restore-card {
    min-height: 190px;
    padding: 28px 26px;

    border-right: 1px solid #d4e2eb;
    border-bottom: 1px solid #d4e2eb;
    box-sizing: border-box;
}

.impact-outcomes-restore-card:nth-child(2n) {
    border-right: none;
}

.impact-outcomes-restore-card:nth-child(3),
.impact-outcomes-restore-card:nth-child(4) {
    border-bottom: none;
}

.impact-outcomes-restore-value {
    margin-bottom: 12px;

    color: #0787c8;
    font-size: 38px;
    line-height: 1;
    font-weight: 300;
}

.impact-outcomes-restore-card h4 {
    margin: 0 0 12px;

    color: #075581;
    font-size: 16px;
    font-weight: 600;
}

.impact-outcomes-restore-card p {
    margin: 0;

    color: #71889b;
    font-size: 13px;
    line-height: 1.65;
}


/* TABLET */

@media (max-width: 900px) {

    .impact-outcomes-restore {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .impact-outcomes-restore {
        margin-top: 45px;
        margin-bottom: 40px;
    }

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

    .impact-outcomes-restore-card,
    .impact-outcomes-restore-card:nth-child(2n),
    .impact-outcomes-restore-card:nth-child(3) {
        border-right: none;
        border-bottom: 1px solid #d4e2eb;
    }

    .impact-outcomes-restore-card:last-child {
        border-bottom: none;
    }

    .impact-outcomes-restore-heading {
        font-size: 34px;
    }
}

/* =====================================================
   IMPACT PAGE — PROJECTED IMPACT
   Scoped only to the projected impact section
===================================================== */

.impact-page .impact-projected {
    background: #ffffff;
    padding: 90px 0 70px;
}

.impact-page .impact-projected .impact-container {
    width: min(1210px, calc(100% - 80px));
    margin: 0 auto;
}


/* HEADING */

.impact-page .impact-heading-row {
    max-width: 760px;
    margin-bottom: 55px;
}

.impact-page .impact-heading-row .impact-label {
    display: block;
    margin-bottom: 18px;

    color: #0787c8;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
}

.impact-page .impact-heading-row h2 {
    margin: 0 0 22px;

    color: #075581;
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 400;
}

.impact-page .impact-heading-copy {
    margin: 0;

    max-width: 680px;

    color: #71889b;
    font-size: 15px;
    line-height: 1.75;
}


/* FOUR IMPACT CARDS */

.impact-page .impact-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #d5e3ec;
    border-bottom: 1px solid #d5e3ec;

    opacity: 1;
    visibility: visible;
    transform: none;
}

.impact-page .impact-stat-card {
    min-height: 300px;
    padding: 32px 28px;

    background: #ffffff;
    border-right: 1px solid #d5e3ec;

    box-sizing: border-box;

    opacity: 1;
    visibility: visible;
    transform: none;
}

.impact-page .impact-stat-card:first-child {
    border-left: 1px solid #d5e3ec;
}


/* ICON */

.impact-page .impact-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 26px;

    background: #e7f5fb;
    color: #0787c8;
}

.impact-page .impact-icon svg {
    width: 23px;
    height: 23px;
}


/* VALUE */

.impact-page .impact-stat-card strong {
    display: block;

    margin-bottom: 12px;

    color: #0787c8;
    font-size: 42px;
    line-height: 1;
    font-weight: 300;
}


/* CARD TITLE */

.impact-page .impact-stat-card h3 {
    margin: 0 0 16px;

    color: #064f7c;
    font-size: 17px;
    font-weight: 600;
}


/* CARD DESCRIPTION */

.impact-page .impact-stat-card p {
    margin: 0;

    color: #71889b;
    font-size: 14px;
    line-height: 1.7;
}


/* FOOTNOTE */

.impact-page .impact-note {
    margin: 0;
    padding-top: 22px;

    color: #8195a6;
    font-size: 11px;
    line-height: 1.6;
}


/* TABLET */

@media (max-width: 950px) {

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

    .impact-page .impact-stat-card {
        border-bottom: 1px solid #d5e3ec;
    }

    .impact-page .impact-stat-card:nth-child(2n) {
        border-right: 1px solid #d5e3ec;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .impact-page .impact-projected {
        padding: 65px 0 50px;
    }

    .impact-page .impact-projected .impact-container {
        width: calc(100% - 40px);
    }

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

    .impact-page .impact-stat-card {
        min-height: auto;
        border-left: 1px solid #d5e3ec;
        border-right: 1px solid #d5e3ec;
        border-bottom: 1px solid #d5e3ec;
    }

    .impact-page .impact-stat-card:last-child {
        border-bottom: none;
    }

}

/* =====================================================
   FIX: FORCE IMPACT FIGURES TO DISPLAY
   Scoped ONLY to impact stat cards
===================================================== */

.impact-page .impact-projected .impact-stat-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;

    height: auto !important;
    min-height: 0 !important;

    opacity: 1 !important;
    visibility: visible !important;

    overflow: visible !important;
    transform: none !important;
}

.impact-page .impact-projected .impact-stat-card {
    display: block !important;
    position: relative !important;

    height: auto !important;
    min-height: 290px !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none !important;
    translate: none !important;
    scale: 1 !important;

    overflow: visible !important;
}

.impact-page .impact-projected .impact-stat-card *,
.impact-page .impact-projected .impact-icon,
.impact-page .impact-projected .impact-stat-card strong,
.impact-page .impact-projected .impact-stat-card h3,
.impact-page .impact-projected .impact-stat-card p {
    opacity: 1 !important;
    visibility: visible !important;

    transform: none !important;
}

.impact-page .impact-projected .impact-icon {
    display: flex !important;
}

.impact-page .impact-projected .impact-stat-card strong {
    display: block !important;
}

.impact-page .impact-projected .impact-stat-card h3,
.impact-page .impact-projected .impact-stat-card p {
    display: block !important;
}


/* TABLET */

@media (max-width: 950px) {
    .impact-page .impact-projected .impact-stat-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}


/* MOBILE */

@media (max-width: 600px) {
    .impact-page .impact-projected .impact-stat-grid {
        grid-template-columns: 1fr !important;
    }
}

.impact-cards-label {
    text-align: center;
    margin: 10px 0 28px;

    color: #0787c8;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
}

/* =========================================
   IMPACT — RIGHT SIDE GOAL CALLOUT
========================================= */

.impact-page .impact-heading-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;

    width: 100% !important;
    max-width: none !important;

    gap: 80px !important;
}

.impact-page .impact-heading-main {
    width: 680px;
    max-width: 680px;
    flex-shrink: 0;
}

.impact-page .impact-goal-callout {
    width: 310px;
    margin-left: auto;

    padding-left: 28px;
    padding-bottom: 8px;

    border-left: 1px solid #cbdde8;
}

.impact-page .impact-goal-callout span {
    display: block;
    margin-bottom: 16px;

    color: #0787c8;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
}

.impact-page .impact-goal-callout p {
    margin: 0;

    color: #075581;
    font-size: 25px;
    line-height: 1.45;
    font-weight: 400;
}


/* TABLET / MOBILE ONLY */

@media (max-width: 850px) {

    .impact-page .impact-heading-row {
        display: block !important;
    }

    .impact-page .impact-heading-main {
        width: 100%;
        max-width: 100%;
    }

    .impact-page .impact-goal-callout {
        width: auto;
        margin-top: 35px;
        margin-left: 0;
    }
}

/* =====================================================
   FINAL OVERRIDE — IMPACT HEADING + GOAL CALLOUT
===================================================== */

.impact-page .impact-heading-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr) !important;
    gap: 90px !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 0 40px !important;
    padding: 0 !important;

    align-items: start !important;
}

.impact-page .impact-heading-main {
    width: 100% !important;
    max-width: 720px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.impact-page .impact-goal-callout {
    width: 100% !important;
    max-width: 310px !important;

    margin: 4px 0 0 auto !important;
    padding: 0 0 0 28px !important;

    align-self: start !important;

    border-left: 1px solid #cbdde8 !important;
}

.impact-page .impact-goal-callout span {
    display: block !important;

    margin: 0 0 16px !important;

    color: #0787c8 !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 4px !important;
}

.impact-page .impact-goal-callout p {
    margin: 0 !important;

    color: #075581 !important;
    font-size: 25px !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
}


/* TABLET */

@media (max-width: 900px) {

    .impact-page .impact-heading-row {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    .impact-page .impact-goal-callout {
        max-width: 400px !important;

        margin: 0 !important;
        padding-left: 24px !important;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .impact-page .impact-heading-row {
        gap: 28px !important;
    }

    .impact-page .impact-goal-callout p {
        font-size: 22px !important;
    }
}

/* =====================================================
   FINAL POSITION FIX — THE GOAL
===================================================== */

.impact-page .impact-projected .impact-heading-row {
    position: relative !important;
    display: block !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 0 55px !important;
}

.impact-page .impact-projected .impact-heading-main {
    width: 100% !important;
    max-width: 720px !important;
}

.impact-page .impact-projected .impact-goal-callout {
    position: absolute !important;

    top: 0 !important;
    right: 0 !important;

    width: 280px !important;

    margin: 0 !important;
    padding: 0 0 0 28px !important;

    border-left: 1px solid #cbdde8 !important;
}


/* TABLET / MOBILE */

@media (max-width: 900px) {

    .impact-page .impact-projected .impact-goal-callout {
        position: static !important;

        width: auto !important;
        max-width: 400px !important;

        margin-top: 35px !important;
    }
}

/* =========================================
   IMPACT STAT ANIMATIONS
========================================= */

.impact-page .impact-word-reveal {
    opacity: 0;
    transform: translateY(15px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.impact-page .impact-word-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   MOBILE HEADER
   ========================================================= */

@media (max-width: 768px) {

    .site-header {
        height: auto !important;
    }

    .header-container {
        width: 100% !important;
        max-width: none !important;
        padding: 10px 18px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    /* Logo */
    .logo {
        flex-shrink: 0 !important;
    }

    .logo img {
        width: 125px !important;
        height: auto !important;
    }

    /* Put navigation on its own row */
    .main-nav {
        order: 3 !important;

        width: 100% !important;

        display: flex !important;
        align-items: center !important;

        gap: 22px !important;

        overflow-x: auto !important;
        white-space: nowrap !important;

        padding: 10px 0 4px !important;

        scrollbar-width: none;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .main-nav a {
        flex-shrink: 0 !important;
        font-size: 13px !important;
    }

    /* Pitch deck button */
    .header-pitch,
    .pitch-btn,
    .header-pitch-btn {
        padding: 11px 15px !important;
        font-size: 12px !important;
        flex-shrink: 0 !important;
    }
}

/* =========================================================
   MOBILE NAVIGATION ONLY
   Desktop remains unchanged
   ========================================================= */

.menu-btn,
.side-menu,
.menu-overlay {
    display: none;
}

@media (max-width: 768px) {

    /* Hide desktop navigation on phones */
    .main-nav {
        display: none !important;
    }

    /* Hide desktop Pitch Deck button */
    .header-pitch,
    .pitch-btn,
    .header-pitch-btn {
        display: none !important;
    }

    /* Mobile header */
    .site-header {
        height: 78px !important;
    }

    .header-container {
        height: 78px !important;
        width: 100% !important;
        padding: 8px 18px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .logo img {
        width: 120px !important;
        height: auto !important;
    }

    /* Hamburger appears only on mobile */
    .menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;

        width: 44px;
        height: 44px;

        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .menu-btn span {
        display: block;
        width: 27px;
        height: 2px;
        background: #00568a;
    }
}

/* =========================================================
   MOBILE SIDE MENU
   ========================================================= */

@media (max-width: 768px) {

    .menu-overlay {
        display: block !important;

        position: fixed;
        inset: 0;

        background: rgba(0, 30, 50, 0.55);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition: opacity 0.3s ease;
        z-index: 9998;
    }

    .menu-overlay.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .side-menu {
        display: flex !important;

        position: fixed;
        top: 0;
        right: 0;

        width: 82%;
        max-width: 320px;
        height: 100vh;

        background: #ffffff;

        flex-direction: column;

        padding: 24px;

        transform: translateX(100%);
        transition: transform 0.35s ease;

        z-index: 9999;
    }

    .side-menu.open {
        transform: translateX(0);
    }

    .side-menu-top {
        display: flex;
        align-items: center;
        justify-content: space-between;

        padding-bottom: 20px;
        border-bottom: 1px solid #dce8ef;
    }

    .side-menu-top img {
        width: 100px;
        height: auto;
    }

    .close-menu {
        border: none;
        background: transparent;

        color: #00568a;
        font-size: 32px;
        line-height: 1;

        cursor: pointer;
    }

    .side-nav {
        display: flex;
        flex-direction: column;

        padding-top: 20px;
    }

    .side-nav a {
        display: block;

        padding: 14px 0;

        color: #004f7c;
        text-decoration: none;
        font-size: 16px;

        border-bottom: 1px solid #edf2f5;
    }

    .side-actions {
        margin-top: auto;
    }

    .side-pitch {
        display: block;

        padding: 15px;

        background: #086b9d;
        color: #ffffff !important;

        text-align: center;
        text-decoration: none;
        font-weight: 600;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 768px) {

    .site-header .logo {
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
    }

    .site-header .logo img {
        width: auto !important;
        height: 52px !important;
        max-height: 52px !important;
        object-fit: contain !important;
    }
}

/* =========================================================
   HOMEPAGE HERO — MOBILE ONLY
   ========================================================= */

@media (max-width: 768px) {

    .hero {
        background-image: url("Assets/HomeHeroMobile.png") !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;

        min-height: calc(100svh - 78px) !important;
    }

    .hero-container {
        min-height: calc(100svh - 78px) !important;
        padding: 38px 20px 42px !important;

        display: flex !important;
        align-items: center !important;
    }

    .hero-copy {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-copy h1 {
        font-size: 38px !important;
        line-height: 1.02 !important;
        letter-spacing: -1px !important;
    }

    .hero-copy>p {
        font-size: 15px !important;
        line-height: 1.65 !important;

        text-align: left !important;
        text-justify: inter-word;
    }

}

@media (max-width: 768px) {

    .hero-container {
        padding-left: 6px !important;
        padding-right: 10px !important;
    }

    .hero-copy {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
}

@media (max-width: 768px) {

    .hero::before {
        background-image: url("Assets/HomeHeroMobile.png") !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

}

@media (max-width: 768px) {

    .hero-actions {
        display: grid !important;
        grid-template-columns: 1.2fr 1fr !important;
        gap: 8px !important;

        width: 100% !important;
        max-width: 330px !important;

        align-items: stretch !important;
    }

    .hero-actions a,
    .hero-actions button {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 48px !important;

        padding: 0 10px !important;

        font-size: 11px !important;
        line-height: 1.15 !important;

        white-space: nowrap !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-actions a:first-child {
        justify-content: space-between !important;
    }
}

@media (max-width: 768px) {

    .hero {
        min-height: auto !important;
    }

    .hero-container {
        min-height: auto !important;

        padding-top: 26px !important;
        padding-bottom: 26px !important;

        align-items: flex-start !important;
    }
}

@media (max-width: 768px) {

    .dow-footer {
        padding-top: 28px !important;
        padding-bottom: 14px !important;
    }

    .dow-footer-main {
        gap: 22px !important;
    }

    .dow-footer-contact {
        margin-top: 0 !important;
    }

    .dow-footer-socials {
        margin-top: 4px !important;
        gap: 10px !important;
    }

    .dow-footer-bottom {
        margin-top: 18px !important;
        padding-top: 12px !important;
    }
}

/* =========================================================
   MOBILE FOOTER — COMPACT
   ========================================================= */

@media (max-width: 768px) {

    .dow-footer {
        padding: 20px 15px 10px !important;
    }

    .dow-footer-main {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;

        padding: 0 !important;
        margin: 0 !important;
    }

    .dow-footer-main>div {
        margin: 0 !important;
        padding: 0 !important;
    }

    .dow-footer-logo {
        margin: 0 0 6px 0 !important;
    }

    .dow-footer-logo img {
        width: 105px !important;
        height: auto !important;
    }

    .dow-footer-mission {
        margin: 0 !important;
        padding: 0 !important;
    }

    .dow-footer-mission h3 {
        margin: 0 0 6px !important;
    }

    .dow-footer-mission p {
        margin: 0 !important;
    }

    .dow-footer-contact {
        margin: 4px 0 0 !important;
        padding: 0 !important;
        gap: 7px !important;
    }

    .dow-footer-socials {
        margin: 6px 0 0 !important;
        padding: 0 !important;
        gap: 8px !important;
    }

    .dow-footer-bottom {
        margin-top: 14px !important;
        padding-top: 10px !important;
    }
}

@media (max-width: 768px) {

    .dow-footer-main {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .dow-footer-main>div {
        width: 100% !important;
        text-align: left !important;
        align-items: flex-start !important;
    }

    .dow-footer-logo {
        margin-left: 0 !important;
        margin-right: auto !important;
        text-align: left !important;
    }

    .dow-footer-mission {
        text-align: left !important;
        align-items: flex-start !important;
    }

    .dow-footer-contact {
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .dow-footer-socials {
        justify-content: flex-start !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .dow-footer-bottom {
        text-align: left !important;
    }
}

/* =========================================================
   TABLET HERO — PORTRAIT
   ========================================================= */

@media (min-width: 601px) and (max-width: 1024px) {

    .hero {
        height: calc(100svh - 78px) !important;
        min-height: calc(100svh - 78px) !important;
        overflow: hidden !important;
    }

    .hero::before {
        background-image: url("Assets/HomeHeroMobile.png") !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .hero-container {
        height: 100% !important;
        min-height: 100% !important;

        display: flex !important;
        align-items: center !important;

        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

/* =========================================================
   TABLET HERO — TYPOGRAPHY
   ========================================================= */

@media (min-width: 601px) and (max-width: 1024px) {

    .hero-copy {
        width: 58% !important;
        max-width: 520px !important;
    }

    .hero-copy h1 {
        font-size: 54px !important;
        line-height: 1.02 !important;
        letter-spacing: -1.5px !important;
        margin-bottom: 24px !important;
    }

    .hero-copy>p {
        font-size: 17px !important;
        line-height: 1.6 !important;
        max-width: 500px !important;
    }

    .eyebrow {
        font-size: 12px !important;
        letter-spacing: 2.5px !important;
        margin-bottom: 18px !important;
    }

    .hero-actions {
        margin-top: 26px !important;
        max-width: 430px !important;
    }

    .hero-actions a,
    .hero-actions button {
        min-height: 54px !important;
        font-size: 14px !important;
        padding: 0 18px !important;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {

    .hero-copy>p {
        font-size: 19px !important;
        line-height: 1.55 !important;
        max-width: 530px !important;
    }

    .hero-actions a,
    .hero-actions button {
        font-size: 15px !important;
        min-height: 56px !important;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {

    .hero-copy {
        width: 62% !important;
        max-width: 560px !important;
    }

    .hero-copy h1 {
        font-size: 64px !important;
        line-height: 0.98 !important;
        letter-spacing: -2px !important;
        margin-bottom: 26px !important;
    }

    .hero-copy>p {
        font-size: 20px !important;
        line-height: 1.55 !important;
        max-width: 540px !important;
    }

    .eyebrow {
        font-size: 13px !important;
        letter-spacing: 2.5px !important;
        margin-bottom: 20px !important;
    }

    .hero-actions {
        margin-top: 28px !important;
        max-width: 460px !important;
    }

    .hero-actions a,
    .hero-actions button {
        min-height: 58px !important;
        font-size: 15px !important;
        padding: 0 20px !important;
    }
}

/* TABLET HERO — MOVE CONTENT UP */

@media (min-width: 601px) and (max-width: 1024px) {

    .hero-container {
        align-items: flex-start !important;

        padding-top: 105px !important;
        padding-bottom: 40px !important;
    }
}

/* =========================================================
   TABLET = DESKTOP LAYOUT OVERRIDE
   Phones remain mobile at 600px and below
   ========================================================= */

@media (min-width: 601px) and (max-width: 1024px) {

    /* ======================================
       HEADER — RESTORE DESKTOP STYLE
       ====================================== */

    .site-header {
        height: auto !important;
    }

    .header-container {
        width: calc(100% - 120px) !important;
        max-width: 1210px !important;
        height: auto !important;

        margin: 0 auto !important;
        padding: 0 !important;

        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }

    .site-header .logo {
        display: block !important;
        height: auto !important;
        flex-shrink: 0 !important;
    }

    .site-header .logo img {
        width: auto !important;
        height: auto !important;
        max-height: none !important;
    }

    /* Desktop navigation back */
    .main-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;

        width: auto !important;

        gap: 28px !important;

        margin: 0 auto !important;
        padding: 0 !important;

        overflow: visible !important;
        white-space: nowrap !important;
    }

    .main-nav a {
        display: inline-flex !important;
        font-size: inherit !important;
        width: auto !important;
        flex-shrink: 0 !important;
    }

    /* Desktop Pitch Deck button back */
    .header-actions {
        display: flex !important;
        align-items: center !important;
        width: auto !important;
        flex-shrink: 0 !important;
    }

    .pitch-btn {
        display: inline-flex !important;
        width: auto !important;
        min-width: 0 !important;

        padding: 16px 24px !important;

        font-size: inherit !important;
        white-space: nowrap !important;
    }

    /* Remove all mobile menu UI */
    .menu-btn,
    .side-menu,
    .menu-overlay {
        display: none !important;
    }


    /* ======================================
       HOMEPAGE HERO — RESTORE DESKTOP STYLE
       ====================================== */

    .hero {
        height: auto !important;
        min-height: 560px !important;

        background-image: none !important;

        overflow: hidden !important;
    }

    /* Restore desktop 16:9 hero image */
    .hero::before {
        background-image: url("Assets/heroimage2.png") !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .hero-container {
        width: calc(100% - 120px) !important;
        max-width: 1210px !important;

        min-height: 560px !important;
        height: auto !important;

        margin: 0 auto !important;

        padding: 55px 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .hero-copy {
        width: 48% !important;
        max-width: 570px !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: left !important;
    }

    .hero-copy h1 {
        font-size: 58px !important;
        line-height: 1.05 !important;
        letter-spacing: -1.5px !important;

        margin-bottom: 24px !important;
    }

    .hero-copy>p {
        font-size: 16px !important;
        line-height: 1.6 !important;

        max-width: 540px !important;

        text-align: left !important;
    }

    .eyebrow {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }

    /* Desktop-style buttons */
    .hero-actions {
        width: auto !important;
        max-width: none !important;

        display: flex !important;
        flex-direction: row !important;
        grid-template-columns: none !important;

        align-items: center !important;
        justify-content: flex-start !important;

        gap: 14px !important;

        margin-top: 28px !important;
    }

    .hero-actions a,
    .hero-actions button {
        width: auto !important;
        min-width: 0 !important;
        min-height: 50px !important;

        padding: 0 20px !important;

        font-size: 13px !important;

        white-space: nowrap !important;
    }


    /* ======================================
       HERO GRADIENT — DESKTOP BEHAVIOUR
       ====================================== */

    .hero-overlay {
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;

        width: 100% !important;
        height: 100% !important;

        background: linear-gradient(90deg,
                rgba(0, 43, 70, 0.94) 0%,
                rgba(0, 43, 70, 0.78) 28%,
                rgba(0, 43, 70, 0.38) 48%,
                rgba(0, 43, 70, 0.04) 70%,
                rgba(0, 43, 70, 0) 100%) !important;
    }
}

/* =========================================================
   TABLET = DESKTOP LAYOUT OVERRIDE
   Phones remain mobile at 600px and below
   ========================================================= */

@media (min-width: 601px) and (max-width: 1024px) {

    /* ======================================
       HEADER — RESTORE DESKTOP STYLE
       ====================================== */

    .site-header {
        height: auto !important;
    }

    .header-container {
        width: calc(100% - 120px) !important;
        max-width: 1210px !important;
        height: auto !important;

        margin: 0 auto !important;
        padding: 0 !important;

        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }

    .site-header .logo {
        display: block !important;
        height: auto !important;
        flex-shrink: 0 !important;
    }

    .site-header .logo img {
        width: auto !important;
        height: auto !important;
        max-height: none !important;
    }

    /* Desktop navigation back */
    .main-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;

        width: auto !important;

        gap: 28px !important;

        margin: 0 auto !important;
        padding: 0 !important;

        overflow: visible !important;
        white-space: nowrap !important;
    }

    .main-nav a {
        display: inline-flex !important;
        font-size: inherit !important;
        width: auto !important;
        flex-shrink: 0 !important;
    }

    /* Desktop Pitch Deck button back */
    .header-actions {
        display: flex !important;
        align-items: center !important;
        width: auto !important;
        flex-shrink: 0 !important;
    }

    .pitch-btn {
        display: inline-flex !important;
        width: auto !important;
        min-width: 0 !important;

        padding: 16px 24px !important;

        font-size: inherit !important;
        white-space: nowrap !important;
    }

    /* Remove all mobile menu UI */
    .menu-btn,
    .side-menu,
    .menu-overlay {
        display: none !important;
    }


    /* ======================================
       HOMEPAGE HERO — RESTORE DESKTOP STYLE
       ====================================== */

    .hero {
        height: auto !important;
        min-height: 560px !important;

        background-image: none !important;

        overflow: hidden !important;
    }

    /* Restore desktop 16:9 hero image */
    .hero::before {
        background-image: url("Assets/heroimage2.png") !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .hero-container {
        width: calc(100% - 120px) !important;
        max-width: 1210px !important;

        min-height: 560px !important;
        height: auto !important;

        margin: 0 auto !important;

        padding: 55px 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .hero-copy {
        width: 48% !important;
        max-width: 570px !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: left !important;
    }

    .hero-copy h1 {
        font-size: 58px !important;
        line-height: 1.05 !important;
        letter-spacing: -1.5px !important;

        margin-bottom: 24px !important;
    }

    .hero-copy>p {
        font-size: 16px !important;
        line-height: 1.6 !important;

        max-width: 540px !important;

        text-align: left !important;
    }

    .eyebrow {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }

    /* Desktop-style buttons */
    .hero-actions {
        width: auto !important;
        max-width: none !important;

        display: flex !important;
        flex-direction: row !important;
        grid-template-columns: none !important;

        align-items: center !important;
        justify-content: flex-start !important;

        gap: 14px !important;

        margin-top: 28px !important;
    }

    .hero-actions a,
    .hero-actions button {
        width: auto !important;
        min-width: 0 !important;
        min-height: 50px !important;

        padding: 0 20px !important;

        font-size: 13px !important;

        white-space: nowrap !important;
    }


    /* ======================================
       HERO GRADIENT — DESKTOP BEHAVIOUR
       ====================================== */

    .hero-overlay {
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;

        width: 100% !important;
        height: 100% !important;

        background: linear-gradient(90deg,
                rgba(0, 43, 70, 0.94) 0%,
                rgba(0, 43, 70, 0.78) 28%,
                rgba(0, 43, 70, 0.38) 48%,
                rgba(0, 43, 70, 0.04) 70%,
                rgba(0, 43, 70, 0) 100%) !important;
    }
}

/* =========================================================
   TABLET FIX — DESKTOP-LIKE LAYOUT
   601px to 1024px
   ========================================================= */

@media (min-width: 601px) and (max-width: 1024px) {

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* ---------------- HEADER ---------------- */

    .site-header {
        width: 100% !important;
        height: 90px !important;
    }

    .header-container {
        width: calc(100% - 48px) !important;
        max-width: none !important;
        height: 90px !important;

        margin: 0 auto !important;
        padding: 0 !important;

        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }

    .site-header .logo {
        flex: 0 0 auto !important;
        width: auto !important;
        height: auto !important;
    }

    .site-header .logo img {
        width: 145px !important;
        height: auto !important;
        max-width: 145px !important;
        max-height: 80px !important;
        object-fit: contain !important;
    }

    .main-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;

        width: auto !important;
        margin: 0 auto !important;
        padding: 0 !important;

        gap: 20px !important;

        overflow: visible !important;
        white-space: nowrap !important;
    }

    .main-nav a {
        display: inline-flex !important;
        width: auto !important;

        font-size: 13px !important;

        flex: 0 0 auto !important;
    }

    .header-actions {
        display: flex !important;
        width: auto !important;
        flex: 0 0 auto !important;
    }

    .pitch-btn {
        display: inline-flex !important;

        width: auto !important;
        min-width: 135px !important;

        padding: 14px 18px !important;

        font-size: 12px !important;
        white-space: nowrap !important;
    }

    /* Hide phone navigation */
    .menu-btn,
    .side-menu,
    .menu-overlay {
        display: none !important;
    }


    /* ---------------- HERO ---------------- */

    .hero {
        width: 100% !important;

        height: auto !important;
        min-height: 620px !important;

        overflow: hidden !important;

        background: none !important;
    }

    .hero::before {
        background-image: url("Assets/heroimage2.png") !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .hero-container {
        width: calc(100% - 70px) !important;
        max-width: none !important;

        min-height: 620px !important;
        height: 100% !important;

        margin: 0 auto !important;
        padding: 45px 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .hero-copy {
        width: 50% !important;
        max-width: 520px !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: left !important;
    }

    .hero-copy h1 {
        font-size: 52px !important;
        line-height: 1.03 !important;

        margin-bottom: 22px !important;
    }

    .hero-copy>p {
        font-size: 15px !important;
        line-height: 1.6 !important;

        max-width: 500px !important;

        text-align: left !important;
    }

    .hero-actions {
        display: flex !important;
        flex-direction: row !important;

        width: auto !important;
        max-width: none !important;

        gap: 12px !important;
        margin-top: 24px !important;
    }

    .hero-actions a,
    .hero-actions button {
        width: auto !important;
        min-width: 0 !important;

        padding: 0 17px !important;
        min-height: 48px !important;

        font-size: 12px !important;

        white-space: nowrap !important;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {

    .site-header .logo {
        order: 1 !important;
    }

    .main-nav {
        order: 2 !important;
        margin-left: auto !important;
        margin-right: 24px !important;
    }

    .header-actions {
        order: 3 !important;
        margin-left: 0 !important;
    }
}

/* =========================================================
   ABOUT PAGE HERO — MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .about-main-hero-container {
        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 28px 14px 24px !important;
    }

    .about-main-hero-container h1 {
        width: 100% !important;
        max-width: none !important;

        font-size: 34px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.8px !important;

        text-align: left !important;

        margin: 14px 0 20px !important;
    }

    .about-title-line {
        display: block !important;
        width: 100% !important;
    }

    .about-main-hero-container p {
        width: 100% !important;
        max-width: none !important;

        font-size: 14px !important;
        line-height: 1.65 !important;

        text-align: left !important;

        margin: 0 !important;
    }

    .about-main-detail {
        width: 100% !important;
        margin-top: 22px !important;
        text-align: left !important;
    }
}

@media (max-width: 600px) {

    .about-main-hero {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .about-main-hero-container {
        width: 100% !important;
        max-width: none !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

/* =========================================================
   LARGE TABLETS — ABOUT PAGE
   Surface Pro / iPad Pro portrait
   ========================================================= */

@media (min-width: 850px) and (max-width: 1100px) {

    .about-main-hero {
        padding: 38px 0 !important;
    }

    .about-main-hero-container {
        width: calc(100% - 56px) !important;
        max-width: none !important;
        margin: 0 auto !important;

        display: grid !important;
        grid-template-columns: minmax(0, 46%) minmax(0, 54%) !important;
        align-items: center !important;
        gap: 28px !important;
    }

    .about-main-hero-container>* {
        min-width: 0 !important;
    }

    .about-main-hero-container h1 {
        width: 100% !important;
        max-width: 100% !important;

        font-size: 46px !important;
        line-height: 1.05 !important;
        letter-spacing: -1px !important;

        margin: 16px 0 22px !important;
    }

    .about-title-line {
        display: block !important;
        width: 100% !important;
    }

    .about-main-hero-container p {
        width: 100% !important;
        max-width: 470px !important;

        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .about-main-detail {
        margin-top: 24px !important;
    }

    .about-main-hero-container img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;

        display: block !important;
        object-fit: cover !important;
    }
}

@media (min-width: 850px) and (max-width: 1100px) {

    .about-title-line {
        white-space: normal !important;
        overflow-wrap: normal !important;
    }

    .about-main-hero-container h1 {
        font-size: 38px !important;
        line-height: 1.08 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 600px) {

    .side-solution-group {
        width: 100%;
    }

    .side-solution-main {
        font-weight: 600 !important;
        color: #004f7c !important;
    }

    .side-solution-submenu {
        padding: 2px 0 8px 16px !important;
        border-bottom: 1px solid #edf2f5;
    }

    .side-solution-submenu a {
        padding: 8px 0 !important;
        font-size: 13px !important;
        color: #6b8290 !important;
        border-bottom: none !important;
    }
}

@media (max-width: 600px) {

    .how-hero-image {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
    }

    .how-hero-image img {
        display: block !important;

        width: 100% !important;
        height: auto !important;

        max-width: 100% !important;

        object-fit: contain !important;
        aspect-ratio: auto !important;
    }
}

@media (max-width: 600px) {

    .how-hero-image {
        width: 100% !important;
        aspect-ratio: 4 / 3 !important;
        overflow: hidden !important;
    }

    .how-hero-image img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center !important;

        display: block !important;
    }
}

@media (max-width: 600px) {

    .how-hero-image {
        margin-top: 45px !important;
    }

}

@media (max-width: 600px) {

    .how-hero>div:first-child {
        padding-left: 24px !important;
        padding-right: 24px !important;
        box-sizing: border-box !important;
    }

}

/* =========================================================
   HOW IT WORKS — TABLET HERO = DESKTOP STYLE
   ========================================================= */

@media (min-width: 601px) and (max-width: 1100px) {

    .how-hero {
        width: 100% !important;

        display: grid !important;
        grid-template-columns: 42% 58% !important;
        align-items: center !important;

        gap: 30px !important;

        padding: 45px 32px !important;
        box-sizing: border-box !important;
    }

    /* LEFT TEXT */
    .how-hero>div:first-child {
        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .how-hero h1 {
        font-size: 46px !important;
        line-height: 1.05 !important;
        letter-spacing: -1px !important;

        margin-bottom: 22px !important;
    }

    .how-hero p {
        font-size: 15px !important;
        line-height: 1.6 !important;

        max-width: 420px !important;
    }

    /* RIGHT IMAGE */
    .how-hero-image {
        width: 100% !important;
        height: 390px !important;

        margin: 0 !important;
        overflow: hidden !important;
    }

    .how-hero-image img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center !important;

        display: block !important;
    }
}

@media (max-width: 600px) {

    .impact-hero {
        align-items: flex-start !important;
    }

    .impact-hero-content {
        padding-top: 35px !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 600px) {

    .impact-hero {
        align-items: flex-start !important;
    }

    .impact-hero-content {
        padding-top: 35px !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 600px) {

    .impact-main-hero {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .impact-main-hero-inner {
        margin: 0 !important;
        padding-top: 28px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
        transform: none !important;
        align-self: flex-start !important;
    }
}