@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

/* =========================================================
   BRAND SYSTEM
========================================================= */

:root {
    --green: #005b38;
    --green-bright: #08744a;
    --green-dark: #003a26;
    --green-deep: #00291b;

    --gold: #f4b437;
    --gold-light: #ffc95f;
    --gold-dark: #d99a26;

    --ink: #14211d;
    --text: #25332e;
    --muted: #6b7773;

    --white: #ffffff;
    --off-white: #fafcfb;
    --light: #f5f8f6;
    --green-soft: #eaf4ef;

    --border: #dfe7e3;
    --border-green: rgba(0,91,56,.14);

    --shadow-sm:
        0 10px 30px rgba(0,46,30,.07);

    --shadow:
        0 24px 65px rgba(0,46,30,.11);

    --shadow-lg:
        0 35px 95px rgba(0,40,26,.16);

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;

    --transition: all .28s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;

    background: var(--white);
    color: var(--text);

    font-family:
        'DM Sans',
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;
    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-text strong,
.main-nav {
    font-family:
        'Manrope',
        Arial,
        Helvetica,
        sans-serif;
}

img {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--gold);
    color: var(--green-dark);
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;

    color: var(--gold-dark);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.section-eyebrow.light {
    color: var(--gold);
}

.section-eyebrow::before {
    content: "";

    width: 24px;
    height: 2px;

    margin-right: 10px;

    background: currentColor;
}


/* =========================================================
   TOPBAR
========================================================= */

.topbar {
    min-height: 40px;

    display: flex;
    align-items: center;

    background: var(--green-deep);
    color: rgba(255,255,255,.82);

    font-size: 12px;
}

.topbar-inner {
    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.topbar-contact {
    display: flex;
    align-items: center;

    gap: 26px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
}

.navbar {
    background: rgba(255,255,255,.98);

    border-bottom: 1px solid var(--border);

    box-shadow:
        0 4px 20px rgba(0,0,0,.018);
}

.nav-inner {
    min-height: 94px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 34px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    flex-shrink: 0;
}

.brand-mark {
    position: relative;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 3px solid var(--green);
    border-radius: 50%;

    background: var(--white);
    color: var(--green);

    font-family:
        Georgia,
        'Times New Roman',
        serif;

    font-size: 22px;
    font-weight: 700;
    font-style: italic;
}

.brand-mark::after {
    content: "";

    position: absolute;

    width: 44px;
    height: 44px;

    border: 1px solid var(--green);
    border-radius: 50%;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    color: var(--green);

    font-size: 25px;
    font-weight: 800;

    line-height: 1.05;
    letter-spacing: -1px;
}

.brand-text small {
    max-width: 300px;

    margin-top: 5px;

    color: #3e4945;

    font-size: 9px;
    font-weight: 600;

    line-height: 1.35;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 29px;

    color: var(--ink);

    font-size: 14px;
    font-weight: 700;
}

.main-nav > a {
    transition: var(--transition);
}

.main-nav > a:not(.nav-cta) {
    position: relative;

    padding: 36px 0;
}

.main-nav > a:not(.nav-cta)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 27px;

    width: 0;
    height: 2px;

    background: var(--green);

    transition: width .25s ease;
}

.main-nav > a:not(.nav-cta):hover {
    color: var(--green);
}

.main-nav > a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    min-height: 49px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    border-radius: 9px;

    background: var(--gold);
    color: var(--green-dark);

    box-shadow:
        0 12px 28px rgba(244,180,55,.22);
}

.nav-cta:hover {
    background: var(--gold-light);

    transform: translateY(-2px);

    box-shadow:
        0 15px 32px rgba(244,180,55,.30);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 24px;

    border: 1px solid transparent;
    border-radius: 9px;

    font-size: 14px;
    font-weight: 800;

    transition: var(--transition);
}

.btn span {
    transition: transform .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:hover span {
    transform: translateX(3px);
}

.btn-lg {
    min-height: 54px;

    padding-inline: 27px;
}

.btn-gold {
    background: var(--gold);
    color: var(--green-dark);

    box-shadow:
        0 15px 34px rgba(244,180,55,.20);
}

.btn-gold:hover {
    background: var(--gold-light);

    box-shadow:
        0 17px 38px rgba(244,180,55,.28);
}

.btn-green {
    background: var(--green);
    color: var(--white);

    box-shadow:
        0 15px 35px rgba(0,91,56,.15);
}

.btn-green:hover {
    background: var(--green-dark);
}

.btn-ghost {
    border-color: rgba(255,255,255,.38);

    background: rgba(255,255,255,.045);
    color: var(--white);

    backdrop-filter: blur(6px);
}

.btn-ghost:hover {
    border-color: rgba(255,255,255,.8);

    background: rgba(255,255,255,.10);
}


/* =========================================================
   PREMIUM HERO
========================================================= */

/* =========================================================
   PREMIUM FULL COVER HERO
========================================================= */

.hero-cover {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: var(--green-deep);
    color: #fff;
}

.hero-cover-bg {
    position: absolute;
    inset: 0;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    transform: scale(1.01);
}

/*
   LEFT = darker for text
   RIGHT = image remains more visible
*/
.hero-cover-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 35, 23, .96) 0%,
            rgba(0, 43, 28, .90) 30%,
            rgba(0, 49, 31, .68) 55%,
            rgba(0, 40, 26, .34) 78%,
            rgba(0, 35, 23, .25) 100%
        );
}

/* subtle bottom depth */
.hero-cover-overlay::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.08) 0%,
            transparent 35%,
            rgba(0,28,18,.18) 72%,
            rgba(0,27,18,.72) 100%
        );
}

/* Decorative premium glow */
.hero-cover-pattern {
    position: absolute;
    z-index: 2;

    width: 520px;
    height: 520px;

    right: -170px;
    top: -180px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;

    box-shadow:
        inset 0 0 0 70px rgba(255,255,255,.018),
        inset 0 0 0 140px rgba(255,255,255,.014);

    pointer-events: none;
}

.hero-cover-inner {
    position: relative;
    z-index: 3;

    min-height: 720px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding-top: 115px;
}

.hero-cover-content {
    max-width: 790px;
}

.hero-cover .hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.9px;
    text-transform: uppercase;
}

.hero-cover .hero-kicker > span {
    width: 34px;
    height: 2px;
    background: var(--gold);
}

.hero-cover-content h1 {
    max-width: 800px;

    margin-top: 22px;

    color: #fff;

    font-family: 'Manrope', Arial, sans-serif;

    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;

    line-height: 1.04;
    letter-spacing: -3px;
}

.hero-cover-content h1 > span {
    color: #f7bd47;
}

.hero-cover-content > p {
    max-width: 650px;

    margin-top: 27px;

    color: rgba(255,255,255,.78);

    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-cover-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 35px;
}

.btn-hero-outline {
    border: 1px solid rgba(255,255,255,.50);

    background: rgba(0,40,26,.22);
    color: #fff;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-hero-outline:hover {
    border-color: #fff;

    background: rgba(255,255,255,.12);
}

/* =========================================================
   HERO BOTTOM INFORMATION
========================================================= */

.hero-bottom-info {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr))
        minmax(0, 1.35fr);

    margin-top: 70px;

    border-top: 1px solid rgba(255,255,255,.18);

    background:
        linear-gradient(
            90deg,
            rgba(0,37,24,.50),
            rgba(0,37,24,.28)
        );

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.hero-info-item {
    min-height: 100px;

    display: flex;
    align-items: center;

    gap: 13px;

    position: relative;

    padding: 20px 25px;
}

.hero-info-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 25%;

    width: 1px;
    height: 50%;

    background: rgba(255,255,255,.16);
}

.hero-info-no {
    color: var(--gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.hero-info-item strong {
    display: block;

    color: #fff;

    font-family: 'Manrope', sans-serif;

    font-size: 14px;
    font-weight: 700;
}

.hero-info-item small {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.56);

    font-size: 10px;
}

.hero-info-support {
    background: rgba(244,180,55,.08);
}

.support-dot {
    width: 10px;
    height: 10px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 0 6px rgba(244,180,55,.13);
}

/* =========================================================
   HERO RESPONSIVE
========================================================= */

@media (max-width: 930px) {

    .hero-cover,
    .hero-cover-inner {
        min-height: 700px;
    }

    .hero-cover-inner {
        padding-top: 90px;
    }

    .hero-cover-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0,35,23,.95) 0%,
                rgba(0,40,26,.87) 55%,
                rgba(0,40,26,.55) 100%
            );
    }

    .hero-cover-content {
        max-width: 700px;
    }

    .hero-cover-content h1 {
        font-size: clamp(45px, 7vw, 62px);
    }

    .hero-bottom-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-info-item:nth-child(2)::after {
        display: none;
    }

}

@media (max-width: 640px) {

    .hero-cover {
        min-height: auto;
    }

    .hero-cover-bg {
        background-position: 65% center;
    }

    .hero-cover-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0,35,23,.94) 0%,
                rgba(0,39,25,.83) 100%
            );
    }

    .hero-cover-inner {
        min-height: 720px;

        padding-top: 75px;
    }

    .hero-cover .hero-kicker {
        font-size: 10px;
        letter-spacing: 1.3px;
    }

    .hero-cover .hero-kicker > span {
        width: 23px;
    }

    .hero-cover-content h1 {
        margin-top: 18px;

        font-size: clamp(37px, 11vw, 48px);

        line-height: 1.07;
        letter-spacing: -1.8px;
    }

    .hero-cover-content > p {
        margin-top: 21px;

        font-size: 15px;
        line-height: 1.7;
    }

    .hero-cover-buttons {
        flex-direction: column;

        margin-top: 28px;
    }

    .hero-cover-buttons .btn {
        width: 100%;
    }

    .hero-bottom-info {
        grid-template-columns: 1fr;

        margin-top: 55px;
    }

    .hero-info-item {
        min-height: 75px;

        padding: 15px 5px;

        border-bottom:
            1px solid rgba(255,255,255,.10);
    }

    .hero-info-item::after {
        display: none;
    }

    .hero-info-support {
        padding-left: 14px;
        padding-right: 14px;
    }

}


/* =========================================================
   VALUE STRIP
========================================================= */

.value-strip {
    position: relative;
    z-index: 10;

    background: var(--white);

    box-shadow:
        0 10px 45px rgba(0,46,30,.06);
}

.value-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}

.value-item {
    min-height: 116px;

    position: relative;

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 24px;
}

.value-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 26px;

    width: 1px;
    height: 64px;

    background: var(--border);
}

.value-number {
    color: var(--gold-dark);

    font-size: 12px;
    font-weight: 800;
}

.value-item strong {
    display: block;

    color: var(--green-dark);

    font-size: 15px;
    font-weight: 800;
}

.value-item div span {
    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-modern {
    background: var(--off-white);
}

.about-modern-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 90px;
}

.about-media {
    position: relative;

    min-height: 590px;
}

.image-card-main {
    height: 555px;

    overflow: hidden;

    border-radius:
        30px 30px 30px 8px;

    box-shadow: var(--shadow-lg);
}

.image-card-main img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .9s ease;
}

.image-card-main:hover img {
    transform: scale(1.035);
}

.about-floating-box {
    position: absolute;

    right: -30px;
    bottom: 0;

    width: 260px;

    padding: 22px;

    border-radius: 15px;

    background:
        var(--green-dark);

    color: var(--white);

    box-shadow: var(--shadow);
}

.about-floating-box span {
    color: var(--gold);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.about-floating-box strong {
    display: block;

    margin-top: 6px;

    font-size: 17px;
    line-height: 1.35;
}

.about-content h2 {
    max-width: 650px;

    margin-top: 15px;

    color: var(--ink);

    font-size:
        clamp(35px, 3.6vw, 50px);

    font-weight: 800;

    line-height: 1.12;
    letter-spacing: -1.8px;
}

.about-content > p {
    max-width: 640px;

    margin-top: 21px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.9;
}

.about-points {
    margin:
        31px 0 36px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px 22px;
}

.about-points > div {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--text);

    font-size: 13px;
    font-weight: 700;
}

.about-points span {
    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--green-soft);
    color: var(--green);

    font-size: 11px;
}


/* =========================================================
   MODALITIES
========================================================= */

.modalities-modern {
    background: var(--white);
}

.modern-heading {
    margin-bottom: 52px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;
}

.modern-heading > div {
    max-width: 720px;
}

.modern-heading h2 {
    max-width: 690px;

    margin-top: 13px;

    color: var(--ink);

    font-size:
        clamp(36px, 3.7vw, 52px);

    font-weight: 800;

    line-height: 1.1;
    letter-spacing: -1.8px;
}

.modern-heading > p {
    max-width: 420px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.85;
}

.service-image-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 23px;
}

.service-image-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background: var(--white);

    box-shadow:
        0 6px 30px rgba(0,50,33,.04);

    transition: var(--transition);
}

.service-image-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(0,91,56,.20);

    box-shadow: var(--shadow);
}

.service-image {
    position: relative;

    height: 270px;

    overflow: hidden;
}

.service-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0,40,26,.32)
        );
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;
}

.service-image-card:hover
.service-image img {
    transform: scale(1.055);
}

.service-index {
    position: absolute;
    z-index: 2;

    right: 20px;
    top: 19px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(0,57,37,.72);

    color: var(--gold);

    backdrop-filter: blur(8px);

    font-size: 11px;
    font-weight: 800;
}

.service-image-content {
    min-height: 295px;

    position: relative;

    padding:
        29px 28px 66px;
}

.service-label {
    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.service-image-content h3 {
    margin-top: 10px;

    color: var(--green-dark);

    font-size: 22px;
    font-weight: 800;

    line-height: 1.3;
}

.service-image-content p {
    margin-top: 14px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.8;
}

.service-image-content a {
    position: absolute;

    left: 28px;
    bottom: 28px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--green);

    font-size: 13px;
    font-weight: 800;
}

.service-image-content a span {
    transition:
        transform .25s ease;
}

.service-image-content a:hover span {
    transform: translateX(4px);
}


/* =========================================================
   CAPABILITIES
========================================================= */

.capability-modern {
    background: var(--light);
}

.center-modern-heading {
    max-width: 770px;

    margin: 0 auto 58px;

    text-align: center;
}

.center-modern-heading h2 {
    margin-top: 14px;

    color: var(--ink);

    font-size:
        clamp(35px, 3.7vw, 50px);

    font-weight: 800;

    line-height: 1.12;
    letter-spacing: -1.7px;
}

.center-modern-heading > p {
    max-width: 650px;

    margin:
        19px auto 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.85;
}

.capability-modern-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.capability-modern-card {
    min-height: 235px;

    position: relative;

    overflow: hidden;

    padding: 31px;

    border:
        1px solid var(--border);

    border-radius: 17px;

    background: var(--white);

    transition: var(--transition);
}

.capability-modern-card::before {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -60px;
    bottom: -60px;

    border-radius: 50%;

    background: var(--green-soft);

    transition:
        transform .35s ease;
}

.capability-modern-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(0,91,56,.18);

    box-shadow: var(--shadow);
}

.capability-modern-card:hover::before {
    transform: scale(2);
}

.capability-modern-card > span {
    color: var(--gold-dark);

    font-size: 11px;
    font-weight: 800;
}

.capability-modern-card h3 {
    position: relative;
    z-index: 2;

    margin-top: 25px;

    color: var(--green-dark);

    font-size: 19px;
    font-weight: 800;

    line-height: 1.35;
}

.capability-modern-card p {
    position: relative;
    z-index: 2;

    margin-top: 12px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-modern {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            #002d1d,
            #005b38
        );

    color: var(--white);
}

.why-modern::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    left: -300px;
    top: -300px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.05);

    box-shadow:
        inset 0 0 0 80px rgba(255,255,255,.015),
        inset 0 0 0 160px rgba(255,255,255,.015);
}

.why-modern-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .95fr);

    align-items: center;

    gap: 80px;
}

.why-modern-content h2 {
    max-width: 650px;

    margin-top: 14px;

    font-size:
        clamp(37px, 3.9vw, 53px);

    font-weight: 800;

    line-height: 1.1;
    letter-spacing: -1.9px;
}

.why-modern-content > p {
    max-width: 620px;

    margin-top: 21px;

    color: rgba(255,255,255,.68);

    font-size: 14px;
    line-height: 1.9;
}

.why-modern-list {
    margin-top: 34px;

    display: grid;

    gap: 21px;
}

.why-modern-list > div {
    display: grid;

    grid-template-columns:
        42px minmax(0, 1fr);

    gap: 15px;
}

.why-check {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.09);

    color: var(--gold);

    border:
        1px solid rgba(255,255,255,.10);

    font-size: 13px;
    font-weight: 800;
}

.why-modern-list strong {
    color: var(--white);

    font-size: 15px;
}

.why-modern-list p {
    margin-top: 4px;

    color: rgba(255,255,255,.58);

    font-size: 13px;
    line-height: 1.7;
}

.why-modern-media {
    position: relative;

    height: 590px;

    overflow: hidden;

    border-radius:
        28px 28px 8px 28px;

    box-shadow:
        0 35px 90px rgba(0,0,0,.25);
}

.why-modern-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s ease;
}

.why-modern-media:hover img {
    transform: scale(1.04);
}

.why-photo-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(0,32,21,.58)
        );
}

.why-stat-card {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;

    padding: 22px;

    border:
        1px solid rgba(255,255,255,.16);

    border-radius: 14px;

    background:
        rgba(0,43,28,.72);

    color: var(--white);

    backdrop-filter: blur(10px);
}

.why-stat-card small {
    color: var(--gold);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.why-stat-card strong {
    display: block;

    margin-top: 6px;

    font-size: 23px;
}

.why-stat-card span {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.63);

    font-size: 11px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-modern {
    background:
        var(--green-deep);

    color: var(--white);
}

.process-title h2 {
    color: var(--white);
}

.process-title p {
    color: rgba(255,255,255,.62);
}

.process-modern-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 17px;
}

.process-modern-card {
    min-height: 270px;

    position: relative;

    padding: 30px 26px;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 17px;

    background:
        rgba(255,255,255,.035);

    transition: var(--transition);
}

.process-modern-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(244,180,55,.25);

    background:
        rgba(255,255,255,.055);
}

.process-no {
    position: absolute;

    right: 22px;
    top: 20px;

    color:
        rgba(255,255,255,.10);

    font-size: 36px;
    font-weight: 800;
}

.process-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        rgba(244,180,55,.12);

    color: var(--gold);

    font-size: 15px;
    font-weight: 800;
}

.process-modern-card h3 {
    margin-top: 24px;

    font-size: 18px;
    font-weight: 800;
}

.process-modern-card p {
    margin-top: 12px;

    color:
        rgba(255,255,255,.60);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-modern {
    background: var(--white);
}

.modern-heading-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--green);

    font-size: 13px;
    font-weight: 800;
}

.modern-heading-link span {
    transition:
        transform .25s ease;
}

.modern-heading-link:hover span {
    transform:
        translateX(4px);
}

.projects-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 23px;
}

.project-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 19px;

    background: var(--white);

    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.project-image {
    position: relative;

    height: 300px;

    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s ease;
}

.project-card:hover
.project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0,40,26,.40)
        );
}

.project-type {
    position: absolute;

    left: 18px;
    top: 18px;

    padding:
        7px 11px;

    border-radius: 100px;

    background:
        rgba(0,55,35,.70);

    color: var(--white);

    backdrop-filter: blur(8px);

    font-size: 10px;
    font-weight: 800;
}

.project-content {
    padding: 24px;
}

.project-content h3 {
    color: var(--green-dark);

    font-size: 18px;
    font-weight: 800;

    line-height: 1.35;
}

.project-meta {
    margin-top: 10px;

    display: flex;
    flex-wrap: wrap;

    gap: 8px 14px;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   PREMIUM CTA
========================================================= */

.premium-cta {
    position: relative;

    overflow: hidden;

    padding: 90px 0;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(244,180,55,.22),
            transparent 27%
        ),
        linear-gradient(
            120deg,
            var(--green-dark),
            var(--green)
        );

    color: var(--white);
}

.premium-cta::after {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -80px;
    top: -150px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 50%;
}

.premium-cta-inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

.premium-cta-inner > div:first-child {
    max-width: 760px;
}

.premium-cta h2 {
    margin-top: 12px;

    font-size:
        clamp(36px, 3.7vw, 52px);

    font-weight: 800;

    line-height: 1.1;
    letter-spacing: -1.8px;
}

.premium-cta p {
    max-width: 630px;

    margin-top: 18px;

    color:
        rgba(255,255,255,.68);

    font-size: 14px;
    line-height: 1.8;
}

.premium-cta-buttons {
    min-width: 240px;

    display: flex;
    flex-direction: column;

    gap: 11px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #001d13;

    color: var(--white);
}

.footer-grid {
    padding: 70px 0 62px;

    display: grid;

    grid-template-columns:
        1.35fr .75fr 1.1fr;

    gap: 60px;
}

.footer-grid h3 {
    margin-bottom: 14px;

    color: var(--gold);

    font-size: 25px;
    font-weight: 800;
}

.footer-grid h4 {
    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 800;
}

.footer-grid p,
.footer-grid a {
    color:
        rgba(255,255,255,.62);

    font-size: 12px;
    line-height: 1.85;
}

.footer-grid p {
    max-width: 390px;
}

.footer-grid a {
    width: fit-content;

    display: block;

    margin-bottom: 7px;

    transition:
        var(--transition);
}

.footer-grid a:hover {
    color: var(--gold);

    transform:
        translateX(3px);
}

.footer-bottom {
    padding: 19px 20px;

    border-top:
        1px solid rgba(255,255,255,.07);

    text-align: center;

    color:
        rgba(255,255,255,.43);

    font-size: 11px;
}


/* =========================================================
   FORM DEFAULTS
========================================================= */

input,
textarea,
select {
    width: 100%;

    padding: 14px 15px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    background: var(--white);

    color: var(--text);

    font-size: 14px;

    outline: none;

    transition:
        var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    border-color:
        rgba(0,91,56,.50);

    box-shadow:
        0 0 0 4px
        rgba(0,91,56,.06);
}

textarea {
    min-height: 150px;

    resize: vertical;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .container {
        width:
            min(1200px, calc(100% - 38px));
    }

    .main-nav {
        gap: 20px;
    }

    .brand-text small {
        max-width: 225px;
    }

    .hero-premium-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, .8fr);

        gap: 45px;
    }

    .hero-copy h1 {
        font-size:
            clamp(43px, 5vw, 60px);
    }

    .about-modern-grid,
    .why-modern-grid {
        gap: 55px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 930px) {

    .topbar-inner {
        padding: 7px 0;

        flex-direction: column;

        gap: 3px;

        text-align: center;
    }

    .nav-inner {
        padding: 16px 0;

        flex-direction: column;

        align-items: center;
    }

    .main-nav {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;
    }

    .main-nav > a:not(.nav-cta) {
        padding: 5px 0;
    }

    .main-nav >
    a:not(.nav-cta)::after {
        bottom: -2px;
    }

    .hero-premium-grid {
        min-height: auto;

        grid-template-columns: 1fr;

        gap: 0;
    }

    .hero-copy {
        padding:
            80px 0 35px;
    }

    .hero-media {
        max-width: 650px;

        width: 100%;

        margin-inline: auto;

        padding:
            25px 0 75px;
    }

    .hero-image-frame {
        height: 550px;
    }

    .hero-floating-card {
        left: 20px;
    }

    .value-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .value-item:nth-child(2)::after {
        display: none;
    }

    .about-modern-grid,
    .why-modern-grid {
        grid-template-columns: 1fr;
    }

    .about-media,
    .why-modern-media {
        max-width: 680px;

        width: 100%;

        margin-inline: auto;
    }

    .about-floating-box {
        right: 20px;
    }

    .modern-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 22px;
    }

    .service-image-grid,
    .capability-modern-grid,
    .projects-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .process-modern-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .premium-cta-inner {
        align-items: flex-start;

        flex-direction: column;

        gap: 35px;
    }

    .premium-cta-buttons {
        min-width: 0;

        flex-direction: row;
    }

    .footer-grid {
        grid-template-columns:
            1.2fr 1fr;

        gap: 42px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .container {
        width:
            min(100% - 28px, 1200px);
    }

    body {
        font-size: 15px;
    }

    .topbar {
        display: none;
    }

    .nav-inner {
        min-height: auto;

        padding: 14px 0;

        align-items: flex-start;
    }

    .brand-mark {
        width: 54px;
        height: 54px;

        font-size: 19px;
    }

    .brand-mark::after {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 21px;
    }

    .brand-text small {
        max-width: 210px;

        font-size: 8px;
    }

    .main-nav {
        margin-top: 6px;

        justify-content: flex-start;

        gap: 10px 18px;

        font-size: 13px;
    }

    .nav-cta {
        width: 100%;

        margin-top: 4px;
    }

    .hero-copy {
        padding:
            68px 0 25px;
    }

    .hero-kicker {
        font-size: 10px;

        letter-spacing: 1.4px;
    }

    .hero-kicker > span {
        width: 22px;
    }

    .hero-copy h1 {
        margin-top: 17px;

        font-size:
            clamp(36px, 10vw, 45px);

        line-height: 1.07;
        letter-spacing: -1.7px;
    }

    .hero-lead {
        margin-top: 21px;

        font-size: 15px;
        line-height: 1.75;
    }

    .hero-buttons {
        margin-top: 29px;

        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-trust {
        margin-top: 42px;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;
    }

    .hero-media {
        padding:
            20px 0 65px;
    }

    .hero-image-frame {
        height: 430px;

        border-radius: 22px;
    }

    .hero-badge {
        left: 20px;
        top: 20px;

        font-size: 9px;
    }

    .hero-service-card {
        left: 20px;
        right: 20px;
        bottom: 20px;

        padding: 19px;
    }

    .hero-service-card strong {
        font-size: 18px;
    }

    .hero-floating-card {
        position: relative;

        left: auto;
        bottom: auto;

        width: calc(100% - 30px);
        min-width: 0;

        margin:
            -25px auto 0;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        min-height: 94px;

        padding: 18px 5px;
    }

    .value-item::after {
        display: none;
    }

    .value-item:not(:last-child) {
        border-bottom:
            1px solid var(--border);
    }

    .section {
        padding: 76px 0;
    }

    .about-media {
        min-height: auto;
    }

    .image-card-main {
        height: 430px;

        border-radius:
            22px 22px 22px 8px;
    }

    .about-floating-box {
        position: relative;

        right: auto;
        bottom: auto;

        width: calc(100% - 25px);

        margin:
            -40px 0 0 auto;
    }

    .about-content h2,
    .modern-heading h2,
    .center-modern-heading h2,
    .why-modern-content h2,
    .premium-cta h2 {
        font-size: 32px;

        letter-spacing: -1.2px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .service-image-grid,
    .capability-modern-grid,
    .process-modern-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 250px;
    }

    .service-image-content {
        min-height: 280px;
    }

    .why-modern-media {
        height: 450px;

        border-radius:
            22px 22px 8px 22px;
    }

    .process-modern-card {
        min-height: auto;
    }

    .project-image {
        height: 260px;
    }

    .premium-cta {
        padding:
            72px 0;
    }

    .premium-cta-buttons {
        width: 100%;

        flex-direction: column;
    }

    .footer-grid {
        padding:
            55px 0;

        grid-template-columns: 1fr;

        gap: 35px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .container {
        width:
            calc(100% - 24px);
    }

    .brand-text small {
        display: none;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .hero-image-frame {
        height: 390px;
    }

}

/* =========================================================
   PREMIUM ABOUT SECTION
========================================================= */

.about-premium {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #fbfcfb 0%,
            #ffffff 100%
        );
}

.about-premium::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -300px;
    top: 60px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,91,56,.055),
            transparent 70%
        );

    pointer-events: none;
}

.about-premium-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 95px;
}


/* =========================================================
   ABOUT VISUAL
========================================================= */

.about-visual {
    position: relative;

    min-height: 660px;
}

.about-main-photo {
    position: absolute;

    left: 0;
    top: 0;

    width: 82%;
    height: 585px;

    overflow: hidden;

    border-radius:
        30px 30px 30px 7px;

    background: var(--green-deep);

    box-shadow:
        0 35px 90px rgba(0,46,30,.16);
}

.about-main-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s ease;
}

.about-main-photo:hover img {
    transform: scale(1.035);
}

.about-photo-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,40,26,.02) 45%,
            rgba(0,40,26,.55) 100%
        );
}

.about-photo-caption {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding:
        10px 14px;

    border:
        1px solid rgba(255,255,255,.17);

    border-radius: 100px;

    background:
        rgba(0,42,27,.66);

    color: rgba(255,255,255,.92);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .5px;
}

.caption-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 0 5px rgba(244,180,55,.13);
}


/* =========================================================
   SECONDARY IMAGE
========================================================= */

.about-detail-photo {
    position: absolute;

    right: 0;
    bottom: 20px;

    width: 41%;
    height: 270px;

    overflow: hidden;

    border:
        8px solid #fff;

    border-radius:
        20px 20px 6px 20px;

    background: var(--white);

    box-shadow:
        0 25px 60px rgba(0,46,30,.17);

    z-index: 4;
}

.about-detail-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s ease;
}

.about-detail-photo:hover img {
    transform: scale(1.05);
}


/* =========================================================
   FLOATING EXPERTISE CARD
========================================================= */

.about-expertise-card {
    position: absolute;
    z-index: 6;

    right: 4%;
    top: 48px;

    width: 225px;

    padding:
        20px 21px;

    border-radius: 14px;

    background:
        var(--gold);

    color:
        var(--green-dark);

    box-shadow:
        0 20px 50px rgba(0,0,0,.15);
}

.about-expertise-small {
    display: block;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.about-expertise-card strong {
    display: block;

    margin-top: 7px;

    font-family:
        'Manrope',
        sans-serif;

    font-size: 17px;
    font-weight: 800;
}

.about-expertise-card small {
    display: block;

    margin-top: 5px;

    opacity: .75;

    font-size: 9px;
    line-height: 1.5;
}

.about-line-decoration {
    position: absolute;

    left: -30px;
    bottom: 50px;

    width: 120px;
    height: 120px;

    border-left:
        1px solid rgba(0,91,56,.12);

    border-bottom:
        1px solid rgba(0,91,56,.12);

    pointer-events: none;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-premium-content {
    position: relative;
}

.about-premium-content h2 {
    max-width: 660px;

    margin-top: 15px;

    color: var(--ink);

    font-size:
        clamp(38px, 3.8vw, 53px);

    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -2px;
}

.about-premium-content h2 span {
    color: var(--green);
}

.about-lead {
    max-width: 630px;

    margin-top: 25px;

    color: var(--text);

    font-size: 17px;
    font-weight: 500;

    line-height: 1.8;
}

.about-description {
    max-width: 650px;

    margin-top: 17px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   ABOUT FEATURES
========================================================= */

.about-feature-grid {
    margin-top: 34px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap:
        18px 22px;
}

.about-feature {
    display: grid;

    grid-template-columns:
        46px minmax(0,1fr);

    gap: 13px;

    padding:
        17px 15px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background:
        rgba(255,255,255,.68);

    transition:
        var(--transition);
}

.about-feature:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(0,91,56,.18);

    background:
        var(--white);

    box-shadow:
        0 14px 35px rgba(0,46,30,.07);
}

.about-feature-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background:
        var(--green-soft);

    color:
        var(--green);

    font-size: 10px;
    font-weight: 800;
}

.about-feature strong {
    display: block;

    color:
        var(--green-dark);

    font-family:
        'Manrope',
        sans-serif;

    font-size: 13px;
    font-weight: 800;
}

.about-feature p {
    margin-top: 4px;

    color:
        var(--muted);

    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   ABOUT ACTIONS
========================================================= */

.about-actions {
    margin-top: 36px;

    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 26px;
}

.about-text-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color:
        var(--green);

    font-size: 13px;
    font-weight: 800;

    transition:
        var(--transition);
}

.about-text-link span {
    transition:
        transform .25s ease;
}

.about-text-link:hover {
    color:
        var(--green-dark);
}

.about-text-link:hover span {
    transform:
        translate(3px,-3px);
}


/* =========================================================
   ABOUT TABLET
========================================================= */

@media (max-width: 930px) {

    .about-premium-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-visual {
        max-width: 680px;

        width: 100%;

        margin-inline: auto;
    }

}


/* =========================================================
   ABOUT MOBILE
========================================================= */

@media (max-width: 640px) {

    .about-visual {
        min-height: auto;

        padding-bottom: 0;
    }

    .about-main-photo {
        position: relative;

        width: 100%;
        height: 440px;

        border-radius:
            22px 22px 22px 6px;
    }

    .about-detail-photo {
        position: relative;

        right: auto;
        bottom: auto;

        width: 52%;
        height: 190px;

        margin:
            -95px 15px 0 auto;

        border-width: 6px;
    }

    .about-expertise-card {
        left: 16px;
        right: auto;
        top: 20px;

        width: 190px;

        padding:
            16px 17px;
    }

    .about-line-decoration {
        display: none;
    }

    .about-premium-content h2 {
        font-size: 33px;

        letter-spacing:
            -1.3px;
    }

    .about-lead {
        font-size: 15px;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
    }

    .about-actions {
        align-items: stretch;

        flex-direction: column;

        gap: 18px;
    }

    .about-text-link {
        justify-content: center;
    }

}

/* =========================================================
   PREMIUM CORE EXPERTISE
========================================================= */

.expertise-premium {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f7f9f8 0%,
            #ffffff 100%
        );
}

.expertise-premium::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    left: -300px;
    top: 160px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,91,56,.05),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.expertise-heading {
    position: relative;
    z-index: 2;

    margin-bottom: 55px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 65px;
}

.expertise-heading > div {
    max-width: 730px;
}

.expertise-heading h2 {
    max-width: 720px;

    margin-top: 13px;

    color: var(--ink);

    font-size:
        clamp(38px, 3.9vw, 54px);

    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -2px;
}

.expertise-heading h2 span {
    color: var(--green);
}

.expertise-heading > p {
    max-width: 430px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   GRID
========================================================= */

.expertise-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   CARD
========================================================= */

.expertise-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 22px;

    background: var(--white);

    box-shadow:
        0 8px 32px rgba(0,46,30,.045);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.expertise-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(0,91,56,.22);

    box-shadow:
        0 28px 70px rgba(0,46,30,.12);
}

.expertise-card-featured {
    border-color:
        rgba(0,91,56,.18);

    box-shadow:
        0 20px 60px rgba(0,46,30,.10);
}


/* =========================================================
   IMAGE AREA
========================================================= */

.expertise-image {
    position: relative;

    height: 310px;

    display: block;

    overflow: hidden;

    background:
        var(--green-deep);
}

.expertise-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .9s ease;
}

.expertise-card:hover
.expertise-image img {
    transform:
        scale(1.055);
}

.expertise-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,30,19,.08) 20%,
            rgba(0,34,22,.18) 50%,
            rgba(0,37,24,.85) 100%
        );
}

.expertise-number {
    position: absolute;

    right: 20px;
    top: 20px;

    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,.20);

    border-radius: 50%;

    background:
        rgba(0,45,29,.62);

    color: var(--gold);

    backdrop-filter:
        blur(9px);

    -webkit-backdrop-filter:
        blur(9px);

    font-size: 10px;
    font-weight: 800;
}

.expertise-type {
    position: absolute;

    left: 22px;
    top: 22px;

    padding:
        8px 11px;

    border:
        1px solid rgba(255,255,255,.16);

    border-radius: 100px;

    background:
        rgba(0,44,29,.60);

    color:
        rgba(255,255,255,.90);

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.1px;
}

.expertise-image-title {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 24px;

    color: var(--white);
}

.expertise-image-title > span {
    display: block;

    color:
        rgba(255,255,255,.62);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .4px;
}

.expertise-image-title strong {
    display: block;

    margin-top: 3px;

    font-family:
        'Manrope',
        sans-serif;

    font-size: 30px;
    font-weight: 800;

    line-height: 1.15;
}


/* =========================================================
   CONTENT AREA
========================================================= */

.expertise-content {
    min-height: 375px;

    position: relative;

    padding:
        29px 28px 75px;
}

.expertise-content h3 {
    color:
        var(--green-dark);

    font-size: 21px;
    font-weight: 800;

    line-height: 1.3;
}

.expertise-content > p {
    margin-top: 13px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.78;
}


/* =========================================================
   LIST
========================================================= */

.expertise-list {
    margin-top: 22px;

    display: grid;

    gap: 10px;
}

.expertise-list li {
    display: flex;
    align-items: center;

    gap: 9px;

    color: var(--text);

    font-size: 12px;
    font-weight: 600;
}

.expertise-list li > span {
    width: 22px;
    height: 22px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--green-soft);

    color:
        var(--green);

    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   EXPLORE LINK
========================================================= */

.expertise-link {
    position: absolute;

    left: 28px;
    bottom: 28px;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--green);

    font-size: 13px;
    font-weight: 800;

    transition:
        color .25s ease;
}

.expertise-link span {
    transition:
        transform .25s ease;
}

.expertise-link:hover {
    color:
        var(--green-dark);
}

.expertise-link:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 930px) {

    .expertise-heading {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 22px;
    }

    .expertise-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .expertise-card:last-child {
        grid-column:
            1 / -1;

        max-width: 580px;

        width: 100%;

        margin-inline: auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .expertise-heading {
        margin-bottom: 38px;
    }

    .expertise-heading h2 {
        font-size: 33px;

        letter-spacing:
            -1.3px;
    }

    .expertise-grid {
        grid-template-columns:
            1fr;
    }

    .expertise-card:last-child {
        grid-column: auto;

        max-width: none;
    }

    .expertise-image {
        height: 270px;
    }

    .expertise-image-title strong {
        font-size: 26px;
    }

    .expertise-content {
        min-height: auto;

        padding:
            26px 24px 75px;
    }

    .expertise-link {
        left: 24px;
    }

}

/* =========================================================
   PREMIUM ENGINEERING CAPABILITIES
========================================================= */

.capabilities-premium {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f6f8f7 0%,
            #fbfcfb 100%
        );
}

.capabilities-premium::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -350px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,91,56,.055),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.capabilities-heading {
    position: relative;
    z-index: 2;

    margin-bottom: 55px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 70px;
}

.capabilities-heading > div {
    max-width: 730px;
}

.capabilities-heading h2 {
    max-width: 720px;

    margin-top: 13px;

    color: var(--ink);

    font-size:
        clamp(38px, 3.8vw, 53px);

    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -2px;
}

.capabilities-heading h2 span {
    color: var(--green);
}

.capabilities-heading > p {
    max-width: 440px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.capabilities-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(330px, .82fr)
        minmax(0, 1.7fr);

    gap: 25px;
}


/* =========================================================
   FEATURE IMAGE PANEL
========================================================= */

.capabilities-feature {
    position: relative;

    min-height: 600px;

    overflow: hidden;

    border-radius: 24px;

    background: var(--green-deep);

    box-shadow:
        0 30px 80px rgba(0,46,30,.16);
}

.capabilities-feature-bg {
    position: absolute;
    inset: 0;

    background-position: center;
    background-size: cover;

    transition:
        transform 1s ease;
}

.capabilities-feature:hover
.capabilities-feature-bg {
    transform: scale(1.045);
}

.capabilities-feature-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,34,22,.18) 10%,
            rgba(0,34,22,.35) 45%,
            rgba(0,38,24,.94) 100%
        );
}

.capabilities-feature-content {
    position: absolute;
    z-index: 3;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 36px;
}

.capabilities-feature-label {
    display: inline-flex;

    padding:
        8px 11px;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius: 100px;

    background:
        rgba(0,48,31,.55);

    color: var(--gold);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.3px;

    backdrop-filter: blur(8px);
}

.capabilities-feature-content h3 {
    max-width: 390px;

    margin-top: 18px;

    color: var(--white);

    font-size:
        clamp(27px, 2.7vw, 37px);

    font-weight: 800;

    line-height: 1.13;
    letter-spacing: -1px;
}

.capabilities-feature-content p {
    max-width: 390px;

    margin-top: 16px;

    color:
        rgba(255,255,255,.67);

    font-size: 13px;
    line-height: 1.8;
}

.capabilities-feature-tags {
    margin-top: 22px;

    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.capabilities-feature-tags span {
    padding:
        7px 10px;

    border-radius: 100px;

    background:
        rgba(255,255,255,.09);

    border:
        1px solid rgba(255,255,255,.11);

    color:
        rgba(255,255,255,.82);

    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   CAPABILITY GRID
========================================================= */

.capabilities-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 17px;
}


/* =========================================================
   CAPABILITY CARD
========================================================= */

.capability-pro-card {
    position: relative;

    min-height: 190px;

    overflow: hidden;

    padding:
        25px 25px 28px;

    border:
        1px solid var(--border);

    border-radius: 17px;

    background:
        rgba(255,255,255,.93);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.capability-pro-card::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -75px;
    bottom: -75px;

    border-radius: 50%;

    background:
        var(--green-soft);

    transition:
        transform .4s ease;
}

.capability-pro-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(0,91,56,.20);

    box-shadow:
        0 20px 50px rgba(0,46,30,.09);
}

.capability-pro-card:hover::before {
    transform:
        scale(1.8);
}


/* =========================================================
   TOP ROW
========================================================= */

.capability-pro-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.capability-pro-no {
    color:
        var(--gold-dark);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}

.capability-pro-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        var(--green-soft);

    color:
        var(--green);

    font-size: 10px;
    font-weight: 800;

    transition:
        var(--transition);
}

.capability-pro-card:hover
.capability-pro-icon {
    background:
        var(--green);

    color:
        var(--white);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.capability-pro-card h3 {
    position: relative;
    z-index: 2;

    max-width: 280px;

    margin-top: 18px;

    color:
        var(--green-dark);

    font-size: 17px;
    font-weight: 800;

    line-height: 1.35;
}

.capability-pro-card p {
    position: relative;
    z-index: 2;

    max-width: 310px;

    margin-top: 9px;

    color:
        var(--muted);

    font-size: 12px;
    line-height: 1.7;
}

.capability-pro-line {
    position: absolute;

    left: 25px;
    bottom: 18px;

    width: 28px;
    height: 2px;

    background:
        var(--gold);

    transition:
        width .3s ease;
}

.capability-pro-card:hover
.capability-pro-line {
    width: 55px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .capabilities-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 22px;
    }

    .capabilities-layout {
        grid-template-columns: 1fr;
    }

    .capabilities-feature {
        min-height: 480px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .capabilities-heading {
        margin-bottom: 38px;
    }

    .capabilities-heading h2 {
        font-size: 33px;

        letter-spacing: -1.3px;
    }

    .capabilities-feature {
        min-height: 450px;

        border-radius: 20px;
    }

    .capabilities-feature-content {
        padding: 26px;
    }

    .capabilities-feature-content h3 {
        font-size: 29px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .capability-pro-card {
        min-height: 180px;
    }

}

/* =========================================================
   WHY CHOOSE US - PREMIUM
========================================================= */

.why-premium {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            #002d1d 0%,
            #003f29 52%,
            #005a39 100%
        );

    color: var(--white);
}

.why-premium::before {
    content: "";

    position: absolute;

    width: 620px;
    height: 620px;

    left: -320px;
    top: -290px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.05);

    box-shadow:
        inset 0 0 0 85px rgba(255,255,255,.014),
        inset 0 0 0 170px rgba(255,255,255,.014);

    pointer-events: none;
}

.why-premium::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -210px;
    bottom: -230px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244,180,55,.10),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   LAYOUT
========================================================= */

.why-premium-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .92fr);

    align-items: center;

    gap: 85px;
}


/* =========================================================
   CONTENT
========================================================= */

.why-premium-content h2 {
    max-width: 680px;

    margin-top: 15px;

    color: var(--white);

    font-size:
        clamp(39px, 4vw, 55px);

    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -2px;
}

.why-premium-content h2 span {
    color: var(--gold);
}

.why-premium-lead {
    max-width: 620px;

    margin-top: 23px;

    color:
        rgba(255,255,255,.69);

    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   FEATURE LIST
========================================================= */

.why-premium-features {
    margin-top: 35px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 17px;
}

.why-premium-item {
    min-height: 150px;

    display: grid;

    grid-template-columns:
        44px minmax(0,1fr);

    align-items: flex-start;

    gap: 14px;

    padding: 19px;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 14px;

    background:
        rgba(255,255,255,.035);

    transition:
        transform .28s ease,
        background .28s ease,
        border-color .28s ease;
}

.why-premium-item:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(244,180,55,.22);

    background:
        rgba(255,255,255,.06);
}

.why-premium-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(244,180,55,.12);

    color: var(--gold);

    border:
        1px solid rgba(244,180,55,.15);

    font-size: 10px;
    font-weight: 800;
}

.why-premium-item strong {
    display: block;

    color: var(--white);

    font-size: 14px;
    font-weight: 800;

    line-height: 1.4;
}

.why-premium-item p {
    margin-top: 6px;

    color:
        rgba(255,255,255,.57);

    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   ACTIONS
========================================================= */

.why-premium-actions {
    margin-top: 35px;

    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 25px;
}

.why-premium-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color:
        rgba(255,255,255,.85);

    font-size: 13px;
    font-weight: 800;

    transition:
        color .25s ease;
}

.why-premium-link span {
    color: var(--gold);

    transition:
        transform .25s ease;
}

.why-premium-link:hover {
    color: var(--white);
}

.why-premium-link:hover span {
    transform:
        translate(3px,-3px);
}


/* =========================================================
   IMAGE PANEL
========================================================= */

.why-premium-visual {
    position: relative;

    height: 640px;

    overflow: hidden;

    border-radius:
        28px 28px 8px 28px;

    background: var(--green-deep);

    box-shadow:
        0 40px 100px rgba(0,0,0,.28);
}

.why-premium-visual::before {
    content: "";

    position: absolute;
    z-index: 4;

    inset: 16px;

    border:
        1px solid rgba(255,255,255,.14);

    border-radius:
        20px 20px 5px 20px;

    pointer-events: none;
}

.why-premium-visual img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s ease;
}

.why-premium-visual:hover img {
    transform: scale(1.04);
}

.why-premium-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,32,21,.06) 35%,
            rgba(0,35,23,.24) 60%,
            rgba(0,35,23,.80) 100%
        );
}


/* =========================================================
   TOP BADGE
========================================================= */

.why-premium-top-badge {
    position: absolute;
    z-index: 5;

    left: 28px;
    top: 28px;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding:
        10px 14px;

    border:
        1px solid rgba(255,255,255,.18);

    border-radius: 100px;

    background:
        rgba(0,47,30,.62);

    color:
        rgba(255,255,255,.90);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

    font-size: 10px;
    font-weight: 700;
}

.why-premium-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 0 5px
        rgba(244,180,55,.13);
}


/* =========================================================
   STAT CARD
========================================================= */

.why-premium-stat {
    position: absolute;
    z-index: 5;

    left: 28px;
    right: 28px;
    bottom: 28px;

    padding: 22px;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius: 14px;

    background:
        rgba(0,42,27,.72);

    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);

    color: var(--white);
}

.why-premium-stat small {
    color: var(--gold);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.why-premium-stat strong {
    display: block;

    margin-top: 7px;

    font-size: 22px;
    font-weight: 800;

    line-height: 1.3;
}

.why-premium-stat span {
    display: block;

    margin-top: 5px;

    color:
        rgba(255,255,255,.60);

    font-size: 10px;
}


/* =========================================================
   MINI FLOATING CARD
========================================================= */

.why-premium-mini-card {
    position: absolute;
    z-index: 6;

    right: 22px;
    top: 90px;

    padding:
        14px 16px;

    border-radius: 12px;

    background:
        var(--gold);

    color:
        var(--green-dark);

    box-shadow:
        0 20px 50px rgba(0,0,0,.16);
}

.why-premium-mini-card strong {
    display: block;

    font-size: 12px;
    font-weight: 800;
}

.why-premium-mini-card span {
    display: block;

    margin-top: 3px;

    font-size: 8px;
    font-weight: 600;

    opacity: .75;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .why-premium-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .why-premium-content {
        max-width: 760px;
    }

    .why-premium-visual {
        max-width: 680px;

        width: 100%;

        margin-inline: auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .why-premium-content h2 {
        font-size: 33px;

        letter-spacing: -1.3px;
    }

    .why-premium-features {
        grid-template-columns: 1fr;
    }

    .why-premium-item {
        min-height: auto;
    }

    .why-premium-actions {
        align-items: stretch;

        flex-direction: column;

        gap: 18px;
    }

    .why-premium-link {
        justify-content: center;
    }

    .why-premium-visual {
        height: 470px;

        border-radius:
            22px 22px 6px 22px;
    }

    .why-premium-top-badge {
        left: 20px;
        top: 20px;
    }

    .why-premium-mini-card {
        right: 18px;
        top: 75px;
    }

    .why-premium-stat {
        left: 20px;
        right: 20px;
        bottom: 20px;

        padding: 18px;
    }

    .why-premium-stat strong {
        font-size: 18px;
    }

}

/* =========================================================
   PREMIUM SERVICE PROCESS
========================================================= */

.process-premium {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            #00291b 0%,
            #003522 55%,
            #00482e 100%
        );

    color: var(--white);
}

.process-premium::before {
    content: "";

    position: absolute;

    width: 540px;
    height: 540px;

    right: -260px;
    top: -260px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.05);

    box-shadow:
        inset 0 0 0 75px rgba(255,255,255,.012),
        inset 0 0 0 150px rgba(255,255,255,.012);

    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.process-premium-heading {
    max-width: 760px;

    position: relative;
    z-index: 2;

    margin:
        0 auto 70px;

    text-align: center;
}

.process-premium-heading h2 {
    margin-top: 14px;

    color: var(--white);

    font-size:
        clamp(38px, 4vw, 54px);

    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -2px;
}

.process-premium-heading h2 span {
    color: var(--gold);
}

.process-premium-heading p {
    max-width: 650px;

    margin:
        20px auto 0;

    color:
        rgba(255,255,255,.62);

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   TIMELINE
========================================================= */

.process-timeline {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 24px;
}

.process-track {
    position: absolute;

    left: 12.5%;
    right: 12.5%;
    top: 31px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(244,180,55,.15),
            rgba(244,180,55,.55),
            rgba(244,180,55,.15)
        );

    z-index: 0;
}


/* =========================================================
   STEP
========================================================= */

.process-step {
    position: relative;
    z-index: 2;
}

.process-step-marker {
    width: 62px;
    height: 62px;

    margin:
        0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(244,180,55,.30);

    border-radius: 50%;

    background:
        #003b27;

    box-shadow:
        0 0 0 9px rgba(244,180,55,.055);

    transition:
        var(--transition);
}

.process-step-marker span {
    color: var(--gold);

    font-size: 12px;
    font-weight: 800;
}

.process-step:hover
.process-step-marker {
    transform:
        translateY(-3px);

    background:
        var(--gold);

    box-shadow:
        0 0 0 10px rgba(244,180,55,.10);
}

.process-step:hover
.process-step-marker span {
    color:
        var(--green-dark);
}


/* =========================================================
   STEP CARD
========================================================= */

.process-step-card {
    min-height: 250px;

    position: relative;

    padding:
        28px 25px;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 17px;

    background:
        rgba(255,255,255,.035);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.process-step-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(244,180,55,.24);

    background:
        rgba(255,255,255,.055);
}

.process-step-label {
    color:
        var(--gold);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.process-step-card h3 {
    margin-top: 14px;

    color:
        var(--white);

    font-size: 19px;
    font-weight: 800;

    line-height: 1.35;
}

.process-step-card p {
    margin-top: 12px;

    color:
        rgba(255,255,255,.57);

    font-size: 12px;
    line-height: 1.8;
}

.process-step-meta {
    position: absolute;

    left: 25px;
    bottom: 24px;

    display: inline-flex;

    padding:
        7px 10px;

    border-radius: 100px;

    background:
        rgba(244,180,55,.09);

    color:
        rgba(244,180,55,.90);

    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 930px) {

    .process-timeline {
        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap:
            35px 20px;
    }

    .process-track {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .process-premium-heading {
        margin-bottom: 45px;
    }

    .process-premium-heading h2 {
        font-size: 33px;

        letter-spacing: -1.3px;
    }

    .process-timeline {
        grid-template-columns:
            1fr;

        gap: 26px;
    }

    .process-step {
        display: grid;

        grid-template-columns:
            55px minmax(0,1fr);

        gap: 15px;

        align-items: flex-start;
    }

    .process-step-marker {
        width: 50px;
        height: 50px;

        margin: 0;
    }

    .process-step-card {
        min-height: 220px;

        padding:
            24px 21px;
    }

    .process-step-meta {
        left: 21px;
    }

}

/* =========================================================
   PROJECTS PREMIUM
========================================================= */

.projects-premium {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8faf9 100%
        );
}

.projects-premium::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    left: -300px;
    bottom: -270px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,91,56,.045),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.projects-premium-heading {
    position: relative;
    z-index: 2;

    margin-bottom: 55px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 70px;
}

.projects-premium-heading > div:first-child {
    max-width: 690px;
}

.projects-premium-heading h2 {
    margin-top: 13px;

    color: var(--ink);

    font-size:
        clamp(38px, 3.8vw, 53px);

    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -2px;
}

.projects-premium-heading h2 span {
    color: var(--green);
}

.projects-heading-right {
    max-width: 420px;
}

.projects-heading-right p {
    color: var(--muted);

    font-size: 14px;
    line-height: 1.85;
}

.projects-view-all {
    margin-top: 17px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--green);

    font-size: 13px;
    font-weight: 800;
}

.projects-view-all span {
    transition: transform .25s ease;
}

.projects-view-all:hover span {
    transform: translateX(4px);
}


/* =========================================================
   PROJECT GRID
========================================================= */

.projects-premium-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   PROJECT CARD
========================================================= */

.project-premium-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 21px;

    background: var(--white);

    box-shadow:
        0 8px 32px rgba(0,46,30,.045);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.project-premium-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(0,91,56,.20);

    box-shadow:
        0 30px 75px rgba(0,46,30,.12);
}


/* =========================================================
   PROJECT IMAGE
========================================================= */

.project-premium-image {
    position: relative;

    height: 360px;

    display: block;

    overflow: hidden;

    background: var(--green-deep);
}

.project-premium-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .9s ease;
}

.project-premium-card:hover
.project-premium-image img {
    transform: scale(1.055);
}

.project-premium-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,35,23,.05) 25%,
            rgba(0,35,23,.17) 50%,
            rgba(0,35,23,.88) 100%
        );
}


/* =========================================================
   IMAGE TOP
========================================================= */

.project-premium-top {
    position: absolute;

    left: 20px;
    right: 20px;
    top: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-premium-type {
    padding:
        8px 12px;

    border:
        1px solid rgba(255,255,255,.17);

    border-radius: 100px;

    background:
        rgba(0,45,29,.62);

    color: rgba(255,255,255,.92);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .7px;
}

.project-premium-no {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,.17);

    border-radius: 50%;

    background:
        rgba(0,45,29,.58);

    color: var(--gold);

    backdrop-filter: blur(8px);

    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   IMAGE CONTENT
========================================================= */

.project-premium-image-content {
    position: absolute;

    left: 24px;
    right: 24px;
    bottom: 24px;

    color: var(--white);
}

.project-premium-image-content > span {
    display: block;

    color:
        rgba(255,255,255,.58);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .3px;
}

.project-premium-image-content strong {
    display: block;

    max-width: 320px;

    margin-top: 5px;

    font-family:
        'Manrope',
        sans-serif;

    font-size: 22px;
    font-weight: 800;

    line-height: 1.3;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.project-premium-content {
    position: relative;

    min-height: 145px;

    padding:
        22px 24px 55px;
}

.project-premium-meta {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 18px;
}

.project-premium-meta > div {
    min-width: 0;
}

.project-premium-meta span {
    display: block;

    color: var(--gold-dark);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.project-premium-meta strong {
    display: block;

    margin-top: 4px;

    overflow: hidden;

    color:
        var(--green-dark);

    font-size: 11px;
    font-weight: 700;

    line-height: 1.5;

    text-overflow: ellipsis;
}

.project-premium-link {
    position: absolute;

    left: 24px;
    bottom: 20px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--green);

    font-size: 12px;
    font-weight: 800;
}

.project-premium-link span {
    transition: transform .25s ease;
}

.project-premium-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 930px) {

    .projects-premium-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 22px;
    }

    .projects-premium-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .project-premium-card:last-child {
        grid-column: 1 / -1;

        max-width: 580px;

        width: 100%;

        margin-inline: auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .projects-premium-heading {
        margin-bottom: 38px;
    }

    .projects-premium-heading h2 {
        font-size: 33px;

        letter-spacing: -1.3px;
    }

    .projects-premium-grid {
        grid-template-columns: 1fr;
    }

    .project-premium-card:last-child {
        grid-column: auto;

        max-width: none;
    }

    .project-premium-image {
        height: 300px;
    }

    .project-premium-image-content strong {
        font-size: 20px;
    }

}

/* =========================================================
   PREMIUM FINAL CTA
========================================================= */

.cta-premium {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--green-deep);

    color: var(--white);
}

.cta-premium-bg {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center 48%;
    background-repeat: no-repeat;

    transform: scale(1.02);
}

.cta-premium-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,36,23,.97) 0%,
            rgba(0,43,28,.92) 42%,
            rgba(0,43,28,.66) 70%,
            rgba(0,35,23,.56) 100%
        );
}

.cta-premium-overlay::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.04),
            rgba(0,30,19,.35)
        );
}

.cta-premium-inner {
    position: relative;
    z-index: 3;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;

    padding-top: 80px;
    padding-bottom: 80px;
}

.cta-premium-content {
    max-width: 760px;
}

.cta-premium-content h2 {
    max-width: 740px;

    margin-top: 14px;

    color: var(--white);

    font-size:
        clamp(38px, 4vw, 55px);

    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -2px;
}

.cta-premium-content h2 span {
    color: var(--gold);
}

.cta-premium-content > p {
    max-width: 650px;

    margin-top: 20px;

    color:
        rgba(255,255,255,.68);

    font-size: 14px;
    line-height: 1.85;
}

.cta-premium-points {
    margin-top: 27px;

    display: flex;
    flex-wrap: wrap;

    gap: 9px;
}

.cta-premium-points span {
    padding:
        8px 12px;

    border:
        1px solid rgba(255,255,255,.14);

    border-radius: 100px;

    background:
        rgba(255,255,255,.055);

    color:
        rgba(255,255,255,.82);

    backdrop-filter: blur(7px);

    font-size: 10px;
    font-weight: 700;
}

.cta-premium-actions {
    min-width: 260px;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

@media (max-width: 930px) {

    .cta-premium-inner {
        align-items: flex-start;

        flex-direction: column;

        gap: 35px;
    }

    .cta-premium-actions {
        min-width: 0;

        flex-direction: row;
    }

}

@media (max-width: 640px) {

    .cta-premium {
        min-height: auto;
    }

    .cta-premium-inner {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .cta-premium-content h2 {
        font-size: 33px;

        letter-spacing: -1.3px;
    }

    .cta-premium-actions {
        width: 100%;

        flex-direction: column;
    }

}

/* =========================================================
   PREMIUM FOOTER
========================================================= */

.footer-premium {
    position: relative;
    overflow: hidden;

    background:
        #001d13;

    color: var(--white);
}

.footer-premium::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -290px;
    bottom: -300px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.04);

    box-shadow:
        inset 0 0 0 70px rgba(255,255,255,.01),
        inset 0 0 0 140px rgba(255,255,255,.01);
}

.footer-premium-top {
    position: relative;
    z-index: 2;

    padding:
        75px 0 58px;

    display: grid;

    grid-template-columns:
        1.45fr
        .8fr
        .72fr
        1.12fr;

    gap: 55px;
}


/* BRAND */

.footer-brand {
    display: flex;
    align-items: center;

    gap: 14px;
}

.footer-brand-mark {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        2px solid var(--gold);

    border-radius: 50%;

    color: var(--gold);

    font-family:
        Georgia,
        serif;

    font-size: 19px;
    font-style: italic;
    font-weight: 700;
}

.footer-brand strong {
    display: block;

    color: var(--white);

    font-size: 21px;
    font-weight: 800;
}

.footer-brand span {
    display: block;

    max-width: 230px;

    margin-top: 3px;

    color:
        rgba(255,255,255,.45);

    font-size: 8px;
    line-height: 1.4;
}

.footer-brand-area > p {
    max-width: 370px;

    margin-top: 22px;

    color:
        rgba(255,255,255,.55);

    font-size: 12px;
    line-height: 1.85;
}

.footer-specialties {
    margin-top: 22px;

    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.footer-specialties span {
    padding:
        6px 9px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 100px;

    color:
        rgba(255,255,255,.60);

    font-size: 8px;
    font-weight: 700;
}


/* COLUMNS */

.footer-column-label {
    display: block;

    color: var(--gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.footer-column h4,
.footer-contact h4 {
    margin-top: 7px;
    margin-bottom: 20px;

    color: var(--white);

    font-size: 15px;
    font-weight: 800;
}

.footer-column > a {
    width: fit-content;

    display: block;

    margin-bottom: 9px;

    color:
        rgba(255,255,255,.56);

    font-size: 11px;

    transition: var(--transition);
}

.footer-column > a:hover {
    color: var(--gold);

    transform: translateX(3px);
}


/* CONTACT */

.footer-contact-item {
    margin-bottom: 16px;
}

.footer-contact-item > span {
    display: block;

    margin-bottom: 4px;

    color:
        rgba(244,180,55,.78);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1px;
}

.footer-contact-item a,
.footer-contact-item p {
    color:
        rgba(255,255,255,.61);

    font-size: 11px;
    line-height: 1.7;
}

.footer-contact-item a:hover {
    color: var(--gold);
}


/* SERVICE BAR */

.footer-service-bar {
    position: relative;
    z-index: 2;

    min-height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding:
        18px 22px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 13px;

    background:
        rgba(255,255,255,.025);
}

.footer-service-bar > div {
    display: flex;
    align-items: center;

    gap: 13px;
}

.footer-service-dot {
    width: 10px;
    height: 10px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 0 7px
        rgba(244,180,55,.09);
}

.footer-service-bar strong {
    display: block;

    color: var(--white);

    font-size: 12px;
}

.footer-service-bar small {
    display: block;

    margin-top: 2px;

    color:
        rgba(255,255,255,.48);

    font-size: 9px;
}

.footer-service-bar > a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 800;
}

.footer-service-bar > a span {
    transition:
        transform .25s ease;
}

.footer-service-bar > a:hover span {
    transform:
        translateX(4px);
}


/* BOTTOM */

.footer-premium-bottom {
    position: relative;
    z-index: 2;

    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 22px;

    border-top:
        1px solid rgba(255,255,255,.06);

    color:
        rgba(255,255,255,.36);

    font-size: 9px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 18px;
}

.footer-bottom-links a {
    transition: color .25s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}


/* TABLET */

@media (max-width: 930px) {

    .footer-premium-top {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px;
    }

}


/* MOBILE */

@media (max-width: 640px) {

    .footer-premium-top {
        padding-top: 58px;

        grid-template-columns: 1fr;

        gap: 34px;
    }

    .footer-service-bar {
        align-items: flex-start;

        flex-direction: column;
    }

    .footer-premium-bottom {
        padding:
            22px 0;

        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
    }

}

/* =========================================================
   GEN HEALTHCARE
   FINAL LAYOUT + CTA + FOOTER REFINEMENT
   Add this at the VERY END of style.css
========================================================= */


/* =========================================================
   01. GLOBAL CONTAINER REFINEMENT
========================================================= */

.container {
    width: min(1280px, calc(100% - 80px));
    margin-left: auto;
    margin-right: auto;
}


/* Large desktop */
@media (min-width: 1440px) {

    .container {
        width: min(1320px, calc(100% - 120px));
    }

}


/* Medium desktop */
@media (max-width: 1200px) {

    .container {
        width: calc(100% - 64px);
    }

}


/* Tablet */
@media (max-width: 930px) {

    .container {
        width: calc(100% - 48px);
    }

}


/* Mobile */
@media (max-width: 640px) {

    .container {
        width: calc(100% - 32px);
    }

}


/* Extra small */
@media (max-width: 390px) {

    .container {
        width: calc(100% - 26px);
    }

}



/* =========================================================
   02. FINAL CTA - BETTER SPACING
========================================================= */

.cta-premium {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--green-deep);
    color: var(--white);
}


.cta-premium-bg {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center 48%;
    background-repeat: no-repeat;

    transform: scale(1.015);
}


.cta-premium-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 34, 22, .97) 0%,
            rgba(0, 40, 26, .94) 32%,
            rgba(0, 42, 27, .78) 58%,
            rgba(0, 37, 24, .48) 78%,
            rgba(0, 34, 22, .38) 100%
        );
}


.cta-premium-overlay::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.03) 0%,
            rgba(0,0,0,.02) 45%,
            rgba(0,27,18,.40) 100%
        );
}


/* CTA inner */

.cta-premium-inner {
    position: relative;
    z-index: 3;

    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(290px, .55fr);

    align-items: center;

    gap: 80px;

    padding-top: 88px;
    padding-bottom: 88px;
}


.cta-premium-content {
    max-width: 780px;
}


.cta-premium-content .section-eyebrow {
    font-size: 12px;

    letter-spacing: 1.8px;
}


.cta-premium-content h2 {
    max-width: 760px;

    margin-top: 17px;

    color: var(--white);

    font-size: clamp(42px, 4.2vw, 58px);
    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -2.2px;
}


.cta-premium-content h2 span {
    color: var(--gold);
}


.cta-premium-content > p {
    max-width: 690px;

    margin-top: 24px;

    color: rgba(255,255,255,.78);

    font-size: 16px;
    font-weight: 400;

    line-height: 1.8;
}


/* CTA tags */

.cta-premium-points {
    margin-top: 29px;

    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}


.cta-premium-points span {
    padding: 9px 14px;

    border:
        1px solid rgba(255,255,255,.18);

    border-radius: 100px;

    background:
        rgba(255,255,255,.055);

    color:
        rgba(255,255,255,.88);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    font-size: 11px;
    font-weight: 700;
}


/* CTA buttons */

.cta-premium-actions {
    width: 100%;
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 13px;
}


.cta-premium-actions .btn {
    width: 100%;

    min-height: 58px;

    padding-left: 25px;
    padding-right: 25px;

    font-size: 14px;
}


.cta-premium-actions .btn-gold {
    box-shadow:
        0 15px 35px rgba(244,180,55,.20);
}


.cta-premium-actions .btn-hero-outline {
    background:
        rgba(0,35,23,.34);

    border-color:
        rgba(255,255,255,.45);
}



/* =========================================================
   03. PREMIUM FOOTER - DESKTOP
========================================================= */

.footer-premium {
    position: relative;

    overflow: hidden;

    background: #001d13;

    color: var(--white);
}


.footer-premium::before {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    right: -320px;
    bottom: -330px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.035);

    box-shadow:
        inset 0 0 0 80px rgba(255,255,255,.009),
        inset 0 0 0 160px rgba(255,255,255,.009);

    pointer-events: none;
}



/* =========================================================
   FOOTER MAIN GRID
========================================================= */

.footer-premium-top {
    position: relative;
    z-index: 2;

    padding-top: 82px;
    padding-bottom: 68px;

    display: grid;

    grid-template-columns:
        minmax(300px, 1.35fr)
        minmax(175px, .72fr)
        minmax(155px, .65fr)
        minmax(250px, 1fr);

    align-items: start;

    gap: 60px;
}



/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
    display: flex;
    align-items: center;

    gap: 16px;
}


.footer-brand-mark {
    width: 64px;
    height: 64px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        2px solid var(--gold);

    border-radius: 50%;

    color: var(--gold);

    font-family:
        Georgia,
        'Times New Roman',
        serif;

    font-size: 20px;
    font-style: italic;
    font-weight: 700;
}


.footer-brand strong {
    display: block;

    color: var(--white);

    font-family:
        'Manrope',
        sans-serif;

    font-size: 22px;
    font-weight: 800;

    line-height: 1.2;
}


.footer-brand span {
    display: block;

    max-width: 280px;

    margin-top: 5px;

    color:
        rgba(255,255,255,.58);

    font-size: 10px;
    font-weight: 500;

    line-height: 1.5;
}


.footer-brand-area > p {
    max-width: 410px;

    margin-top: 25px;

    color:
        rgba(255,255,255,.66);

    font-size: 14px;

    line-height: 1.8;
}



/* =========================================================
   FOOTER SPECIALTY PILLS
========================================================= */

.footer-specialties {
    margin-top: 24px;

    display: flex;
    flex-wrap: wrap;

    gap: 9px;
}


.footer-specialties span {
    padding: 7px 11px;

    border:
        1px solid rgba(255,255,255,.11);

    border-radius: 100px;

    background:
        rgba(255,255,255,.025);

    color:
        rgba(255,255,255,.72);

    font-size: 10px;
    font-weight: 700;
}



/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-column-label {
    display: block;

    color: var(--gold);

    font-size: 10px;
    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 1.5px;
}


.footer-column h4,
.footer-contact h4 {
    margin-top: 10px;
    margin-bottom: 23px;

    color: var(--white);

    font-family:
        'Manrope',
        sans-serif;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.35;
}



/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-column > a {
    width: fit-content;

    display: block;

    margin-bottom: 11px;

    color:
        rgba(255,255,255,.67);

    font-size: 13px;
    font-weight: 400;

    line-height: 1.6;

    transition:
        color .25s ease,
        transform .25s ease;
}


.footer-column > a:hover {
    color: var(--gold);

    transform:
        translateX(4px);
}



/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact-item {
    margin-bottom: 19px;
}


.footer-contact-item > span {
    display: block;

    margin-bottom: 6px;

    color:
        rgba(244,180,55,.92);

    font-size: 9px;
    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 1.25px;
}


.footer-contact-item a,
.footer-contact-item p {
    color:
        rgba(255,255,255,.69);

    font-size: 13px;
    font-weight: 400;

    line-height: 1.7;
}


.footer-contact-item p {
    max-width: 310px;
}


.footer-contact-item a {
    transition:
        color .25s ease;
}


.footer-contact-item a:hover {
    color: var(--gold);
}



/* =========================================================
   FOOTER SERVICE BAR
========================================================= */

.footer-service-bar {
    position: relative;
    z-index: 2;

    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding:
        20px 26px;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 14px;

    background:
        rgba(255,255,255,.028);
}


.footer-service-bar > div {
    display: flex;
    align-items: center;

    gap: 16px;
}


.footer-service-dot {
    width: 11px;
    height: 11px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 0 8px
        rgba(244,180,55,.10);
}


.footer-service-bar strong {
    display: block;

    color: var(--white);

    font-family:
        'Manrope',
        sans-serif;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.4;
}


.footer-service-bar small {
    display: block;

    margin-top: 4px;

    color:
        rgba(255,255,255,.58);

    font-size: 11px;

    line-height: 1.5;
}


.footer-service-bar > a {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--gold);

    font-size: 13px;
    font-weight: 800;

    transition:
        color .25s ease;
}


.footer-service-bar > a span {
    transition:
        transform .25s ease;
}


.footer-service-bar > a:hover {
    color: var(--gold-light);
}


.footer-service-bar > a:hover span {
    transform:
        translateX(5px);
}



/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-premium-bottom {
    position: relative;
    z-index: 2;

    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 24px;

    border-top:
        1px solid rgba(255,255,255,.075);

    color:
        rgba(255,255,255,.50);

    font-size: 11px;

    line-height: 1.6;
}


.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 20px;
}


.footer-bottom-links a {
    color:
        rgba(255,255,255,.50);

    transition:
        color .25s ease;
}


.footer-bottom-links a:hover {
    color: var(--gold);
}



/* =========================================================
   04. LARGE DESKTOP
========================================================= */

@media (min-width: 1440px) {

    .cta-premium-inner {
        gap: 100px;
    }


    .footer-premium-top {
        gap: 72px;
    }

}



/* =========================================================
   05. SMALL LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .cta-premium-inner {
        grid-template-columns:
            minmax(0, 1.35fr)
            minmax(270px, .65fr);

        gap: 50px;
    }


    .cta-premium-content h2 {
        font-size:
            clamp(39px, 4.3vw, 52px);
    }


    .footer-premium-top {
        grid-template-columns:
            1.3fr
            .8fr
            .8fr;

        gap:
            50px 40px;
    }


    .footer-contact {
        grid-column:
            1 / -1;

        max-width: 600px;
    }

}



/* =========================================================
   06. TABLET
========================================================= */

@media (max-width: 930px) {

    .cta-premium {
        min-height: auto;
    }


    .cta-premium-inner {
        display: flex;

        flex-direction: column;
        align-items: flex-start;

        gap: 38px;

        padding-top: 75px;
        padding-bottom: 75px;
    }


    .cta-premium-content {
        max-width: 760px;
    }


    .cta-premium-actions {
        width: auto;

        min-width: 290px;

        flex-direction: row;
    }


    .cta-premium-actions .btn {
        width: auto;
    }


    .footer-premium-top {
        padding-top: 68px;

        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap:
            48px 55px;
    }


    .footer-contact {
        grid-column: auto;

        max-width: none;
    }

}



/* =========================================================
   07. MOBILE
========================================================= */

@media (max-width: 640px) {

    .cta-premium-inner {
        padding-top: 65px;
        padding-bottom: 65px;

        gap: 32px;
    }


    .cta-premium-content h2 {
        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -1.3px;
    }


    .cta-premium-content > p {
        font-size: 15px;

        line-height: 1.75;
    }


    .cta-premium-points {
        margin-top: 24px;
    }


    .cta-premium-points span {
        font-size: 10px;
    }


    .cta-premium-actions {
        width: 100%;
        min-width: 0;

        flex-direction: column;
    }


    .cta-premium-actions .btn {
        width: 100%;
    }



    /* Footer */

    .footer-premium-top {
        padding-top: 60px;
        padding-bottom: 48px;

        grid-template-columns: 1fr;

        gap: 38px;
    }


    .footer-brand-mark {
        width: 58px;
        height: 58px;

        font-size: 19px;
    }


    .footer-brand strong {
        font-size: 20px;
    }


    .footer-brand span {
        font-size: 9px;
    }


    .footer-brand-area > p {
        font-size: 13px;
    }


    .footer-column-label {
        font-size: 9px;
    }


    .footer-column h4,
    .footer-contact h4 {
        margin-bottom: 17px;

        font-size: 16px;
    }


    .footer-column > a {
        margin-bottom: 9px;

        font-size: 13px;
    }


    .footer-contact-item a,
    .footer-contact-item p {
        font-size: 13px;
    }


    .footer-service-bar {
        min-height: auto;

        padding: 22px;

        align-items: flex-start;
        flex-direction: column;

        gap: 18px;
    }


    .footer-service-bar strong {
        font-size: 14px;
    }


    .footer-service-bar small {
        font-size: 11px;
    }


    .footer-service-bar > a {
        font-size: 13px;
    }


    .footer-premium-bottom {
        min-height: auto;

        padding:
            25px 0 30px;

        align-items: flex-start;
        flex-direction: column;

        gap: 13px;

        font-size: 11px;
    }

}



/* =========================================================
   08. EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .cta-premium-content h2 {
        font-size: 31px;
    }


    .footer-brand {
        align-items: flex-start;
    }


    .footer-bottom-links {
        gap:
            10px 16px;
    }

}

/* =========================================================
   CRITICAL CTA CONTAINER FIX
   Must stay at the VERY END of style.css
========================================================= */

.cta-premium .cta-premium-inner {
    width: min(1280px, calc(100% - 96px)) !important;
    max-width: 1280px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* Large desktop */
@media (min-width: 1440px) {

    .cta-premium .cta-premium-inner {
        width: min(1320px, calc(100% - 140px)) !important;
        max-width: 1320px !important;
    }

}


/* Small desktop */
@media (max-width: 1200px) {

    .cta-premium .cta-premium-inner {
        width: calc(100% - 72px) !important;
    }

}


/* Tablet */
@media (max-width: 930px) {

    .cta-premium .cta-premium-inner {
        width: calc(100% - 48px) !important;
    }

}


/* Mobile */
@media (max-width: 640px) {

    .cta-premium .cta-premium-inner {
        width: calc(100% - 32px) !important;
    }

}

/* =========================================================
   FOOTER FINAL CLEANUP
========================================================= */

.footer-premium-top {
    padding-bottom: 55px;
}

.footer-premium-bottom {
    margin-top: 0;
    min-height: 78px;

    border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 640px) {

    .footer-premium-top {
        padding-bottom: 42px;
    }

    .footer-premium-bottom {
        padding: 24px 0;
    }
}

/* =========================================================
   GEN HEALTHCARE
   STICKY HEADER + PREMIUM MOBILE NAVIGATION
========================================================= */


/* =========================================================
   STICKY NAVBAR
========================================================= */

.site-header {
    position: relative;
    z-index: 2000;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 2000;

    width: 100%;

    background: rgba(255,255,255,.98);

    border-bottom:
        1px solid var(--border);

    transition:
        box-shadow .3s ease,
        background .3s ease,
        min-height .3s ease;

    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}


/* After scrolling */

.navbar.navbar-scrolled {
    background:
        rgba(255,255,255,.96);

    box-shadow:
        0 12px 35px
        rgba(0,45,29,.09);
}


.navbar.navbar-scrolled
.nav-inner {
    min-height: 76px;
}


.navbar.navbar-scrolled
.brand-mark {
    width: 54px;
    height: 54px;
}


.navbar.navbar-scrolled
.brand-mark::after {
    width: 38px;
    height: 38px;
}


.navbar.navbar-scrolled
.brand-text strong {
    font-size: 23px;
}



/* =========================================================
   DESKTOP NAV
========================================================= */

.nav-inner {
    position: relative;

    min-height: 94px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 34px;

    transition:
        min-height .3s ease;
}


.main-nav {
    display: flex;
    align-items: center;

    gap: 28px;
}


.main-nav > a:not(.nav-cta) {
    position: relative;

    padding:
        34px 0;

    white-space: nowrap;
}


.navbar.navbar-scrolled
.main-nav > a:not(.nav-cta) {
    padding:
        25px 0;
}


.main-nav > a:not(.nav-cta)::after {
    bottom: 25px;
}


.navbar.navbar-scrolled
.main-nav > a:not(.nav-cta)::after {
    bottom: 17px;
}



/* =========================================================
   MOBILE TOGGLE
========================================================= */

.mobile-menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    position: relative;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(0,91,56,.16);

    border-radius: 11px;

    background:
        var(--green-soft);

    padding: 0;

    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease;
}


.mobile-menu-toggle:hover {
    background:
        #e1efe8;

    border-color:
        rgba(0,91,56,.28);
}


.mobile-menu-toggle span {
    position: absolute;

    width: 20px;
    height: 2px;

    border-radius: 10px;

    background:
        var(--green-dark);

    transition:
        transform .28s ease,
        opacity .2s ease,
        top .28s ease;
}


.mobile-menu-toggle span:nth-child(1) {
    transform:
        translateY(-6px);
}


.mobile-menu-toggle span:nth-child(2) {
    transform:
        translateY(0);
}


.mobile-menu-toggle span:nth-child(3) {
    transform:
        translateY(6px);
}


/* Hamburger -> X */

.mobile-menu-toggle.active
span:nth-child(1) {
    transform:
        rotate(45deg);
}


.mobile-menu-toggle.active
span:nth-child(2) {
    opacity: 0;
}


.mobile-menu-toggle.active
span:nth-child(3) {
    transform:
        rotate(-45deg);
}



/* =========================================================
   TABLET / MOBILE NAVIGATION
========================================================= */

@media (max-width: 930px) {

    /* Keep header horizontal */

    .nav-inner {
        min-height: 78px !important;

        padding:
            10px 0 !important;

        flex-direction: row !important;

        align-items: center !important;
        justify-content: space-between !important;

        gap: 20px;
    }


    .navbar.navbar-scrolled
    .nav-inner {
        min-height: 70px !important;
    }


    /* Brand */

    .brand {
        min-width: 0;
    }


    .brand-mark {
        width: 55px;
        height: 55px;

        border-width: 2px;
    }


    .brand-mark::after {
        width: 39px;
        height: 39px;
    }


    .brand-text strong {
        font-size: 21px;
    }


    .brand-text small {
        max-width: 245px;

        font-size: 8px;
    }


    /* Show hamburger */

    .mobile-menu-toggle {
        display: flex;
    }


    /*
       Dropdown panel
    */

    .main-nav {
        position: absolute;

        left: 0;
        right: 0;
        top: calc(100% + 1px);

        width: 100%;

        display: flex !important;
        flex-direction: column;

        align-items: stretch !important;
        justify-content: flex-start !important;

        gap: 0 !important;

        padding:
            12px;

        border:
            1px solid var(--border);

        border-radius:
            0 0 18px 18px;

        background:
            rgba(255,255,255,.99);

        box-shadow:
            0 25px 55px
            rgba(0,45,29,.15);

        opacity: 0;
        visibility: hidden;

        transform:
            translateY(-10px);

        pointer-events: none;

        transition:
            opacity .25s ease,
            visibility .25s ease,
            transform .25s ease;
    }


    .main-nav.nav-open {
        opacity: 1;
        visibility: visible;

        transform:
            translateY(0);

        pointer-events: auto;
    }


    /* Normal mobile links */

    .main-nav > a:not(.nav-cta) {
        width: 100%;

        padding:
            14px 16px !important;

        border-radius: 9px;

        color:
            var(--ink);

        font-size: 14px;

        line-height: 1.4;

        transition:
            background .2s ease,
            color .2s ease;
    }


    .main-nav >
    a:not(.nav-cta):hover {
        background:
            var(--green-soft);

        color:
            var(--green);
    }


    /*
       Remove desktop underline
       in mobile menu
    */

    .main-nav >
    a:not(.nav-cta)::after {
        display: none;
    }


    /* CTA */

    .main-nav .nav-cta {
        width: 100%;

        min-height: 50px;

        margin-top: 8px;

        padding:
            0 18px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 9px;

        font-size: 14px;
    }


    /* Prevent old responsive nav rules */

    .main-nav {
        flex-wrap: nowrap !important;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .nav-inner {
        min-height: 72px !important;

        padding:
            9px 0 !important;
    }


    .brand {
        gap: 10px;
    }


    .brand-mark {
        width: 50px;
        height: 50px;

        font-size: 18px;
    }


    .brand-mark::after {
        width: 35px;
        height: 35px;
    }


    .brand-text strong {
        font-size: 19px;

        letter-spacing: -.6px;
    }


    .brand-text small {
        max-width: 190px;

        margin-top: 3px;

        font-size: 7px;

        line-height: 1.3;
    }


    .mobile-menu-toggle {
        width: 44px;
        height: 44px;

        border-radius: 10px;
    }


    .main-nav {
        padding:
            10px;

        border-radius:
            0 0 15px 15px;
    }


    .main-nav >
    a:not(.nav-cta) {
        padding:
            13px 14px !important;

        font-size: 14px;
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .brand-text small {
        display: none;
    }


    .brand-text strong {
        font-size: 18px;
    }


    .brand-mark {
        width: 47px;
        height: 47px;
    }


    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }

}

/* =========================================================
   GEN HEALTHCARE
   PREMIUM ANIMATIONS + MICRO INTERACTIONS
========================================================= */


/* =========================================================
   01. SMOOTH PAGE BEHAVIOUR
========================================================= */

html {
    scroll-behavior: smooth;
}


/* Better anchor positioning with sticky navbar */

section[id] {
    scroll-margin-top: 100px;
}



/* =========================================================
   02. SCROLL REVEAL
========================================================= */

.reveal-item {
    opacity: 0;

    transform:
        translateY(24px);

    transition:
        opacity .7s cubic-bezier(.2,.7,.2,1),
        transform .7s cubic-bezier(.2,.7,.2,1);

    transition-delay:
        var(--reveal-delay, 0ms);

    will-change:
        opacity,
        transform;
}


.reveal-item.reveal-visible {
    opacity: 1;

    transform:
        translateY(0);
}



/* =========================================================
   03. ACTIVE NAVIGATION
========================================================= */

.main-nav >
a:not(.nav-cta).nav-current {
    color: var(--green);
}


.main-nav >
a:not(.nav-cta).nav-current::after {
    width: 100%;
}


/* Mobile current page */

@media (max-width: 930px) {

    .main-nav >
    a:not(.nav-cta).nav-current {

        color: var(--green);

        background:
            var(--green-soft);

        font-weight: 800;
    }

}



/* =========================================================
   04. PREMIUM BUTTON INTERACTIONS
========================================================= */

.btn,
.nav-cta {
    position: relative;

    overflow: hidden;

    isolation: isolate;
}


.btn::before,
.nav-cta::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    z-index: -1;

    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(255,255,255,.20),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left .65s ease;
}


.btn:hover::before,
.nav-cta:hover::before {
    left: 150%;
}


.btn {
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        border-color .25s ease;
}


.btn:hover {
    transform:
        translateY(-2px);
}


.btn:active {
    transform:
        translateY(0);
}



/* =========================================================
   05. SERVICE CARD MICRO INTERACTION
========================================================= */

.service-card {
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.service-card:hover {
    transform:
        translateY(-8px);
}


.service-card .service-icon {
    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}


.service-card:hover
.service-icon {
    transform:
        translateY(-3px)
        scale(1.04);
}



/* =========================================================
   06. CAPABILITY CARDS
========================================================= */

.capability-card {
    transition:
        transform .32s ease,
        box-shadow .32s ease,
        border-color .32s ease;
}


.capability-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(0,91,56,.20);

    box-shadow:
        0 22px 55px
        rgba(0,45,29,.08);
}



/* =========================================================
   07. PROCESS STEP
========================================================= */

.process-step {
    transition:
        transform .3s ease;
}


.process-step:hover {
    transform:
        translateY(-4px);
}



/* =========================================================
   08. PROJECT IMAGE POLISH
========================================================= */

.project-premium-image {
    overflow: hidden;
}


.project-premium-image img {
    transition:
        transform .85s
        cubic-bezier(.2,.7,.2,1);
}


.project-premium-card:hover
.project-premium-image img {
    transform:
        scale(1.065);
}



/* =========================================================
   09. LINK ARROWS
========================================================= */

.project-premium-link span,
.projects-view-all span,
.footer-service-bar > a span,
.btn span {
    display: inline-block;

    transition:
        transform .25s ease;
}


.project-premium-link:hover span,
.projects-view-all:hover span,
.footer-service-bar > a:hover span,
.btn:hover span {
    transform:
        translateX(5px);
}



/* =========================================================
   10. IMAGE LOADING POLISH
========================================================= */

.site-image-loading {
    opacity: 0;

    transition:
        opacity .45s ease;
}


.site-image-loading.site-image-loaded {
    opacity: 1;
}



/* =========================================================
   11. BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 28px;
    bottom: 28px;

    z-index: 1800;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius: 50%;

    background:
        var(--green);

    color:
        var(--white);

    box-shadow:
        0 14px 35px
        rgba(0,45,29,.22);

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(15px)
        scale(.92);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.back-to-top span {
    display: block;

    font-family:
        'Manrope',
        sans-serif;

    font-size: 20px;
    font-weight: 700;

    line-height: 1;

    transform:
        translateY(-1px);
}


.back-to-top:hover {
    background:
        var(--gold);

    color:
        var(--green-dark);

    transform:
        translateY(-3px)
        scale(1);

    box-shadow:
        0 18px 40px
        rgba(0,45,29,.28);
}


.back-to-top-visible {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}



/* =========================================================
   12. MOBILE BACK TO TOP
========================================================= */

@media (max-width: 640px) {

    .back-to-top {
        right: 18px;
        bottom: 18px;

        width: 44px;
        height: 44px;
    }

}



/* =========================================================
   13. ACCESSIBILITY
   Respect reduced-motion preference
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    .reveal-item {
        opacity: 1 !important;

        transform:
            none !important;

        transition:
            none !important;
    }


    .btn,
    .service-card,
    .capability-card,
    .process-step,
    .project-premium-card,
    .project-premium-image img,
    .back-to-top {

        transition:
            none !important;
    }

}

/* =========================================================
   ABOUT PAGE - PREMIUM
========================================================= */


/* =========================================================
   INNER HERO
========================================================= */

.inner-hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        var(--green-deep);

    color:
        var(--white);
}


.inner-hero-bg {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1.015);
}


.inner-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,34,22,.97) 0%,
            rgba(0,42,27,.88) 45%,
            rgba(0,42,27,.52) 75%,
            rgba(0,34,22,.35) 100%
        );
}


.inner-hero-inner {
    position: relative;
    z-index: 2;

    width: min(1280px, calc(100% - 96px));

    padding:
        100px 0;
}


.inner-hero-content {
    max-width: 760px;
}


.inner-hero-content h1 {
    margin-top: 15px;

    color: var(--white);

    font-size:
        clamp(43px, 4.7vw, 65px);

    font-weight: 800;

    line-height: 1.06;

    letter-spacing:
        -2.5px;
}


.inner-hero-content h1 span {
    color:
        var(--gold);
}


.inner-hero-content > p {
    max-width: 650px;

    margin-top: 22px;

    color:
        rgba(255,255,255,.75);

    font-size: 16px;
    line-height: 1.8;
}


.inner-hero-breadcrumb {
    margin-top: 28px;

    display: flex;
    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,.55);

    font-size: 11px;
}


.inner-hero-breadcrumb a:hover {
    color:
        var(--gold);
}


.inner-hero-breadcrumb strong {
    color:
        rgba(255,255,255,.85);
}


/* =========================================================
   OVERVIEW
========================================================= */

.about-page-overview {
    background:
        var(--off-white);
}


.about-page-grid {
    display: grid;

    grid-template-columns:
        minmax(0,.95fr)
        minmax(0,1fr);

    align-items: center;

    gap: 90px;
}


.about-page-visual {
    position: relative;

    min-height: 640px;
}


.about-page-main-image {
    width: 84%;
    height: 570px;

    position: absolute;

    left: 0;
    top: 0;

    overflow: hidden;

    border-radius:
        28px 28px 28px 7px;

    box-shadow:
        var(--shadow-lg);
}


.about-page-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .9s ease;
}


.about-page-main-image:hover img {
    transform:
        scale(1.04);
}


.about-page-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0,36,23,.38)
        );
}


.about-page-small-image {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 42%;
    height: 260px;

    overflow: hidden;

    border:
        7px solid #fff;

    border-radius:
        18px 18px 5px 18px;

    box-shadow:
        var(--shadow);
}


.about-page-small-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.about-page-badge {
    position: absolute;

    right: 5%;
    top: 45px;

    width: 220px;

    padding:
        20px;

    border-radius: 13px;

    background:
        var(--gold);

    color:
        var(--green-dark);

    box-shadow:
        0 20px 50px rgba(0,0,0,.15);
}


.about-page-badge small {
    display: block;

    font-size: 8px;
    font-weight: 800;

    letter-spacing:
        1.2px;
}


.about-page-badge strong {
    display: block;

    margin-top: 6px;

    font-size: 16px;
    font-weight: 800;
}


.about-page-badge span {
    display: block;

    margin-top: 4px;

    font-size: 9px;

    opacity: .74;
}


/* =========================================================
   CONTENT
========================================================= */

.about-page-content h2 {
    max-width: 650px;

    margin-top: 14px;

    color:
        var(--ink);

    font-size:
        clamp(38px,3.7vw,52px);

    font-weight: 800;

    line-height: 1.09;

    letter-spacing:
        -2px;
}


.about-page-content > p {
    max-width: 640px;

    margin-top: 18px;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.9;
}


.about-page-lead {
    color:
        var(--text) !important;

    font-size:
        17px !important;

    font-weight: 500;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.about-page-highlight-grid {
    margin-top: 32px;

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 15px;
}


.about-page-highlight-grid > div {
    padding:
        18px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background:
        var(--white);

    transition:
        var(--transition);
}


.about-page-highlight-grid > div:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(0,91,56,.18);

    box-shadow:
        var(--shadow-sm);
}


.about-page-highlight-grid span {
    color:
        var(--gold-dark);

    font-size: 9px;
    font-weight: 800;
}


.about-page-highlight-grid strong {
    display: block;

    margin-top: 9px;

    color:
        var(--green-dark);

    font-size: 13px;
}


.about-page-highlight-grid p {
    margin-top: 5px;

    color:
        var(--muted);

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   MISSION & VISION
========================================================= */

.mission-vision-section {
    background:
        var(--white);
}


.mission-vision-heading {
    max-width: 700px;

    margin-bottom: 48px;
}


.mission-vision-heading h2 {
    margin-top: 13px;

    color:
        var(--ink);

    font-size:
        clamp(36px,3.7vw,50px);

    line-height: 1.1;

    letter-spacing:
        -1.7px;
}


.mission-vision-heading h2 span {
    color:
        var(--green);
}


.mission-vision-grid {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 22px;
}


.mission-card {
    min-height: 330px;

    position: relative;

    padding:
        38px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius:
        20px;

    background:
        var(--light);
}


.mission-card-dark {
    background:
        linear-gradient(
            135deg,
            var(--green-dark),
            var(--green)
        );

    color:
        var(--white);

    border-color:
        transparent;
}


.mission-card-no {
    position: absolute;

    right: 30px;
    top: 24px;

    color:
        rgba(0,91,56,.10);

    font-size: 58px;
    font-weight: 800;
}


.mission-card-dark
.mission-card-no {
    color:
        rgba(255,255,255,.08);
}


.mission-card-label {
    color:
        var(--gold-dark);

    font-size: 10px;
    font-weight: 800;

    letter-spacing:
        1.4px;
}


.mission-card-dark
.mission-card-label {
    color:
        var(--gold);
}


.mission-card h3 {
    max-width: 480px;

    margin-top: 24px;

    color:
        var(--green-dark);

    font-size: 27px;

    line-height: 1.25;
}


.mission-card-dark h3 {
    color:
        var(--white);
}


.mission-card p {
    max-width: 520px;

    margin-top: 17px;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.85;
}


.mission-card-dark p {
    color:
        rgba(255,255,255,.68);
}


/* =========================================================
   VALUES
========================================================= */

.about-values {
    background:
        var(--light);
}


.center-about-heading {
    max-width: 760px;

    margin:
        0 auto 55px;

    text-align: center;
}


.center-about-heading h2 {
    margin-top: 13px;

    color:
        var(--ink);

    font-size:
        clamp(36px,3.7vw,50px);

    line-height: 1.1;

    letter-spacing:
        -1.7px;
}


.center-about-heading p {
    max-width: 620px;

    margin:
        18px auto 0;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


.about-values-grid {
    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 18px;
}


.about-value-card {
    min-height: 225px;

    padding:
        28px;

    border:
        1px solid var(--border);

    border-radius: 16px;

    background:
        var(--white);

    transition:
        var(--transition);
}


.about-value-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow);

    border-color:
        rgba(0,91,56,.18);
}


.about-value-card > span {
    color:
        var(--gold-dark);

    font-size: 10px;
    font-weight: 800;
}


.about-value-card h3 {
    margin-top: 25px;

    color:
        var(--green-dark);

    font-size: 18px;
}


.about-value-card p {
    margin-top: 10px;

    color:
        var(--muted);

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   EXPERTISE STRIP
========================================================= */

.about-expertise-strip {
    background:
        var(--green-deep);

    color:
        var(--white);
}


.about-expertise-strip-grid {
    min-height: 150px;

    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));
}


.about-expertise-strip-grid > div {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        30px 35px;
}


.about-expertise-strip-grid >
div:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 28%;

    width: 1px;
    height: 44%;

    background:
        rgba(255,255,255,.10);
}


.about-expertise-strip-grid > div > span {
    color:
        var(--gold);

    font-size: 12px;
    font-weight: 800;
}


.about-expertise-strip-grid strong {
    margin-top: 7px;

    font-size: 16px;
}


.about-expertise-strip-grid small {
    margin-top: 5px;

    color:
        rgba(255,255,255,.52);

    font-size: 10px;
}


/* =========================================================
   ABOUT FINAL CTA
========================================================= */

.about-final-cta {
    padding:
        80px 0;

    background:
        linear-gradient(
            120deg,
            var(--green-dark),
            var(--green)
        );

    color:
        var(--white);
}


.about-final-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 70px;
}


.about-final-cta-inner > div {
    max-width: 730px;
}


.about-final-cta h2 {
    margin-top: 12px;

    color:
        var(--white);

    font-size:
        clamp(35px,3.5vw,48px);

    line-height: 1.1;

    letter-spacing:
        -1.6px;
}


.about-final-cta p {
    margin-top: 15px;

    color:
        rgba(255,255,255,.65);

    font-size: 14px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 930px) {

    .inner-hero-inner {
        width:
            calc(100% - 48px);
    }


    .about-page-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .about-page-visual {
        max-width: 680px;

        width: 100%;

        margin-inline: auto;
    }


    .mission-vision-grid {
        grid-template-columns: 1fr;
    }


    .about-values-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


    .about-final-cta-inner {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 30px;
    }

}


@media (max-width: 640px) {

    .inner-hero {
        min-height: 440px;
    }


    .inner-hero-inner {
        width:
            calc(100% - 32px);

        padding:
            75px 0;
    }


    .inner-hero-content h1 {
        font-size:
            38px;

        letter-spacing:
            -1.4px;
    }


    .about-page-visual {
        min-height: auto;
    }


    .about-page-main-image {
        position: relative;

        width: 100%;
        height: 430px;
    }


    .about-page-small-image {
        position: relative;

        width: 52%;
        height: 180px;

        margin:
            -85px 14px 0 auto;
    }


    .about-page-badge {
        left: 15px;
        right: auto;

        top: 20px;

        width: 185px;
    }


    .about-page-content h2,
    .mission-vision-heading h2,
    .center-about-heading h2,
    .about-final-cta h2 {
        font-size:
            32px;

        letter-spacing:
            -1.2px;
    }


    .about-page-highlight-grid {
        grid-template-columns:
            1fr;
    }


    .mission-card {
        min-height: auto;

        padding:
            30px 25px;
    }


    .mission-card h3 {
        font-size:
            23px;
    }


    .about-values-grid {
        grid-template-columns:
            1fr;
    }


    .about-expertise-strip-grid {
        grid-template-columns:
            1fr;
    }


    .about-expertise-strip-grid >
    div:not(:last-child)::after {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;

        width: 100%;
        height: 1px;
    }


    .about-final-cta {
        padding:
            65px 0;
    }


    .about-final-cta-inner .btn {
        width: 100%;
    }

}

/* =========================================================
   GEN HEALTHCARE
   PREMIUM SERVICES PAGE
========================================================= */


/* =========================================================
   SERVICES INTRO
========================================================= */

.services-intro {
    background: var(--white);
}

.services-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, .75fr);

    align-items: end;

    gap: 100px;
}

.services-intro h2 {
    max-width: 700px;

    margin-top: 14px;

    color: var(--ink);

    font-size:
        clamp(39px, 3.8vw, 54px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2px;
}

.services-intro h2 span {
    color: var(--green);
}

.services-intro-copy {
    max-width: 520px;
}

.services-intro-copy p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.85;
}

.services-intro-copy p + p {
    margin-top: 16px;
}


/* =========================================================
   SERVICE DETAIL
========================================================= */

.service-detail-section {
    position: relative;

    background: var(--off-white);
}

.service-detail-alt {
    background: var(--white);
}

.service-detail-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 85px;
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-detail-image {
    position: relative;

    height: 650px;

    overflow: hidden;

    border-radius:
        26px 26px 26px 7px;

    background:
        var(--green-deep);

    box-shadow:
        0 28px 70px
        rgba(0,45,29,.13);
}

.service-detail-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .9s
        cubic-bezier(.2,.7,.2,1);
}

.service-detail-image:hover img {
    transform: scale(1.045);
}

.service-image-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,30,19,.03) 35%,
            rgba(0,34,22,.75) 100%
        );
}

.service-modality-badge {
    position: absolute;

    left: 24px;
    top: 24px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,.22);

    border-radius: 50%;

    background:
        rgba(0,47,30,.70);

    color:
        var(--gold);

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);

    font-size: 13px;
    font-weight: 800;
}

.service-image-caption {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 28px;
}

.service-image-caption small {
    display: block;

    color:
        var(--gold);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.service-image-caption strong {
    display: block;

    margin-top: 7px;

    color: var(--white);

    font-family:
        'Manrope',
        sans-serif;

    font-size: 25px;
    font-weight: 800;
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-detail-content h2 {
    max-width: 650px;

    margin-top: 13px;

    color: var(--ink);

    font-size:
        clamp(38px, 3.7vw, 52px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2px;
}

.service-detail-content h2 span {
    display: block;

    color: var(--green);
}

.service-detail-lead {
    max-width: 630px;

    margin-top: 20px;

    color: var(--text);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   FEATURE LIST
========================================================= */

.service-feature-list {
    margin-top: 34px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap:
        14px;
}

.service-feature-list > div {
    position: relative;

    min-height: 155px;

    padding:
        20px;

    border:
        1px solid var(--border);

    border-radius:
        13px;

    background:
        var(--white);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.service-detail-alt
.service-feature-list > div {
    background:
        var(--light);
}

.service-feature-list > div:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(0,91,56,.18);

    box-shadow:
        0 15px 35px
        rgba(0,45,29,.07);
}

.service-feature-list > div > span {
    color:
        var(--gold-dark);

    font-size: 9px;
    font-weight: 800;
}

.service-feature-list strong {
    display: block;

    margin-top: 9px;

    color:
        var(--green-dark);

    font-size: 13px;
    font-weight: 800;

    line-height: 1.4;
}

.service-feature-list p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   SERVICE LINK
========================================================= */

.service-detail-link {
    margin-top: 27px;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--green);

    font-size: 13px;
    font-weight: 800;
}

.service-detail-link span {
    transition:
        transform .25s ease;
}

.service-detail-link:hover span {
    transform:
        translateX(5px);
}


/* =========================================================
   LIFECYCLE
========================================================= */

.service-lifecycle {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            #00291b,
            #00402a
        );

    color: var(--white);
}

.service-lifecycle::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -300px;
    top: -310px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.04);

    box-shadow:
        inset 0 0 0 80px
            rgba(255,255,255,.01),
        inset 0 0 0 160px
            rgba(255,255,255,.01);
}

.service-lifecycle-heading {
    position: relative;

    z-index: 2;

    max-width: 760px;

    margin-bottom: 55px;
}

.service-lifecycle-heading h2 {
    margin-top: 13px;

    color: var(--white);

    font-size:
        clamp(38px,3.8vw,52px);

    line-height: 1.08;

    letter-spacing: -1.9px;
}

.service-lifecycle-heading h2 span {
    color: var(--gold);
}

.service-lifecycle-heading p {
    max-width: 650px;

    margin-top: 18px;

    color:
        rgba(255,255,255,.64);

    font-size: 14px;

    line-height: 1.8;
}


/* Lifecycle cards */

.service-lifecycle-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 18px;
}

.service-lifecycle-grid article {
    position: relative;

    min-height: 270px;

    padding:
        28px 25px;

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 16px;

    background:
        rgba(255,255,255,.035);

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.service-lifecycle-grid article:hover {
    transform:
        translateY(-6px);

    background:
        rgba(255,255,255,.055);

    border-color:
        rgba(244,180,55,.25);
}

.lifecycle-number {
    position: absolute;

    right: 19px;
    top: 14px;

    color:
        rgba(255,255,255,.055);

    font-size: 55px;
    font-weight: 800;
}

.service-lifecycle-grid article > span {
    color: var(--gold);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.service-lifecycle-grid h3 {
    margin-top: 55px;

    color: var(--white);

    font-size: 20px;
}

.service-lifecycle-grid p {
    margin-top: 11px;

    color:
        rgba(255,255,255,.58);

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   SERVICE STANDARD
========================================================= */

.service-standard {
    background: var(--white);
}

.service-standard-grid {
    display: grid;

    grid-template-columns:
        minmax(0,.8fr)
        minmax(0,1fr);

    align-items: start;

    gap: 100px;
}

.service-standard-heading {
    position: sticky;

    top: 120px;
}

.service-standard-heading h2 {
    max-width: 570px;

    margin-top: 13px;

    color: var(--ink);

    font-size:
        clamp(38px,3.6vw,50px);

    line-height: 1.1;

    letter-spacing: -1.8px;
}

.service-standard-heading p {
    max-width: 520px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.85;
}


/* Standard list */

.service-standard-list {
    border-top:
        1px solid var(--border);
}

.service-standard-list > div {
    display: grid;

    grid-template-columns:
        48px 1fr;

    gap: 22px;

    padding:
        27px 0;

    border-bottom:
        1px solid var(--border);
}

.service-standard-list > div > span {
    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 800;
}

.service-standard-list strong {
    color: var(--green-dark);

    font-size: 17px;
}

.service-standard-list p {
    max-width: 570px;

    margin-top: 7px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   FINAL CTA
========================================================= */

.services-final-cta {
    position: relative;

    overflow: hidden;

    padding:
        85px 0;

    background:
        linear-gradient(
            120deg,
            var(--green-dark),
            var(--green)
        );

    color: var(--white);
}

.services-final-cta::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -220px;
    bottom: -280px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.06);

    box-shadow:
        inset 0 0 0 70px
        rgba(255,255,255,.015);
}

.services-final-cta-inner {
    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

.services-final-cta-inner > div {
    max-width: 750px;
}

.services-final-cta h2 {
    margin-top: 12px;

    color: var(--white);

    font-size:
        clamp(37px,3.6vw,50px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}

.services-final-cta h2 span {
    color: var(--gold);
}

.services-final-cta p {
    max-width: 650px;

    margin-top: 16px;

    color:
        rgba(255,255,255,.68);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 930px) {

    .services-intro-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    /*
       MRI section:
       image first on tablet/mobile
    */

    .service-detail-alt
    .service-detail-image {
        order: 1;
    }

    .service-detail-alt
    .service-detail-content {
        order: 2;
    }

    .service-detail-image {
        max-width: 700px;

        width: 100%;
        height: 560px;

        margin-inline: auto;
    }

    .service-lifecycle-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .service-standard-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .service-standard-heading {
        position: static;
    }

    .services-final-cta-inner {
        align-items: flex-start;

        flex-direction: column;

        gap: 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .services-intro h2,
    .service-detail-content h2,
    .service-lifecycle-heading h2,
    .service-standard-heading h2,
    .services-final-cta h2 {

        font-size: 32px;

        letter-spacing: -1.2px;
    }


    .service-detail-image {
        height: 430px;

        border-radius:
            19px 19px 19px 6px;
    }


    .service-feature-list {
        grid-template-columns: 1fr;
    }


    .service-feature-list > div {
        min-height: auto;
    }


    .service-lifecycle-grid {
        grid-template-columns: 1fr;
    }


    .service-lifecycle-grid article {
        min-height: 220px;
    }


    .service-standard-list > div {
        grid-template-columns:
            38px 1fr;

        gap: 13px;
    }


    .services-final-cta {
        padding:
            65px 0;
    }


    .services-final-cta-inner .btn {
        width: 100%;
    }

}

/* =========================================================
   REQUEST SERVICE PAGE
========================================================= */

.request-service-section {
    background:
        linear-gradient(
            180deg,
            #f7f9f8,
            #ffffff
        );
}

.request-service-layout {
    display: grid;

    grid-template-columns:
        minmax(300px, .75fr)
        minmax(0, 1.35fr);

    align-items: start;

    gap: 75px;
}


/* LEFT INFO */

.request-service-info {
    position: sticky;
    top: 120px;
}

.request-service-info h2 {
    max-width: 520px;

    margin-top: 14px;

    color: var(--ink);

    font-size:
        clamp(37px, 3.5vw, 49px);

    line-height: 1.09;

    letter-spacing: -1.8px;
}

.request-service-info > p {
    max-width: 500px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.85;
}


/* SUPPORT LIST */

.request-support-list {
    margin-top: 34px;

    border-top:
        1px solid var(--border);
}

.request-support-list > div {
    display: grid;

    grid-template-columns:
        40px 1fr;

    gap: 15px;

    padding:
        21px 0;

    border-bottom:
        1px solid var(--border);
}

.request-support-list > div > span {
    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 800;
}

.request-support-list strong {
    color: var(--green-dark);

    font-size: 14px;
}

.request-support-list p {
    max-width: 390px;

    margin-top: 5px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.7;
}


/* DIRECT CONTACT */

.request-direct-contact {
    margin-top: 30px;

    padding: 22px;

    border-radius: 14px;

    background:
        var(--green-dark);

    color: var(--white);
}

.request-direct-contact small {
    color: var(--gold);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.request-direct-contact strong {
    display: block;

    margin-top: 6px;

    font-size: 15px;
}

.request-direct-contact a {
    display: inline-block;

    margin-top: 8px;

    color: var(--gold);

    font-size: 18px;
    font-weight: 800;
}


/* =========================================================
   FORM CARD
========================================================= */

.request-form-card {
    padding:
        38px;

    border:
        1px solid var(--border);

    border-radius: 22px;

    background: var(--white);

    box-shadow:
        0 25px 70px rgba(0,45,29,.08);
}

.request-form-header {
    margin-bottom: 30px;
}

.request-form-header > span {
    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.request-form-header h3 {
    margin-top: 7px;

    color: var(--green-dark);

    font-size: 25px;
}

.request-form-header p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 12px;
}


/* FORM */

.form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap:
        20px;
}

.form-group-full {
    grid-column:
        1 / -1;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 700;
}

.request-service-form
input,
.request-service-form
select,
.request-service-form
textarea {
    min-height: 50px;

    padding:
        13px 14px;

    border:
        1px solid #dce5e1;

    border-radius: 9px;

    background:
        #fbfcfb;

    color: var(--text);

    font-size: 14px;

    outline: none;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.request-service-form
textarea {
    min-height: 155px;

    resize: vertical;
}

.request-service-form
input:focus,
.request-service-form
select:focus,
.request-service-form
textarea:focus {
    background: var(--white);

    border-color:
        rgba(0,91,56,.48);

    box-shadow:
        0 0 0 4px
        rgba(0,91,56,.06);
}


/* ALERT */

.form-alert {
    margin-bottom: 25px;

    padding:
        14px 16px;

    border-radius: 10px;

    font-size: 13px;

    line-height: 1.6;
}

.form-alert-success {
    border:
        1px solid rgba(0,128,78,.18);

    background:
        #edf8f2;

    color:
        #075a38;
}

.form-alert-error {
    border:
        1px solid rgba(180,40,40,.16);

    background:
        #fff2f2;

    color:
        #8a2828;
}


/* FORM FOOTER */

.request-form-footer {
    margin-top: 28px;

    display: flex;
    align-items: center;

    gap: 22px;
}

.request-form-footer p {
    max-width: 360px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.6;
}


/* TABLET */

@media (max-width: 930px) {

    .request-service-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .request-service-info {
        position: static;

        max-width: 700px;
    }

}


/* MOBILE */

@media (max-width: 640px) {

    .request-service-info h2 {
        font-size: 32px;

        letter-spacing: -1.2px;
    }

    .request-form-card {
        padding:
            25px 20px;

        border-radius: 17px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: auto;
    }

    .request-form-footer {
        align-items: stretch;

        flex-direction: column;
    }

    .request-form-footer .btn {
        width: 100%;
    }

}

/* =========================================================
   GEN HEALTHCARE
   PROJECTS PAGE
========================================================= */


/* =========================================================
   INTRO
========================================================= */

.projects-page-intro {
    background: var(--white);
}

.projects-page-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0,1.1fr)
        minmax(300px,.65fr);

    align-items: end;

    gap: 90px;
}

.projects-page-intro h2 {
    max-width: 720px;

    margin-top: 14px;

    color: var(--ink);

    font-size:
        clamp(39px,3.8vw,54px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2px;
}

.projects-page-intro h2 span {
    color: var(--green);
}

.projects-page-intro-copy {
    max-width: 510px;
}

.projects-page-intro-copy p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.85;
}

.projects-page-intro-copy p + p {
    margin-top: 14px;
}


/* =========================================================
   FILTER
========================================================= */

.projects-filter-section {
    padding: 0 0 5px;

    background: var(--white);
}

.projects-filter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    padding: 13px;

    border:
        1px solid var(--border);

    border-radius: 14px;

    background: var(--light);
}

.projects-filter a {
    min-height: 42px;

    padding: 0 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color: var(--muted);

    font-size: 12px;
    font-weight: 800;

    transition:
        color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.projects-filter a:hover {
    color: var(--green);

    background: var(--white);
}

.projects-filter a.active {
    color: var(--white);

    background: var(--green);

    box-shadow:
        0 8px 22px rgba(0,91,56,.15);
}


/* =========================================================
   PROJECT LIST
========================================================= */

.projects-page-list {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f9f8 100%
        );
}

.projects-premium-grid {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 30px;
}


/* =========================================================
   PROJECT CARD
========================================================= */

.projects-page-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background: var(--white);

    box-shadow:
        0 14px 40px rgba(0,45,29,.055);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.projects-page-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(0,91,56,.18);

    box-shadow:
        0 26px 65px rgba(0,45,29,.11);
}


/* IMAGE */

.projects-page-card-image {
    position: relative;

    height: 390px;

    display: block;

    overflow: hidden;

    background: var(--green-deep);
}

.projects-page-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .85s
        cubic-bezier(.2,.7,.2,1);
}

.projects-page-card:hover
.projects-page-card-image img {
    transform: scale(1.055);
}

.projects-page-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,35,23,.02) 45%,
            rgba(0,35,23,.55) 100%
        );
}


/* BADGES */

.project-featured-badge {
    position: absolute;

    left: 20px;
    top: 20px;

    padding: 7px 11px;

    border-radius: 100px;

    background: var(--gold);

    color: var(--green-dark);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .5px;

    text-transform: uppercase;
}

.project-equipment-badge {
    position: absolute;

    right: 20px;
    bottom: 20px;

    padding: 8px 13px;

    border:
        1px solid rgba(255,255,255,.20);

    border-radius: 100px;

    background:
        rgba(0,45,29,.70);

    color: var(--white);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   CARD BODY
========================================================= */

.projects-page-card-body {
    padding: 27px;
}

.projects-page-meta {
    min-height: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.projects-page-meta span {
    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.projects-page-meta small {
    color: var(--muted);

    font-size: 10px;
}

.projects-page-card h3 {
    margin-top: 10px;

    color: var(--green-dark);

    font-size: 23px;
    font-weight: 800;

    line-height: 1.3;

    letter-spacing: -.5px;
}

.projects-page-card h3 a {
    color: inherit;

    transition: color .25s ease;
}

.projects-page-card h3 a:hover {
    color: var(--green);
}

.projects-page-card-body > p {
    margin-top: 12px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   SPECS
========================================================= */

.project-card-specs {
    margin-top: 23px;

    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}

.project-card-specs > div {
    min-width: 0;

    padding: 15px 12px 15px 0;
}

.project-card-specs >
div:not(:last-child) {
    margin-right: 12px;

    border-right:
        1px solid var(--border);
}

.project-card-specs span {
    display: block;

    color: var(--muted);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .8px;

    text-transform: uppercase;
}

.project-card-specs strong {
    display: block;

    margin-top: 5px;

    overflow: hidden;

    color: var(--green-dark);

    font-size: 11px;
    font-weight: 700;

    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.projects-page-card-footer {
    margin-top: 21px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.projects-page-card-footer small {
    display: block;

    color: var(--muted);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .8px;
}

.projects-page-card-footer strong {
    display: block;

    margin-top: 4px;

    color: var(--green-dark);

    font-size: 11px;
}

.project-card-arrow {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--green-soft);

    color: var(--green);

    font-size: 18px;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.projects-page-card:hover
.project-card-arrow {
    transform: translateX(3px);

    background: var(--green);

    color: var(--white);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.projects-empty-state {
    max-width: 650px;

    margin: 0 auto;

    padding: 70px 35px;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background: var(--white);

    text-align: center;

    box-shadow:
        0 15px 45px rgba(0,45,29,.05);
}

.projects-empty-icon {
    width: 68px;
    height: 68px;

    margin:
        0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--green-soft);

    color: var(--green);

    font-size: 16px;
    font-weight: 800;
}

.projects-empty-state > span {
    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.projects-empty-state h3 {
    margin-top: 10px;

    color: var(--green-dark);

    font-size: 28px;
}

.projects-empty-state p {
    max-width: 490px;

    margin:
        12px auto 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.projects-empty-state .btn {
    margin-top: 25px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.projects-page-cta {
    position: relative;

    overflow: hidden;

    padding: 85px 0;

    background:
        linear-gradient(
            120deg,
            var(--green-dark),
            var(--green)
        );

    color: var(--white);
}

.projects-page-cta::after {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: -260px;
    bottom: -310px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.06);

    box-shadow:
        inset 0 0 0 80px
        rgba(255,255,255,.012);
}

.projects-page-cta-inner {
    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

.projects-page-cta-inner > div {
    max-width: 750px;
}

.projects-page-cta h2 {
    margin-top: 12px;

    color: var(--white);

    font-size:
        clamp(37px,3.6vw,50px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}

.projects-page-cta h2 span {
    color: var(--gold);
}

.projects-page-cta p {
    max-width: 620px;

    margin-top: 16px;

    color:
        rgba(255,255,255,.67);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 930px) {

    .projects-page-intro-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .projects-premium-grid {
        grid-template-columns: 1fr;
    }

    .projects-page-card {
        max-width: 720px;

        width: 100%;

        margin-inline: auto;
    }

    .projects-page-cta-inner {
        align-items: flex-start;

        flex-direction: column;

        gap: 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .projects-page-intro h2,
    .projects-page-cta h2 {
        font-size: 32px;

        letter-spacing: -1.2px;
    }

    .projects-filter {
        padding: 9px;

        gap: 6px;
    }

    .projects-filter a {
        min-height: 39px;

        padding:
            0 13px;

        font-size: 10px;
    }

    .projects-page-card-image {
        height: 300px;
    }

    .projects-page-card-body {
        padding: 22px 19px;
    }

    .projects-page-card h3 {
        font-size: 20px;
    }

    .project-card-specs {
        grid-template-columns: 1fr;
    }

    .project-card-specs > div {
        padding: 11px 0;
    }

    .project-card-specs >
    div:not(:last-child) {
        margin-right: 0;

        border-right: 0;

        border-bottom:
            1px solid var(--border);
    }

    .project-card-specs strong {
        white-space: normal;
    }

    .projects-page-cta {
        padding: 65px 0;
    }

    .projects-page-cta-inner .btn {
        width: 100%;
    }

}

/* =========================================================
   GEN HEALTHCARE
   PROJECT DETAILS PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.project-detail-hero {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: var(--green-deep);

    color: var(--white);
}


.project-detail-hero-bg {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1.02);
}


.project-detail-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,31,20,.97) 0%,
            rgba(0,38,25,.88) 42%,
            rgba(0,38,25,.55) 72%,
            rgba(0,31,20,.34) 100%
        );
}


.project-detail-hero-inner {
    position: relative;
    z-index: 2;

    width: min(1280px, calc(100% - 96px));

    padding:
        115px 0 75px;
}


.project-detail-hero-content {
    max-width: 850px;
}


.project-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 28px;

    color:
        rgba(255,255,255,.52);

    font-size: 10px;
}


.project-detail-breadcrumb a {
    color:
        rgba(255,255,255,.68);
}


.project-detail-breadcrumb a:hover {
    color: var(--gold);
}


.project-detail-breadcrumb strong {
    color:
        rgba(255,255,255,.88);
}


.project-detail-category {
    display: inline-flex;
    align-items: center;

    min-height: 30px;

    padding:
        0 12px;

    border:
        1px solid rgba(244,180,55,.30);

    border-radius: 100px;

    background:
        rgba(244,180,55,.10);

    color: var(--gold);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.project-detail-hero h1 {
    max-width: 850px;

    margin-top: 18px;

    color: var(--white);

    font-size:
        clamp(43px,5vw,68px);

    font-weight: 800;

    line-height: 1.04;

    letter-spacing: -2.7px;
}


.project-detail-hero-content > p {
    max-width: 680px;

    margin-top: 20px;

    color:
        rgba(255,255,255,.72);

    font-size: 15px;

    line-height: 1.8;
}


/* HERO META */

.project-detail-hero-meta {
    margin-top: 35px;

    display: flex;
    align-items: stretch;
    flex-wrap: wrap;

    gap: 0;
}


.project-detail-hero-meta > div {
    min-width: 170px;

    padding:
        4px 28px 4px 0;
}


.project-detail-hero-meta >
div + div {
    padding-left: 28px;

    border-left:
        1px solid rgba(255,255,255,.15);
}


.project-detail-hero-meta small {
    display: block;

    color:
        rgba(255,255,255,.46);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}


.project-detail-hero-meta strong {
    display: block;

    margin-top: 6px;

    color: var(--white);

    font-size: 12px;
}


/* =========================================================
   OVERVIEW
========================================================= */

.project-overview-section {
    background: var(--white);
}


.project-overview-grid {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        340px;

    align-items: start;

    gap: 80px;
}


.project-overview-content h2 {
    margin-top: 13px;

    color: var(--ink);

    font-size:
        clamp(37px,3.5vw,49px);

    line-height: 1.08;

    letter-spacing: -1.8px;
}


.project-overview-content h2 span {
    color: var(--green);
}


.project-description {
    max-width: 780px;

    margin-top: 24px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.95;
}


/* LARGE IMAGE */

.project-overview-image {
    position: relative;

    height: 520px;

    margin-top: 45px;

    overflow: hidden;

    border-radius:
        22px 22px 22px 6px;

    background: var(--green-deep);

    box-shadow:
        0 25px 65px rgba(0,45,29,.10);
}


.project-overview-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .9s ease;
}


.project-overview-image:hover img {
    transform: scale(1.035);
}


.project-overview-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0,35,23,.70)
        );
}


.project-overview-image-caption {
    position: absolute;

    z-index: 2;

    left: 28px;
    bottom: 27px;
}


.project-overview-image-caption small {
    display: block;

    color: var(--gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.2px;
}


.project-overview-image-caption strong {
    display: block;

    margin-top: 6px;

    color: var(--white);

    font-size: 20px;
}


/* =========================================================
   SIDEBAR
========================================================= */

.project-details-sidebar {
    position: sticky;

    top: 110px;
}


.project-info-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 17px;

    background: var(--light);
}


.project-info-card-heading {
    padding: 24px;

    background:
        var(--green-dark);

    color: var(--white);
}


.project-info-card-heading span {
    color: var(--gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.2px;
}


.project-info-card-heading h3 {
    margin-top: 6px;

    color: var(--white);

    font-size: 20px;
}


.project-info-list {
    padding:
        5px 24px;
}


.project-info-list > div {
    padding:
        17px 0;

    border-bottom:
        1px solid var(--border);
}


.project-info-list >
div:last-child {
    border-bottom: 0;
}


.project-info-list span {
    display: block;

    color: var(--muted);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .7px;

    text-transform: uppercase;
}


.project-info-list strong {
    display: block;

    margin-top: 5px;

    color: var(--green-dark);

    font-size: 12px;

    line-height: 1.5;
}


/* SIDEBAR CTA */

.project-sidebar-cta {
    margin-top: 20px;

    padding: 27px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            var(--green-dark),
            var(--green)
        );

    color: var(--white);
}


.project-sidebar-cta small {
    color: var(--gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.2px;
}


.project-sidebar-cta h3 {
    margin-top: 11px;

    color: var(--white);

    font-size: 21px;

    line-height: 1.3;
}


.project-sidebar-cta p {
    margin-top: 10px;

    color:
        rgba(255,255,255,.65);

    font-size: 11px;

    line-height: 1.7;
}


.project-sidebar-cta .btn {
    width: 100%;

    margin-top: 20px;
}


/* =========================================================
   ENGINEERING APPROACH
========================================================= */

.project-engineering-approach {
    margin-top: 70px;
}


.project-engineering-approach h2 {
    max-width: 620px;
}


.project-approach-grid {
    margin-top: 30px;

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 15px;
}


.project-approach-grid article {
    min-height: 205px;

    padding: 25px;

    border:
        1px solid var(--border);

    border-radius: 14px;

    background: var(--light);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.project-approach-grid article:hover {
    transform: translateY(-4px);

    border-color:
        rgba(0,91,56,.18);

    box-shadow:
        0 16px 40px rgba(0,45,29,.06);
}


.project-approach-grid article > span {
    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 800;
}


.project-approach-grid h3 {
    margin-top: 25px;

    color: var(--green-dark);

    font-size: 17px;
}


.project-approach-grid p {
    margin-top: 9px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   RELATED PROJECTS
========================================================= */

.related-projects-section {
    background: var(--light);
}


.related-projects-heading {
    margin-bottom: 40px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
}


.related-projects-heading h2 {
    margin-top: 10px;

    color: var(--ink);

    font-size:
        clamp(34px,3.2vw,44px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.related-projects-grid {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 20px;
}


.related-project-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 16px;

    background: var(--white);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.related-project-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(0,45,29,.08);
}


.related-project-image {
    position: relative;

    height: 240px;

    display: block;

    overflow: hidden;
}


.related-project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;
}


.related-project-card:hover
.related-project-image img {
    transform: scale(1.05);
}


.related-project-image > div {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0,35,23,.55)
        );
}


.related-project-image > span {
    position: absolute;

    left: 17px;
    bottom: 16px;

    padding:
        6px 10px;

    border-radius: 100px;

    background:
        rgba(0,50,32,.72);

    color: var(--white);

    font-size: 8px;
    font-weight: 800;
}


.related-project-body {
    padding: 20px;
}


.related-project-body small {
    color: var(--gold-dark);

    font-size: 8px;
    font-weight: 800;

    text-transform: uppercase;
}


.related-project-body h3 {
    margin-top: 7px;

    color: var(--green-dark);

    font-size: 17px;

    line-height: 1.35;
}


.related-project-body h3 a {
    color: inherit;
}


.related-project-body h3 a:hover {
    color: var(--green);
}


.related-project-body p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.project-detail-final-cta {
    padding:
        85px 0;

    background:
        linear-gradient(
            120deg,
            var(--green-dark),
            var(--green)
        );

    color: var(--white);
}


.project-detail-final-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}


.project-detail-final-inner > div {
    max-width: 730px;
}


.project-detail-final-cta h2 {
    margin-top: 12px;

    color: var(--white);

    font-size:
        clamp(36px,3.5vw,49px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}


.project-detail-final-cta p {
    max-width: 620px;

    margin-top: 15px;

    color:
        rgba(255,255,255,.65);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   PROJECT 404
========================================================= */

.project-not-found {
    min-height: 650px;

    display: flex;
    align-items: center;

    background: var(--light);
}


.project-not-found-inner {
    padding:
        100px 0;

    text-align: center;
}


.project-404-number {
    margin-top: 20px;

    color:
        rgba(0,91,56,.08);

    font-size:
        clamp(100px,15vw,180px);

    font-weight: 800;

    line-height: .9;
}


.project-not-found h1 {
    margin-top: -20px;

    color: var(--green-dark);

    font-size:
        clamp(35px,4vw,50px);
}


.project-not-found p {
    max-width: 540px;

    margin:
        15px auto 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


.project-not-found .btn {
    margin-top: 25px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 930px) {

    .project-detail-hero-inner {
        width:
            calc(100% - 48px);
    }


    .project-overview-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .project-details-sidebar {
        position: static;

        display: grid;

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 20px;
    }


    .project-sidebar-cta {
        margin-top: 0;
    }


    .related-projects-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


    .project-detail-final-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .project-detail-hero {
        min-height: 560px;
    }


    .project-detail-hero-inner {
        width:
            calc(100% - 32px);

        padding:
            90px 0 55px;
    }


    .project-detail-hero h1 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .project-detail-hero-meta {
        display: grid;

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 18px;
    }


    .project-detail-hero-meta > div,
    .project-detail-hero-meta > div + div {
        min-width: 0;

        padding: 0;

        border-left: 0;
    }


    .project-overview-content h2,
    .project-engineering-approach h2,
    .project-detail-final-cta h2 {
        font-size: 32px;

        letter-spacing: -1.2px;
    }


    .project-overview-image {
        height: 350px;
    }


    .project-approach-grid {
        grid-template-columns: 1fr;
    }


    .project-approach-grid article {
        min-height: auto;
    }


    .project-details-sidebar {
        grid-template-columns: 1fr;
    }


    .related-projects-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }


    .related-projects-grid {
        grid-template-columns: 1fr;
    }


    .related-project-image {
        height: 280px;
    }


    .project-detail-final-cta {
        padding:
            65px 0;
    }


    .project-detail-final-inner .btn {
        width: 100%;
    }

}

/* =========================================================
   GEN HEALTHCARE
   PREMIUM CONTACT PAGE
========================================================= */


/* =========================================================
   CONTACT CARDS
========================================================= */

.contact-cards-section {
    position: relative;
    z-index: 5;

    margin-top: -55px;
}

.contact-cards-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 18px;
}

.contact-info-card {
    min-height: 220px;

    position: relative;

    overflow: hidden;

    padding: 27px;

    border:
        1px solid var(--border);

    border-radius: 17px;

    background: var(--white);

    box-shadow:
        0 18px 50px rgba(0,45,29,.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 28px 65px rgba(0,45,29,.12);
}

.contact-info-featured {
    background:
        linear-gradient(
            145deg,
            var(--green-dark),
            var(--green)
        );

    border-color: transparent;

    color: var(--white);
}

.contact-info-no {
    position: absolute;

    right: 20px;
    top: 17px;

    color:
        rgba(0,91,56,.08);

    font-size: 43px;
    font-weight: 800;
}

.contact-info-featured
.contact-info-no {
    color:
        rgba(255,255,255,.07);
}

.contact-info-icon {
    width: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        var(--green-soft);

    color: var(--green);

    font-size: 10px;
    font-weight: 800;
}

.contact-info-featured
.contact-info-icon {
    background:
        rgba(244,180,55,.14);

    color: var(--gold);
}

.contact-info-label {
    display: block;

    margin-top: 23px;

    color: var(--gold-dark);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.contact-info-featured
.contact-info-label {
    color: var(--gold);
}

.contact-info-card h3 {
    margin-top: 5px;

    color: var(--green-dark);

    font-size: 17px;
}

.contact-info-featured h3 {
    color: var(--white);
}

.contact-info-card a,
.contact-info-card p {
    display: block;

    margin-top: 9px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.65;
}

.contact-info-featured a,
.contact-info-featured p {
    color:
        rgba(255,255,255,.68);
}

.contact-info-card a:hover {
    color: var(--green);
}

.contact-info-featured a:hover {
    color: var(--gold);
}


/* =========================================================
   MAIN CONTACT
========================================================= */

.contact-main-section {
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f7f9f8
        );
}

.contact-main-grid {
    display: grid;

    grid-template-columns:
        minmax(300px,.78fr)
        minmax(0,1.25fr);

    align-items: start;

    gap: 80px;
}

.contact-main-content h2 {
    max-width: 560px;

    margin-top: 13px;

    color: var(--ink);

    font-size:
        clamp(38px,3.6vw,50px);

    line-height: 1.08;

    letter-spacing: -1.8px;
}

.contact-main-content h2 span {
    color: var(--green);
}

.contact-main-lead {
    max-width: 530px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.85;
}


/* SERVICE TYPE LIST */

.contact-service-types {
    margin-top: 32px;

    border-top:
        1px solid var(--border);
}

.contact-service-types > div {
    display: grid;

    grid-template-columns:
        42px 1fr;

    gap: 15px;

    padding:
        20px 0;

    border-bottom:
        1px solid var(--border);
}

.contact-service-types > div > span {
    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 800;
}

.contact-service-types strong {
    color: var(--green-dark);

    font-size: 14px;
}

.contact-service-types p {
    max-width: 410px;

    margin-top: 5px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.7;
}


/* DIRECT ACTIONS */

.contact-direct-actions {
    margin-top: 30px;

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 11px;
}

.contact-direct-item {
    min-width: 0;

    padding: 16px;

    border:
        1px solid var(--border);

    border-radius: 11px;

    background: var(--white);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.contact-direct-item:hover {
    transform: translateY(-3px);

    box-shadow:
        var(--shadow-sm);
}

.contact-direct-item small {
    display: block;

    color: var(--gold-dark);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.contact-direct-item strong {
    display: block;

    margin-top: 5px;

    overflow-wrap: anywhere;

    color: var(--green-dark);

    font-size: 12px;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-card {
    padding: 38px;

    border:
        1px solid var(--border);

    border-radius: 21px;

    background: var(--white);

    box-shadow:
        0 25px 70px rgba(0,45,29,.08);
}

.contact-form-heading {
    margin-bottom: 30px;
}

.contact-form-heading > span {
    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.contact-form-heading h3 {
    margin-top: 7px;

    color: var(--green-dark);

    font-size: 25px;
}

.contact-form-heading p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 12px;
}

.contact-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 20px;
}

.contact-form
.form-group-full {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;

    margin-bottom: 7px;

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    min-height: 50px;

    padding: 13px 14px;

    border:
        1px solid #dce5e1;

    border-radius: 9px;

    background: #fbfcfb;

    color: var(--text);

    font-size: 14px;

    outline: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.contact-form textarea {
    min-height: 170px;

    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: var(--white);

    border-color:
        rgba(0,91,56,.48);

    box-shadow:
        0 0 0 4px rgba(0,91,56,.06);
}

.contact-form-footer {
    margin-top: 27px;

    display: flex;
    align-items: center;

    gap: 22px;
}

.contact-form-footer p {
    max-width: 300px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   QUICK CONTACT
========================================================= */

.contact-quick-section {
    position: relative;

    overflow: hidden;

    padding: 75px 0;

    background:
        linear-gradient(
            120deg,
            var(--green-dark),
            var(--green)
        );

    color: var(--white);
}

.contact-quick-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

.contact-quick-content {
    max-width: 730px;
}

.contact-quick-content h2 {
    margin-top: 12px;

    color: var(--white);

    font-size:
        clamp(36px,3.5vw,48px);

    line-height: 1.08;

    letter-spacing: -1.6px;
}

.contact-quick-content h2 span {
    color: var(--gold);
}

.contact-quick-content p {
    max-width: 610px;

    margin-top: 15px;

    color:
        rgba(255,255,255,.66);

    font-size: 14px;

    line-height: 1.75;
}

.contact-quick-actions {
    min-width: 230px;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.contact-whatsapp-btn {
    border-color:
        rgba(255,255,255,.35);

    background:
        rgba(255,255,255,.08);

    color: var(--white);
}

.contact-whatsapp-btn:hover {
    border-color:
        rgba(255,255,255,.75);

    background:
        rgba(255,255,255,.13);
}


/* =========================================================
   LOCATION
========================================================= */

.contact-location-section {
    background: var(--white);
}

.contact-location-heading {
    margin-bottom: 40px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;
}

.contact-location-heading h2 {
    margin-top: 10px;

    color: var(--ink);

    font-size:
        clamp(35px,3.4vw,47px);

    line-height: 1.1;
}

.contact-location-heading > p {
    max-width: 430px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}

.contact-location-panel {
    display: grid;

    grid-template-columns:
        minmax(0,1.5fr)
        minmax(300px,.6fr);

    min-height: 430px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background: var(--light);
}

.contact-location-map {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #e8f1ed,
            #dbe9e3
        );
}

.contact-location-map::before,
.contact-location-map::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(0,91,56,.10);
}

.contact-location-map::before {
    width: 420px;
    height: 420px;

    left: -100px;
    top: -130px;
}

.contact-location-map::after {
    width: 300px;
    height: 300px;

    right: -60px;
    bottom: -100px;
}

.contact-map-placeholder {
    position: relative;
    z-index: 2;

    height: 100%;
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    padding: 40px;
}

.contact-map-marker {
    width: 76px;
    height: 76px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50% 50% 50% 10px;

    background: var(--green);

    color: var(--gold);

    font-size: 18px;
    font-weight: 800;

    transform: rotate(-45deg);

    box-shadow:
        0 18px 45px rgba(0,91,56,.20);
}

.contact-map-marker::first-letter {
    transform: rotate(45deg);
}

.contact-map-placeholder small {
    color: var(--gold-dark);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.1px;
}

.contact-map-placeholder strong {
    display: block;

    margin-top: 5px;

    color: var(--green-dark);

    font-size: 20px;
}

.contact-map-placeholder p {
    max-width: 340px;

    margin-top: 7px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


/* LOCATION DETAILS */

.contact-location-details {
    padding: 38px;

    background: var(--green-dark);

    color: var(--white);
}

.contact-location-label {
    color: var(--gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.contact-location-details h3 {
    margin-top: 8px;

    color: var(--white);

    font-size: 25px;
}

.contact-location-details > p {
    margin-top: 8px;

    color:
        rgba(255,255,255,.62);

    font-size: 12px;

    line-height: 1.7;
}

.contact-location-list {
    margin-top: 30px;
}

.contact-location-list > div {
    padding: 16px 0;

    border-top:
        1px solid rgba(255,255,255,.10);
}

.contact-location-list small {
    display: block;

    color: var(--gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.contact-location-list a {
    display: block;

    margin-top: 5px;

    color:
        rgba(255,255,255,.75);

    font-size: 12px;

    line-height: 1.6;
}

.contact-location-list a:hover {
    color: var(--gold);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 930px) {

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-main-content {
        max-width: 700px;
    }

    .contact-quick-grid {
        align-items: flex-start;

        flex-direction: column;

        gap: 30px;
    }

    .contact-quick-actions {
        min-width: 0;

        flex-direction: row;
    }

    .contact-location-panel {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .contact-cards-section {
        margin-top: -25px;
    }

    .contact-info-card {
        min-height: 190px;
    }

    .contact-main-content h2,
    .contact-quick-content h2,
    .contact-location-heading h2 {
        font-size: 32px;

        letter-spacing: -1.2px;
    }

    .contact-direct-actions {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 25px 20px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form
    .form-group-full {
        grid-column: auto;
    }

    .contact-form-footer {
        align-items: stretch;

        flex-direction: column;
    }

    .contact-form-footer .btn {
        width: 100%;
    }

    .contact-quick-actions {
        width: 100%;

        flex-direction: column;
    }

    .contact-quick-actions .btn {
        width: 100%;
    }

    .contact-location-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .contact-map-placeholder {
        min-height: 350px;

        flex-direction: column;

        text-align: center;
    }

    .contact-location-map {
        min-height: 350px;
    }

    .contact-location-details {
        padding: 30px 24px;
    }

}

/* =========================================================
   GEN HEALTHCARE
   FINAL REQUEST SERVICE PAGE
========================================================= */

.request-service-section {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f9f8 100%
        );
}

.request-service-grid {
    display: grid;

    grid-template-columns:
        minmax(300px,.72fr)
        minmax(0,1.28fr);

    align-items: start;

    gap: 75px;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.request-service-content {
    position: sticky;
    top: 115px;
}

.request-service-content h2 {
    max-width: 540px;

    margin-top: 13px;

    color: var(--ink);

    font-size:
        clamp(38px,3.6vw,50px);

    line-height: 1.08;

    letter-spacing: -1.8px;
}

.request-service-content h2 span {
    color: var(--green);
}

.request-service-lead {
    max-width: 510px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   SUPPORT TYPES
========================================================= */

.request-support-types {
    margin-top: 32px;

    border-top:
        1px solid var(--border);
}

.request-support-types > div {
    display: grid;

    grid-template-columns:
        40px 1fr;

    gap: 15px;

    padding:
        19px 0;

    border-bottom:
        1px solid var(--border);
}

.request-support-types > div > span {
    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 800;
}

.request-support-types strong {
    color: var(--green-dark);

    font-size: 14px;
}

.request-support-types p {
    max-width: 390px;

    margin-top: 5px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   PROCESS CARD
========================================================= */

.request-process-card {
    margin-top: 28px;

    padding: 24px;

    border-radius: 15px;

    background:
        var(--green-dark);

    color: var(--white);
}

.request-process-label {
    color: var(--gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.request-process-list {
    margin-top: 18px;
}

.request-process-list > div {
    display: grid;

    grid-template-columns:
        30px 1fr;

    align-items: center;

    gap: 12px;

    padding:
        11px 0;

    border-top:
        1px solid rgba(255,255,255,.09);
}

.request-process-list strong {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(244,180,55,.13);

    color: var(--gold);

    font-size: 9px;
}

.request-process-list p {
    color:
        rgba(255,255,255,.66);

    font-size: 11px;

    line-height: 1.55;
}


/* =========================================================
   FORM CARD
========================================================= */

.request-service-form-card {
    padding: 38px;

    border:
        1px solid var(--border);

    border-radius: 22px;

    background: var(--white);

    box-shadow:
        0 25px 70px
        rgba(0,45,29,.08);
}

.request-form-heading {
    margin-bottom: 30px;
}

.request-form-heading > span {
    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.request-form-heading h3 {
    margin-top: 7px;

    color: var(--green-dark);

    font-size: 25px;
}

.request-form-heading p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   FORM SECTION
========================================================= */

.request-form-section {
    padding:
        28px 0;

    border-top:
        1px solid var(--border);
}

.request-form-section-title {
    display: grid;

    grid-template-columns:
        38px 1fr;

    gap: 12px;

    margin-bottom: 20px;
}

.request-form-section-title > span {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--green-soft);

    color: var(--green);

    font-size: 9px;
    font-weight: 800;
}

.request-form-section-title strong {
    display: block;

    color: var(--green-dark);

    font-size: 14px;
}

.request-form-section-title small {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   FORM FIELDS
========================================================= */

.request-form-fields {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 19px;
}

.request-form-fields
.form-group-full {
    grid-column: 1 / -1;
}

.request-engineering-form label {
    display: block;

    margin-bottom: 7px;

    color: var(--green-dark);

    font-size: 11px;
    font-weight: 700;
}

.request-engineering-form input,
.request-engineering-form select,
.request-engineering-form textarea {
    width: 100%;

    min-height: 50px;

    padding:
        13px 14px;

    border:
        1px solid #dce5e1;

    border-radius: 9px;

    background: #fbfcfb;

    color: var(--text);

    font-size: 14px;

    outline: none;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.request-engineering-form textarea {
    min-height: 170px;

    resize: vertical;
}

.request-engineering-form input:focus,
.request-engineering-form select:focus,
.request-engineering-form textarea:focus {
    background: var(--white);

    border-color:
        rgba(0,91,56,.48);

    box-shadow:
        0 0 0 4px
        rgba(0,91,56,.06);
}


/* =========================================================
   SUCCESS BOX
========================================================= */

.request-success-box {
    margin-bottom: 28px;

    display: grid;

    grid-template-columns:
        45px 1fr;

    gap: 15px;

    padding: 20px;

    border:
        1px solid rgba(0,128,78,.18);

    border-radius: 13px;

    background: #edf8f2;
}

.request-success-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--green);

    color: var(--white);

    font-size: 17px;
    font-weight: 800;
}

.request-success-box strong {
    color: var(--green-dark);

    font-size: 14px;
}

.request-success-box p {
    margin-top: 4px;

    color: #477063;

    font-size: 11px;

    line-height: 1.6;
}


/* REQUEST NUMBER */

.request-number-box {
    margin-top: 13px;

    display: inline-flex;
    flex-direction: column;

    padding:
        10px 13px;

    border-radius: 8px;

    background: var(--white);

    border:
        1px solid rgba(0,91,56,.12);
}

.request-number-box small {
    color: var(--muted);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .8px;
}

.request-number-box span {
    margin-top: 3px;

    color: var(--green);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: .4px;
}


/* =========================================================
   SUBMIT
========================================================= */

.request-form-submit {
    padding-top: 5px;

    display: flex;
    align-items: center;

    gap: 22px;
}

.request-form-submit p {
    max-width: 280px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   DIRECT CONTACT
========================================================= */

.request-direct-section {
    position: relative;

    overflow: hidden;

    padding:
        78px 0;

    background:
        linear-gradient(
            120deg,
            var(--green-dark),
            var(--green)
        );

    color: var(--white);
}

.request-direct-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

.request-direct-inner > div:first-child {
    max-width: 720px;
}

.request-direct-inner h2 {
    margin-top: 12px;

    color: var(--white);

    font-size:
        clamp(36px,3.5vw,48px);

    line-height: 1.08;

    letter-spacing: -1.6px;
}

.request-direct-inner h2 span {
    color: var(--gold);
}

.request-direct-inner p {
    max-width: 600px;

    margin-top: 15px;

    color:
        rgba(255,255,255,.65);

    font-size: 14px;

    line-height: 1.75;
}

.request-direct-buttons {
    min-width: 230px;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.request-contact-btn {
    border:
        1px solid rgba(255,255,255,.32);

    background:
        rgba(255,255,255,.07);

    color: var(--white);
}

.request-contact-btn:hover {
    background:
        rgba(255,255,255,.13);

    color: var(--white);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 930px) {

    .request-service-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .request-service-content {
        position: static;

        max-width: 700px;
    }

    .request-direct-inner {
        align-items: flex-start;

        flex-direction: column;

        gap: 30px;
    }

    .request-direct-buttons {
        min-width: 0;

        flex-direction: row;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .request-service-content h2,
    .request-direct-inner h2 {
        font-size: 32px;

        letter-spacing: -1.2px;
    }

    .request-service-form-card {
        padding:
            25px 20px;

        border-radius: 17px;
    }

    .request-form-fields {
        grid-template-columns: 1fr;
    }

    .request-form-fields
    .form-group-full {
        grid-column: auto;
    }

    .request-form-submit {
        align-items: stretch;

        flex-direction: column;
    }

    .request-form-submit .btn {
        width: 100%;
    }

    .request-success-box {
        grid-template-columns:
            38px 1fr;

        padding: 16px;
    }

    .request-success-icon {
        width: 35px;
        height: 35px;
    }

    .request-direct-buttons {
        width: 100%;

        flex-direction: column;
    }

    .request-direct-buttons .btn {
        width: 100%;
    }

}
/* =========================================================
   HEADER BRAND LOGO
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    text-decoration: none;
}


/* LOGO HOLDER */

.brand-mark {
    width: 66px;
    height: 66px;

    flex: 0 0 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 50%;

    background: #ffffff;

    box-sizing: border-box;
}


/* ACTUAL LOGO */

.brand-logo {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    border-radius: 50%;
}


/* BRAND TEXT */

.brand-text {
    min-width: 0;
}


.brand-text strong {
    display: block;

    color: #005b38;

    font-size: 25px;
    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -0.5px;
}


.brand-text small {
    display: block;

    margin-top: 5px;

    color: #4f5f58;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.35;

    white-space: nowrap;
}


/* =========================================================
   TOPBAR CONTACT LINKS
========================================================= */

.topbar-contact a {
    color: inherit;

    text-decoration: none;

    transition:
        opacity .2s ease;
}


.topbar-contact a:hover {
    opacity: .78;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .brand {
        gap: 10px;
    }


    .brand-mark {
        width: 52px;
        height: 52px;

        flex-basis: 52px;
    }


    .brand-text strong {
        font-size: 20px;
    }


    .brand-text small {
        font-size: 9px;

        white-space: normal;
    }

}

/* =========================================================
   STICKY WEBSITE HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;

    z-index: 9990;

    background: #ffffff;

    box-shadow:
        0 2px 14px
        rgba(0, 50, 32, 0.07);
}


/* Navbar background safety */

.site-header .navbar {
    background: #ffffff;
}


/* =========================================================
   BACK TO TOP — ABOVE CHATBOT
========================================================= */

.back-to-top,
#backToTop {
    position: fixed !important;

    right: 28px !important;
    bottom: 96px !important;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    z-index: 99990 !important;
}


/* MOBILE */

@media (max-width: 600px) {

    .back-to-top,
    #backToTop {
        right: 17px !important;
        bottom: 82px !important;

        width: 44px;
        height: 44px;
    }
}

/* =========================================================
   FOOTER BRAND LOGO
========================================================= */

.footer-brand-mark {
    width: 68px;
    height: 68px;

    flex: 0 0 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 4px;

    overflow: hidden;

    background: #ffffff;

    border-radius: 50%;

    box-sizing: border-box;

    box-shadow:
        0 8px 24px
        rgba(0, 0, 0, .15);
}


.footer-brand-logo {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    border-radius: 50%;
}


/* =========================================================
   FOOTER BRAND ALIGNMENT
========================================================= */

.footer-brand {
    display: flex;
    align-items: center;

    gap: 15px;

    text-decoration: none;
}


.footer-brand > div:last-child {
    min-width: 0;
}


.footer-brand strong {
    display: block;
}


.footer-brand span {
    display: block;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-brand-mark {
        width: 58px;
        height: 58px;

        flex-basis: 58px;

        padding: 3px;
    }


    .footer-brand {
        gap: 12px;
    }

}

/* =========================================================
   HEADER BRAND LOGO
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-mark {
    width: 66px;
    height: 66px;
    flex: 0 0 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 50%;
    background: #ffffff;
}

.brand-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 50%;
}

.brand-text strong {
    display: block;
    color: #005b38;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.15;
}

.brand-text small {
    display: block;
    margin-top: 5px;
    color: #4f5f58;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
}


/* =========================================================
   STICKY HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9990;
    background: #ffffff;

    box-shadow:
        0 2px 14px
        rgba(0, 50, 32, .07);
}

.site-header .navbar {
    background: #ffffff;
}


/* =========================================================
   TOPBAR CONTACT
========================================================= */

.topbar-contact a {
    color: inherit;
    text-decoration: none;
}

.topbar-contact a:hover {
    opacity: .78;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .brand {
        gap: 10px;
    }

    .brand-mark {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .brand-text strong {
        font-size: 20px;
    }

    .brand-text small {
        font-size: 9px;
        white-space: normal;
    }
}