/* ===========================
   FORD ENVIRONMENTAL
   MAIN STYLESHEET
=========================== */

:root {
    --bg: #050505;
    --surface: rgba(255, 255, 255, 0.025);
    --surface-hover: rgba(255, 255, 255, 0.045);

    --green: #5f8f5b;
    --green-light: #78a873;
    --green-dark: #304b35;

    --text: #ffffff;
    --text-soft: #c7c7c7;
    --text-muted: #7d7d7d;

    --line: rgba(255, 255, 255, 0.07);
    --line-strong: rgba(255, 255, 255, 0.16);

    --section-x: 8%;
    --max-width: 1500px;

    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}


/* ===========================
   RESET
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;

    scroll-behavior: smooth;

    background: var(--bg);
}

body {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;

    overflow-x: hidden;

    background: var(--bg);

    color: var(--text);

    font-family: "Inter", sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}


/* ==================================================
   FIXED SITE WATERMARK
   STAYS CENTRED WHILE PAGE SCROLLS
================================================== */

.site-watermark {
    position: fixed;

    top: 50%;
    left: 50%;

    width: 720px;
    max-width: 52vw;

    transform: translate(-50%, -50%);

    z-index: 0;

    opacity: 0.18;

    pointer-events: none;
    user-select: none;
}

.site-watermark img {
    display: block;

    width: 100%;
    height: auto;

    max-width: none;
}


/* ===========================
   PAGE LAYERING
=========================== */

main {
    position: relative;
    z-index: 1;
}


/* ===========================
   HEADER
=========================== */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 92px;

    z-index: 1000;

    background: rgba(5, 5, 5, 0.78);

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    width: min(84%, var(--max-width));
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ===========================
   HEADER LOGO
=========================== */

.brand {
    display: flex;
    align-items: center;

    width: 180px;
}

.brand-logo {
    width: 100%;
    height: auto;

    object-fit: contain;
}


/* ===========================
   NAVIGATION
=========================== */

.main-nav {
    display: flex;
    align-items: center;

    gap: 34px;
}

.main-nav a {
    position: relative;

    color: #d0d0d0;

    font-size: 0.82rem;
    font-weight: 500;

    letter-spacing: 0.015em;

    transition: color 0.3s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--green-light);

    transition: width 0.35s var(--ease-premium);
}

.main-nav a:hover {
    color: #ffffff;
}

.main-nav a:hover::after {
    width: 100%;
}


/* ===========================
   HEADER CTA
=========================== */

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 24px;

    border: 1px solid rgba(120, 168, 115, 0.42);
    border-radius: 4px;

    background: rgba(95, 143, 91, 0.06);

    color: #ffffff;

    font-size: 0.78rem;
    font-weight: 600;

    transition:
        transform 0.35s var(--ease-premium),
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);

    background: rgba(95, 143, 91, 0.13);

    border-color: var(--green-light);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(95, 143, 91, 0.08);
}


/* ===========================
   HERO
=========================== */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding:
        155px var(--section-x) 90px;

    overflow: hidden;

}


/* subtle depth */

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.012) 0%,
            transparent 25%,
            transparent 72%,
            rgba(0, 0, 0, 0.5) 100%);
}


/* ===========================
   HERO CONTENT
=========================== */

.hero-content {
    position: relative;

    z-index: 2;

    width: min(100%, var(--max-width));

    margin: 0 auto;
}

.hero-eyebrow {
    margin-bottom: 26px;

    color: var(--green-light);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.24em;

    text-transform: uppercase;
}

.hero h1 {
    max-width: 850px;

    color: #ffffff;

    font-size: clamp(4rem, 6vw, 7.2rem);

    font-weight: 700;

    line-height: 0.96;

    letter-spacing: -0.055em;
}

.hero h1 span {
    color: #858585;
}


/* ===========================
   HERO DESCRIPTION
=========================== */

.hero-description {
    max-width: 620px;

    margin-top: 34px;

    color: var(--text-soft);

    font-size: 1.05rem;
    font-weight: 300;

    line-height: 1.85;
}


/* ===========================
   HERO BUTTONS
=========================== */

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 40px;
}

.btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 27px;

    border-radius: 4px;

    font-size: 0.81rem;
    font-weight: 600;

    transition:
        transform 0.4s var(--ease-premium),
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--green);

    border: 1px solid var(--green);

    color: #ffffff;

    box-shadow:
        0 12px 40px rgba(65, 103, 66, 0.14);
}

.btn-primary:hover {
    background: #050505;
    border-color: var(--green-light);
    color: #ffffff;

    box-shadow:
        0 0 0 1px rgba(95, 143, 91, 0.18),
        0 14px 40px rgba(0, 0, 0, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.018);

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #d5d5d5;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);

    border-color: rgba(255, 255, 255, 0.25);

    color: #ffffff;
}


/* ===========================
   HERO SECTORS
=========================== */

.hero-sectors {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-top: 58px;

    color: #707070;

    font-size: 0.62rem;
    font-weight: 500;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.separator {
    width: 3px;
    height: 3px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--green);
}


/* ===========================
   HERO AMBIENT GLOW
=========================== */

.hero-glow {
    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 0;

    width: 650px;
    height: 650px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: transparent;

    filter: blur(160px);

    pointer-events: none;
}


/* ===========================
   HERO DIVIDER
=========================== */

.hero-divider {
    position: absolute;

    left: 0;
    bottom: 0;

    z-index: 3;

    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, 0.06);

    pointer-events: none;
}

.hero-divider::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 280px;
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(90deg,
            transparent,
            rgba(120, 168, 115, 0.65),
            transparent);
}

.hero-divider span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 90px;
    height: 16px;

    transform: translate(-50%, -50%);

    background: rgba(95, 143, 91, 0.18);

    filter: blur(18px);

    border-radius: 50%;
}


/* ===========================
   TABLET
=========================== */

@media (max-width: 1050px) {

    :root {
        --section-x: 6%;
    }

    .main-nav {
        display: none;
    }

    .nav-container {
        width: 88%;
    }

    .site-watermark {
        width: 620px;
        max-width: 68vw;

        opacity: 0.065;
    }

    .hero h1 {
        max-width: 700px;
    }

}


/* ===========================
   MOBILE
=========================== */

@media (max-width: 700px) {

    :root {
        --section-x: 5%;
    }

    .site-header {
        height: 76px;
    }

    .nav-container {
        width: 90%;
    }

    .brand {
        width: 135px;
    }

    .nav-cta {
        padding: 10px 15px;

        font-size: 0.68rem;
    }

    .hero {
        min-height: 100svh;

        padding:
            120px var(--section-x) 80px;
    }

    .hero-eyebrow {
        font-size: 0.62rem;

        line-height: 1.7;
    }

    .hero h1 {
        max-width: 100%;

        font-size: clamp(3.1rem, 14vw, 5rem);

        line-height: 0.95;

        letter-spacing: -0.045em;
    }

    .hero-description {
        max-width: 95%;

        margin-top: 28px;

        font-size: 0.95rem;

        line-height: 1.75;
    }

    .hero-actions {
        max-width: 330px;

        flex-direction: column;

        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-sectors {
        max-width: 320px;

        flex-wrap: wrap;

        gap: 11px;

        margin-top: 48px;
    }

    .site-watermark {
        width: 520px;
        max-width: 92vw;

        opacity: 0.045;
    }

    .hero-glow {
        width: 420px;
        height: 420px;
    }

    .scroll-indicator {
        display: none;
    }

}


/* ===========================
   REDUCED MOTION
=========================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}

/* ===========================
   ABOUT SECTION
=========================== */

.about-section {
    position: relative;
    z-index: 2;

    min-height: 100vh;

    padding:
        150px var(--section-x) 140px;

    border-top: 1px solid var(--line);

    background:
        linear-gradient(180deg,
            rgba(5, 5, 5, 0.78) 0%,
            rgba(5, 5, 5, 0.58) 45%,
            rgba(5, 5, 5, 0.72) 100%);
}


/* ===========================
   ABOUT MAIN LAYOUT
=========================== */

.about-container {
    width: min(100%, var(--max-width));

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.85fr;

    gap: 120px;

    align-items: start;
}


/* ===========================
   ABOUT HEADING
=========================== */

.section-eyebrow {
    margin-bottom: 24px;

    color: var(--green-light);

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 0.24em;

    text-transform: uppercase;
}

.about-heading h2 {
    max-width: 760px;

    color: #ffffff;

    font-size: clamp(3.2rem, 5vw, 6rem);
    font-weight: 600;

    line-height: 1;

    letter-spacing: -0.05em;
}

.about-heading h2 span {
    color: #858585;
}


/* ===========================
   ABOUT COPY
=========================== */

.about-content {
    max-width: 600px;

    padding-top: 47px;
}

.about-lead {
    color: #ffffff;

    font-size: 1.3rem;
    font-weight: 400;

    line-height: 1.7;
}

.about-text {
    margin-top: 28px;

    color: var(--text-soft);

    font-size: 1rem;
    font-weight: 300;

    line-height: 1.85;
}


/* ===========================
   ABOUT VALUES
=========================== */

.about-values {
    width: min(100%, var(--max-width));

    margin:
        110px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-value {
    position: relative;

    min-height: 190px;

    padding: 38px 44px;

    display: flex;

    gap: 28px;

    border-right: 1px solid var(--line);

    background: rgba(255, 255, 255, 0.012);

    transition:
        background 0.35s ease,
        transform 0.4s var(--ease-premium);
}

.about-value:last-child {
    border-right: none;
}

.about-value:hover {
    transform: translateY(-8px);

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.012),
            rgba(95, 143, 91, 0.035));
}

.about-value::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 50% 100%,
            rgba(95, 143, 91, 0.10),
            transparent 55%);

    opacity: 0;

    transition: opacity 0.4s ease;

    pointer-events: none;
}

.about-value:hover::before {
    opacity: 1;
}

.value-number {
    flex-shrink: 0;

    padding-top: 3px;

    color: var(--green-light);

    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 0.15em;
}

.about-value h3 {
    margin-bottom: 17px;

    color: #ffffff;

    font-size: 1.15rem;
    font-weight: 500;

    letter-spacing: -0.02em;
}

.about-value p {
    max-width: 330px;

    color: var(--text-muted);

    font-size: 0.9rem;
    font-weight: 300;

    line-height: 1.75;
}

.about-value::after {
    content: "";

    position: absolute;
    top: 0;
    left: 40px;

    width: 32px;
    height: 1px;

    background: var(--green);

    transition:
        width 0.45s var(--ease-premium),
        background 0.35s ease;

    z-index: 2;
}

.about-value:hover::after {
    width: 58px;
    background: var(--green-light);
}

/* ===========================
   ABOUT RESPONSIVE
=========================== */

@media (max-width: 1050px) {

    .about-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-content {
        max-width: 700px;

        padding-top: 0;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-value {
        min-height: auto;

        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .about-value:last-child {
        border-bottom: none;
    }

}


@media (max-width: 700px) {

    .about-section {
        min-height: auto;

        padding:
            100px var(--section-x) 90px;
    }

    .about-heading h2 {
        font-size: clamp(3rem, 13vw, 4.5rem);
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .about-values {
        margin-top: 70px;
    }

    .about-value {
        padding:
            34px 24px 36px;

        gap: 20px;
    }

}

/* ===========================
   SERVICES SECTION
=========================== */

.services-section {
    position: relative;
    z-index: 2;

    padding:
        150px var(--section-x) 150px;

    border-top: 1px solid var(--line);

    background:
        linear-gradient(180deg,
            rgba(5, 5, 5, 0.72) 0%,
            rgba(5, 5, 5, 0.52) 50%,
            rgba(5, 5, 5, 0.72) 100%);
}

.services-container {
    width: min(100%, var(--max-width));
    margin: 0 auto;
}


/* ===========================
   SERVICES HEADER
=========================== */

.services-header {
    display: grid;
    grid-template-columns: 1fr 0.85fr;

    gap: 120px;

    align-items: start;
}

.services-heading h2 {
    max-width: 760px;

    color: #ffffff;

    font-size: clamp(3.2rem, 5vw, 6rem);
    font-weight: 600;

    line-height: 1;

    letter-spacing: -0.05em;
}

.services-heading h2 span {
    color: #858585;
}

.services-intro {
    max-width: 600px;

    padding-top: 47px;
}

.services-intro p {
    color: var(--text-soft);

    font-size: 1rem;
    font-weight: 300;

    line-height: 1.85;
}

.services-intro p:first-child {
    color: #ffffff;

    font-size: 1.3rem;
    font-weight: 400;

    line-height: 1.7;
}

.services-intro p+p {
    margin-top: 28px;
}


/* ===========================
   SERVICES GRID
=========================== */

.services-grid {
    margin-top: 110px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}


/* ===========================
   SERVICE CARD
=========================== */

.service-card {
    position: relative;

    min-height: 230px;

    padding: 42px 44px;

    overflow: hidden;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    background: rgba(255, 255, 255, 0.012);

    transition:
        background 0.35s ease,
        transform 0.4s var(--ease-premium);
}

.service-card:hover {
    transform: translateY(-8px);

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.012),
            rgba(95, 143, 91, 0.035));
}


/* green detail */

.service-line {
    width: 32px;
    height: 1px;

    margin-bottom: 30px;

    background: var(--green);

    transition:
        width 0.45s var(--ease-premium),
        background 0.35s ease;
}

.service-card:hover .service-line {
    width: 58px;

    background: var(--green-light);
}

.service-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 50% 100%,
            rgba(95, 143, 91, 0.10),
            transparent 55%);

    opacity: 0;

    transition: opacity 0.4s ease;

    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}


/* ===========================
   SERVICE COPY
=========================== */

.service-card h3 {
    max-width: 330px;

    margin-bottom: 18px;

    color: #ffffff;

    font-size: 1.15rem;
    font-weight: 500;

    line-height: 1.35;

    letter-spacing: -0.02em;
}

.service-card p {
    max-width: 350px;

    color: var(--text-muted);

    font-size: 0.9rem;
    font-weight: 300;

    line-height: 1.75;
}


/* ===========================
   SERVICES RESPONSIVE
=========================== */

@media (max-width: 1050px) {

    .services-header {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .services-intro {
        max-width: 700px;

        padding-top: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .services-section {
        padding:
            100px var(--section-x) 90px;
    }

    .services-heading h2 {
        font-size: clamp(3rem, 13vw, 4.5rem);
    }

    .services-intro p:first-child {
        font-size: 1.1rem;
    }

    .services-grid {
        margin-top: 70px;

        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;

        padding: 36px 28px 40px;
    }

}

/* ===========================
   SCROLL REVEAL ANIMATIONS
=========================== */

/* Standard rise + fade */

.reveal {
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}


/* Slide in from right */

.reveal-from-right {
    opacity: 0;
    transform: translateX(70px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}


/* Slide in from left */

.reveal-from-left {
    opacity: 0;
    transform: translateX(-70px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}


/* Final visible state */

.reveal.is-visible,
.reveal-from-right.is-visible,
.reveal-from-left.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-from-right,
    .reveal-from-left {
        opacity: 1;
        transform: none;
        transition: none;
    }

}

/* ===========================
   HERO SIDE CTA
=========================== */

.hero-contact {
    position: absolute;

    top: 50%;
    right: 8%;

    width: 400px;

    z-index: 5;

    padding-left: 28px;

    border-left: 1px solid rgba(120, 168, 115, 0.35);
}


/* SMALL GREEN HEADING */

.hero-contact-eyebrow {
    margin-bottom: 18px;

    color: var(--green-light);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}


/* MAIN TEXT */

.hero-contact h2 {
    margin: 0;

    color: #ffffff;

    font-size: 3rem;
    font-weight: 600;

    line-height: 1.05;

    letter-spacing: -0.045em;
}

.hero-contact h2 span {
    color: var(--green-light);
}


/* SECTORS */

.hero-contact-sectors {
    margin-top: 18px;

    color: #777777;

    font-size: 0.68rem;
    font-weight: 500;

    line-height: 1.6;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}


/* LINK */

.hero-contact-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 22px;
    padding-bottom: 6px;

    border-bottom: 1px solid rgba(120, 168, 115, 0.45);

    color: #ffffff;

    font-size: 0.9rem;
    font-weight: 600;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        gap 0.3s ease;
}

.hero-contact-link:hover {
    color: var(--green-light);
    border-color: var(--green-light);

    gap: 15px;
}


/* ===========================
   ENTER FROM RIGHT
=========================== */

.hero-contact.reveal-from-right {
    opacity: 0;

    transform: translateX(70px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-contact.reveal-from-right.is-visible {
    opacity: 1;

    transform: translateX(0);
}


/* Hide side CTA where space gets tight */

@media (max-width: 1150px) {

    .hero-contact {
        display: none;
    }

}

.hero-contact h2 span {
    color: var(--green-light) !important;
}

/* ===========================
   SECTORS
=========================== */

.sectors-section {
    position: relative;
    z-index: 2;

    padding: 150px 4% 170px;

    border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.sectors-container {
    width: min(92%, var(--container));
    margin: 0 auto;
}


/* ===========================
   HEADING
=========================== */

.sectors-heading {
    max-width: 760px;
    margin-bottom: 70px;
}

.sectors-heading .section-eyebrow {
    margin-bottom: 24px;

    color: var(--green-light);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.sectors-heading h2 {
    color: #ffffff;

    font-size: clamp(52px, 5vw, 78px);
    font-weight: 600;

    line-height: 1;
    letter-spacing: -0.055em;
}

.sectors-heading h2 span {
    color: #858585;
}

.sectors-intro {
    max-width: 650px;

    margin-top: 30px;

    color: var(--text-soft);

    font-size: 16px;
    font-weight: 300;

    line-height: 1.75;
}


/* ===========================
   PORTRAIT SECTOR CARDS
=========================== */

.sector-panels {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.sector-panel {
    position: relative;

    min-height: 470px;

    display: flex;
    align-items: flex-end;

    padding: 42px 42px 78px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.008),
            rgba(255, 255, 255, 0.025));

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

.sector-panel::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 50% 100%,
            rgba(95, 143, 91, 0.10),
            transparent 55%);

    opacity: 0;

    transition: opacity 0.4s ease;

    pointer-events: none;
}

.sector-panel:hover {
    transform: translateY(-8px);

    border-color: rgba(120, 168, 115, 0.28);

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.012),
            rgba(95, 143, 91, 0.035));
}

.sector-panel:hover::before {
    opacity: 1;
}


/* ===========================
   GREEN DETAIL
=========================== */

.sector-line {
    position: absolute;

    top: 0;
    left: 42px;

    width: 42px;
    height: 2px;

    background: var(--green-light);

    transition: width 0.4s ease;
}

.sector-panel:hover .sector-line {
    width: 90px;
}


/* ===========================
   CARD CONTENT
=========================== */

.sector-panel-content {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
}

.sector-label {
    margin-bottom: 20px;

    color: var(--green-light);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sector-panel h3 {
    margin-bottom: 24px;

    color: #ffffff;

    font-size: 46px;
    font-weight: 600;

    letter-spacing: -0.045em;
}

.sector-panel-content>p:last-child {
    max-width: 430px;

    color: #8d8d8d;

    font-size: 17px;
    font-weight: 300;

    line-height: 1.7;
}


/* ===========================
   ARROW
=========================== */

.sector-arrow {
    position: absolute;

    z-index: 2;

    top: 38px;
    right: 38px;

    color: #555555;

    font-size: 22px;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}

.sector-panel:hover .sector-arrow {
    color: var(--green-light);

    transform: translateX(6px);
}


/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1050px) {

    .sector-panels {
        grid-template-columns: 1fr;
    }

    .sector-panel {
        min-height: 330px;
    }
}


@media (max-width: 768px) {

    .sectors-section {
        padding: 110px 6% 120px;
    }

    .sectors-heading {
        margin-bottom: 50px;
    }

    .sectors-heading h2 {
        font-size: clamp(44px, 12vw, 62px);
    }

    .sector-panel {
        min-height: 350px;

        padding: 30px;
    }

    .sector-line {
        left: 30px;
    }

    .sector-arrow {
        top: 28px;
        right: 28px;
    }

    .sector-panel h3 {
        font-size: 34px;
    }
}

/* ===========================
   ABOUT VALUE CARDS
=========================== */

.about-value h3 {
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.about-value p {
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ===========================
   HEALTH & SAFETY
=========================== */

.safety-section {
    position: relative;
    padding: 150px 6% 140px;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.safety-container {
    width: min(100%, var(--max-width));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 120px;

    align-items: start;
}


/* ===========================
   LEFT SIDE
=========================== */

.safety-heading .section-eyebrow {
    margin-bottom: 24px;

    color: var(--green-light);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.safety-heading h2 {
    margin: 0;

    max-width: 720px;

    color: #ffffff;

    font-size: clamp(4rem, 5.5vw, 6.8rem);
    font-weight: 700;

    line-height: 0.96;
    letter-spacing: -0.055em;
}

.safety-heading h2 span {
    color: #858585;
}


/* ===========================
   RIGHT SIDE
=========================== */

.safety-content {
    max-width: 620px;
    padding-top: 52px;
}

.safety-lead {
    margin: 0;

    color: #ffffff;

    font-size: 1.35rem;
    font-weight: 500;

    line-height: 1.65;
}

.safety-text {
    margin: 28px 0 0;

    color: var(--text-soft);

    font-size: 1rem;
    font-weight: 300;

    line-height: 1.85;
}


/* ===========================
   PRINCIPLES
=========================== */

.safety-principles {
    width: min(100%, var(--max-width));
    margin: 100px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    }

    .safety-principle {
        position: relative;

        min-height: 190px;

        padding: 42px 48px;
    }

    .safety-principle+.safety-principle {
        border-left: 1px solid rgba(255, 255, 255, 0.09);
    }

    .safety-principle::before {
        content: "";

        position: absolute;
        top: -1px;
        left: 48px;

        width: 30px;
        height: 1px;

        background: var(--green-light);
    }

    .safety-principle span {
        display: block;

        margin-bottom: 18px;

        color: var(--green-light);

        font-size: 0.72rem;
        font-weight: 600;

        letter-spacing: 0.20em;
    }

    .safety-principle p {
        margin: 0;

        max-width: 300px;

        color: var(--text-soft);

        font-size: 1rem;
        font-weight: 300;

        line-height: 1.7;
    }


    /* ===========================
   RESPONSIVE
=========================== */

    @media (max-width: 900px) {

        .safety-section {
            padding: 100px 7% 90px;
        }

        .safety-container {
            grid-template-columns: 1fr;
            gap: 45px;
        }

        .safety-content {
            padding-top: 0;
        }

        .safety-principles {
            margin-top: 70px;
            grid-template-columns: 1fr;
        }

        .safety-principle+.safety-principle {
            border-left: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.09);
        }

        .safety-heading h2 {
            font-size: clamp(3.2rem, 12vw, 5rem);
        }
    }

    /* ===========================
   SAFETY PRINCIPLES
   MATCH SECTOR CARD HOVER
=========================== */

    .safety-principle {
        position: relative;
        overflow: hidden;

        background: rgba(255, 255, 255, 0.012);

        transition:
            background 0.4s ease,
            transform 0.4s ease,
            border-color 0.4s ease;
    }

    .safety-principle:hover {
        transform: translateY(-8px);

        border-color: rgba(120, 168, 115, 0.28);

        background:
            linear-gradient(180deg,
                rgba(255, 255, 255, 0.012),
                rgba(95, 143, 91, 0.035));
    }

    /* RADIAL GREEN GLOW */

    .safety-principle::after {
        content: "";

        position: absolute;
        inset: 0;

        background:
            radial-gradient(circle at 50% 100%,
                rgba(95, 143, 91, 0.10),
                transparent 55%);

        opacity: 0;

        transition: opacity 0.4s ease;

        pointer-events: none;
    }

    .safety-principle:hover::after {
        opacity: 1;
    }

    /* GREEN TOP DETAIL */

    .safety-principle::before {
        content: "";

        position: absolute;
        top: 0px;
        left: 48px;

        width: 32px;
        height: 1px;

        background: var(--green);

        transition:
            width 0.45s var(--ease-premium),
            background 0.35s ease;

        z-index: 2;
    }

    .safety-principle:hover::before {
        width: 58px;
        background: var(--green-light);
    }

    /* ===========================
   SCROLL PROGRESS BAR
=========================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    z-index: 9999;

    pointer-events: none;
}

.scroll-progress-bar {
    width: 0%;
    height: 100%;

    background: var(--green-light);

    box-shadow:
        0 0 8px rgba(120, 168, 115, 0.55),
        0 0 18px rgba(120, 168, 115, 0.25);

    transition: width 0.08s linear;
}

/* ===========================
   CONTACT / REQUEST A QUOTE
=========================== */

.contact-section {
    position: relative;
    z-index: 2;

    padding: 150px var(--section-x) 160px;

    background:
        linear-gradient(
            180deg,
            rgba(5, 5, 5, 0.72) 0%,
            rgba(5, 5, 5, 0.52) 50%,
            rgba(5, 5, 5, 0.72) 100%
        );

    overflow: hidden;
}

.contact-container {
    width: min(100%, var(--max-width));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1fr;

    gap: 130px;

    align-items: start;
}


/* ===========================
   CONTACT LEFT
=========================== */

.contact-heading h2 {
    max-width: 650px;

    color: #ffffff;

    font-size: clamp(3.5rem, 5vw, 6rem);
    font-weight: 600;

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.contact-heading h2 span {
    display: block;

    color: #858585;
}

.contact-intro {
    max-width: 540px;

    margin-top: 34px;

    color: var(--text-soft);

    font-size: 1.05rem;
    font-weight: 300;

    line-height: 1.85;
}


/* ===========================
   CONTACT DETAILS
=========================== */

.contact-detail {
    position: relative;
    display: block;

    padding: 24px 22px;

    border-bottom: 1px solid var(--line);

    background: rgba(255, 255, 255, 0.012);

    overflow: hidden;

    text-decoration: none;

    transition:
        transform 0.4s var(--ease-premium),
        background 0.35s ease,
        border-color 0.35s ease;
}

.contact-detail:hover {
    transform: translateY(-6px);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.012),
            rgba(95, 143, 91, 0.035)
        );

    border-color: rgba(95, 143, 91, 0.28);
}

/* GREEN TOP DETAIL */

.contact-detail::before {
    content: "";

    position: absolute;
    top: 0;
    left: 22px;

    width: 32px;
    height: 1px;

    background: var(--green);

    transition:
        width 0.45s var(--ease-premium),
        background 0.35s ease;
}

.contact-detail:hover::before {
    width: 58px;
    background: var(--green-light);
}

.contact-detail span {
    display: block;

    margin-bottom: 8px;

    color: var(--green-light);

    font-size: 0.66rem;
    font-weight: 600;

    letter-spacing: 0.18em;
}

.contact-detail p {
    margin: 0;

    color: #b5b5b5;

    font-size: 0.95rem;
    font-weight: 300;

    line-height: 1.6;

    transition: color 0.3s ease;
}

a.contact-detail:hover p {
    color: var(--green-light);
}


/* ===========================
   CONTACT FORM
=========================== */

.contact-form-wrap {
    position: relative;

    padding: 50px;

    border: 1px solid var(--line);

    background: rgba(255, 255, 255, 0.012);
}

.contact-form-wrap::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 50px;

    width: 55px;
    height: 1px;

    background: var(--green-light);
}

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.form-field label {
    color: var(--green-light);

    font-size: 0.66rem;
    font-weight: 600;

    letter-spacing: 0.18em;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 16px 0;

    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 0;

    outline: none;

    background: transparent;

    color: #ffffff;

    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    font-weight: 300;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}

.form-field textarea {
    min-height: 145px;

    resize: vertical;

    line-height: 1.7;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--green-light);
}

.form-field textarea::placeholder {
    color: #606060;
}

.form-field select {
    cursor: pointer;
}

.form-field select option {
    background: #0a0a0a;

    color: #ffffff;
}


/* ===========================
   SUBMIT BUTTON
=========================== */

.contact-submit {
    min-height: 56px;

    margin-top: 8px;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid var(--green);

    border-radius: 4px;

    background: var(--green);

    color: #ffffff;

    font-family: "Inter", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.4s var(--ease-premium),
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.contact-submit:hover {
    transform: translateY(-3px);

    background: #050505;

    border-color: var(--green-light);

    box-shadow:
        0 0 0 1px rgba(95, 143, 91, 0.18),
        0 14px 40px rgba(0, 0, 0, 0.35);
}


/* ===========================
   CONTACT RESPONSIVE
=========================== */

@media (max-width: 1050px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .contact-intro,
    .contact-details {
        max-width: 700px;
    }
}

@media (max-width: 700px) {

    .contact-section {
        padding:
            100px var(--section-x) 100px;
    }

    .contact-heading h2 {
        font-size: clamp(3rem, 13vw, 4.5rem);
    }

    .contact-form-wrap {
        padding: 35px 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* CONTACT DETAILS SPACING */

.contact-details {
    margin-top: 85px;
}

/* ===========================
   FORM SUCCESS MESSAGE
=========================== */

.form-success {
    min-height: 420px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding: 50px;

    border-left: 2px solid var(--green);

    animation: formSuccessIn 0.6s ease forwards;
}

.form-success span {
    margin-bottom: 18px;

    color: var(--green-light);

    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.form-success h3 {
    margin: 0 0 16px;

    color: #ffffff;

    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.form-success p {
    margin: 0;

    color: #b5b5b5;

    font-size: 0.95rem;
    line-height: 1.7;
}

@keyframes formSuccessIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}