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

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

html {
    scroll-behavior: smooth;
}

body {
    background: #020202;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}


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

.hse-hero {
    position: relative;
    min-height: 920px;
    background: #020202;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 126, 0, 0.15);
}


/* BACKGROUND IMAGE */

.hse-bg {
    position: absolute;
    inset: 0;

    background-image:
        url("../images/hse-hero.jpg");

    background-size: cover;
    background-position: center center;

    z-index: 0;
}


/* DARK IMAGE OVERLAY */

.hse-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.72) 32%,
            rgba(0, 0, 0, 0.38) 60%,
            rgba(0, 0, 0, 0.70) 100%
        );

    z-index: 1;
}


/* LOWER DARK FADE */

.hse-overlay::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.85) 88%,
            #020202 100%
        );
}


/* =========================================================
   NAVIGATION
========================================================= */

.hse-nav {
    position: absolute;

    top: 18px;
    left: 30px;
    right: 30px;

    height: 86px;

    display: flex;
    align-items: center;

    padding: 0 22px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;

    background: rgba(4, 4, 4, 0.88);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    z-index: 20;
}


/* LOGO */

.hse-logo {
    display: flex;
    align-items: center;
    gap: 13px;

    min-width: 225px;
}

.logo-dots {
    width: 29px;

    display: grid;
    grid-template-columns: repeat(3, 7px);
    gap: 4px;
}

.logo-dots i {
    width: 7px;
    height: 7px;

    background: #ff7900;
    border-radius: 50%;

    box-shadow: 0 0 8px rgba(255, 121, 0, 0.35);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.4px;
}

.logo-text strong b {
    color: #ff7900;
}

.logo-text small {
    margin-top: 4px;

    font-size: 7px;
    font-weight: 600;
    letter-spacing: 1px;

    color: #777;
}


/* MENU */

.hse-menu {
    flex: 1;

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

    gap: 29px;
}

.hse-menu a {
    position: relative;

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

    color: #ddd;

    white-space: nowrap;

    transition: color 0.3s ease;
}

.hse-menu a:hover,
.hse-menu a.active {
    color: #ff7900;
}

.hse-menu a.active::after {
    content: "";

    position: absolute;

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

    height: 2px;

    background: #ff7900;

    box-shadow: 0 0 10px rgba(255, 121, 0, 0.7);
}


/* CONTACT BUTTON */

.nav-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    height: 52px;
    min-width: 145px;

    background: #ff7900;
    color: #050505;

    border-radius: 11px;

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

    transition: 0.3s ease;
}

.nav-contact span {
    font-size: 16px;
}

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

    box-shadow:
        0 8px 30px rgba(255, 121, 0, 0.25);
}


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

.hse-content {
    position: relative;

    z-index: 5;

    width: min(1180px, calc(100% - 90px));

    min-height: 820px;

    margin: 0 auto;

    padding-top: 205px;
}


/* =========================================================
   HUGE HSE WORD
========================================================= */

.hse-word-wrap {
    position: absolute;

    top: 220px;
    left: 0;

    width: 650px;
    height: 270px;

    overflow: hidden;

    cursor: pointer;

    z-index: 1;
}


.hse-word {
    position: absolute;

    left: 0;
    top: 0;

    font-size: 285px;
    line-height: 0.8;

    font-weight: 800;

    letter-spacing: -15px;

    color: rgba(0, 0, 0, 0.20);

    -webkit-text-stroke: 1.5px #ff7900;

    text-shadow:
        0 0 4px rgba(255, 121, 0, 0.45),
        0 0 20px rgba(255, 121, 0, 0.12);

    user-select: none;

    transition:
        text-shadow 0.4s ease,
        filter 0.4s ease;
}


/* =========================================================
   LIGHT SWEEP
========================================================= */

.hse-light-sweep {
    position: absolute;

    left: -100%;
    top: 50%;

    width: 80%;
    height: 5px;

    transform: translateY(-50%);

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 120, 0, 0.15) 20%,
            #ff7900 45%,
            #ffbd70 50%,
            #ff7900 55%,
            rgba(255, 120, 0, 0.15) 80%,
            transparent 100%
        );

    box-shadow:
        0 0 10px #ff7900,
        0 0 25px rgba(255, 121, 0, 0.9),
        0 0 60px rgba(255, 121, 0, 0.5);

    opacity: 0;
}


/*
   HOVER:
   The light travels across the HSE letters.
*/

.hse-word-wrap:hover .hse-light-sweep {
    opacity: 1;

    animation: hseSweep 1.1s ease-in-out;
}

.hse-word-wrap:hover .hse-word {
    text-shadow:
        0 0 5px rgba(255, 121, 0, 0.9),
        0 0 25px rgba(255, 121, 0, 0.55),
        0 0 60px rgba(255, 121, 0, 0.35);

    filter: brightness(1.15);
}


@keyframes hseSweep {

    0% {
        left: -80%;
    }

    100% {
        left: 110%;
    }

}


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

.hse-copy {
    position: relative;

    z-index: 6;

    width: 580px;

    padding-top: 250px;
}


.hse-eyebrow {
    position: relative;

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

    margin-bottom: 17px;

    color: #ff7900;

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

    letter-spacing: 4px;
}

.hse-eyebrow::before {
    content: "";

    width: 38px;
    height: 2px;

    margin-right: 12px;

    background: #ff7900;
}


.hse-copy h1 {
    max-width: 570px;

    font-size: 57px;
    line-height: 0.99;

    font-weight: 800;

    letter-spacing: -2.5px;
}

.hse-copy h1 span {
    display: block;
    color: #ff7900;
}


.hse-copy > p {
    width: 510px;

    margin-top: 22px;

    color: #dedede;

    font-size: 16px;
    line-height: 1.75;
}


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

.hse-buttons {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 30px;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 57px;

    padding: 0 27px;

    border-radius: 6px;

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

    transition: 0.3s ease;
}

.btn-primary {
    background: #ff7900;
    color: #050505;
}

.btn-primary:hover {
    background: #ff922c;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(255, 121, 0, 0.28);
}

.btn-primary span {
    font-size: 17px;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-outline:hover {
    border-color: #ff7900;
    color: #ff7900;

    background: rgba(255, 121, 0, 0.04);
}


/* =========================================================
   SAFETY SCORE CARD
========================================================= */

.safety-card {
    position: absolute;

    top: 270px;
    right: 55px;

    z-index: 8;

    width: 315px;

    padding: 25px 27px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(25, 25, 25, 0.93),
            rgba(8, 8, 8, 0.93)
        );

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

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(15px);
}


.safety-status {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #ddd;

    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.safety-status span {
    width: 8px;
    height: 8px;

    background: #00d65b;

    border-radius: 50%;

    box-shadow:
        0 0 10px rgba(0, 214, 91, 0.65);
}

.safety-status i {
    margin-left: auto;

    color: #fff;
}


.score {
    margin-top: 20px;

    color: #ff7900;

    font-size: 50px;
    line-height: 1;

    font-weight: 700;
}

.score-label {
    margin-top: 7px;

    color: #aaa;

    font-size: 8px;
    letter-spacing: 0.8px;
}


.score-item {
    margin-top: 24px;
}

.score-heading {
    display: flex;
    justify-content: space-between;

    color: #ddd;

    font-size: 10px;
}

.score-heading strong {
    color: #eee;
}


.score-bar {
    width: 100%;
    height: 5px;

    margin-top: 9px;

    overflow: hidden;

    background: #292929;

    border-radius: 10px;
}

.score-bar span {
    display: block;

    height: 100%;

    background: #ff7900;

    box-shadow:
        0 0 8px rgba(255, 121, 0, 0.45);
}


/* =========================================================
   HAZARD CARD
========================================================= */

.hazard-card {
    position: absolute;

    top: 600px;
    right: 55px;

    z-index: 8;

    width: 315px;
    min-height: 88px;

    padding: 20px 24px;

    display: flex;
    align-items: center;

    gap: 20px;

    border-radius: 14px;

    background: rgba(14, 14, 14, 0.92);

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

    backdrop-filter: blur(15px);
}

.hazard-icon {
    color: #ff7900;

    font-size: 34px;

    filter:
        drop-shadow(0 0 10px rgba(255, 121, 0, 0.45));
}

.hazard-card strong {
    display: block;

    font-size: 12px;
}

.hazard-card p {
    margin-top: 7px;

    color: #999;

    font-size: 10px;
}


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

.hse-values {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    min-height: 105px;

    padding: 0 max(45px, calc((100% - 1180px) / 2));

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

    align-items: center;

    background: rgba(3, 3, 3, 0.76);

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

    z-index: 10;
}


.value-item {
    position: relative;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 0 28px;
}

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

    position: absolute;

    right: 0;

    width: 1px;
    height: 42px;

    background: rgba(255, 255, 255, 0.13);
}


.value-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

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

    border: 1px solid #ff7900;

    border-radius: 50%;

    color: #ff7900;

    font-size: 16px;
}


.value-item strong {
    display: block;

    font-size: 12px;
}

.value-item span {
    display: block;

    margin-top: 5px;

    color: #999;

    font-size: 10px;
}


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

.section-heading {
    max-width: 720px;

    margin: 0 auto;

    text-align: center;
}

.section-heading > span {
    color: #ff7900;

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

    letter-spacing: 4px;
}

.section-heading h2 {
    margin-top: 14px;

    font-size: 35px;
    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -1.5px;
}

.section-heading h2 strong {
    color: #ff7900;
}

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

    max-width: 650px;

    color: #777;

    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   ARCHITECTURE
========================================================= */

.hse-architecture {
    padding: 105px 45px 115px;

    background: #020202;
}


.architecture-grid {
    width: min(1180px, 100%);

    margin: 50px auto 0;

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

    gap: 10px;
}


.architecture-card {
    min-height: 145px;

    padding: 20px;

    background: #0c0c0c;

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

    border-radius: 7px;

    transition: 0.3s ease;
}

.architecture-card:hover {
    border-color: rgba(255, 121, 0, 0.5);

    transform: translateY(-4px);
}


.card-icon {
    width: 28px;
    height: 28px;

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

    margin-bottom: 15px;

    border: 1px solid #ff7900;

    border-radius: 50%;

    color: #ff7900;

    font-size: 10px;
}

.architecture-card h3 {
    font-size: 12px;
}

.architecture-card p {
    margin-top: 8px;

    color: #777;

    font-size: 8px;
    line-height: 1.7;
}


/* =========================================================
   HOW WE OPERATE
========================================================= */

.operate-section {
    padding: 100px 45px 110px;

    background: #020202;
}


.operate-grid {
    width: min(1180px, 100%);

    margin: 50px auto 0;

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

    gap: 12px;
}


.operate-box {
    padding: 18px 25px;

    background: #0b0b0b;

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

    border-radius: 8px;
}


.operate-row {
    display: flex;
    gap: 15px;

    padding: 14px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.operate-row:last-child {
    border-bottom: none;
}

.operate-row > i {
    width: 20px;

    color: #ff7900;

    font-size: 10px;
}

.operate-row strong {
    font-size: 9px;
}

.operate-row p {
    margin-top: 4px;

    color: #666;

    font-size: 7px;
    line-height: 1.6;
}


/* OPERATIONAL CONTROL */

.control-title {
    margin-bottom: 8px;

    color: #777;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 3px;
}


.control-row {
    display: flex;
    gap: 13px;

    padding: 12px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.control-row:last-child {
    border-bottom: none;
}

.control-row > span {
    width: 25px;
    height: 25px;

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

    border: 1px solid rgba(255, 121, 0, 0.4);

    border-radius: 50%;

    color: #ff7900;

    font-size: 7px;
}

.control-row strong {
    font-size: 8px;
}

.control-row p {
    margin-top: 3px;

    color: #666;

    font-size: 7px;
}


/* =========================================================
   PERFORMANCE
========================================================= */

.performance-section {
    padding: 95px 45px 105px;
}

.performance-grid {
    width: min(1180px, 100%);

    margin: 45px auto 0;

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

    background: #0b0b0b;

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

    border-radius: 8px;

    overflow: hidden;
}


.performance-item {
    min-height: 110px;

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

    text-align: center;

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

.performance-item:last-child {
    border-right: none;
}

.performance-item i {
    color: #ff7900;

    font-size: 10px;
}

.performance-item strong {
    margin-top: 6px;

    color: #ff7900;

    font-size: 20px;
}

.performance-item span {
    margin-top: 3px;

    font-size: 7px;
    font-weight: 800;
}

.performance-item small {
    margin-top: 3px;

    color: #555;

    font-size: 6px;
}


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

.hse-cta {
    width: min(1180px, calc(100% - 90px));

    margin: 0 auto 85px;

    padding: 27px 30px;

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

    border: 1px solid rgba(255, 121, 0, 0.3);

    border-radius: 7px;

    background: #0b0b0b;
}


.hse-cta > div:first-child > span {
    color: #ff7900;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 3px;
}

.hse-cta h2 {
    margin-top: 5px;

    font-size: 17px;
}

.hse-cta h2 strong {
    color: #ff7900;
}

.hse-cta p {
    max-width: 650px;

    margin-top: 7px;

    color: #666;

    font-size: 8px;
    line-height: 1.6;
}


.cta-buttons {
    display: flex;
    gap: 8px;

    flex-shrink: 0;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-outline {
    min-height: 42px;

    padding: 0 18px;

    font-size: 7px;
}


/* =========================================================
   FOOTER
========================================================= */

.hse-footer {
    padding: 55px 45px 20px;

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

    background: #020202;

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

    gap: 50px;
}


.footer-brand h3 {
    font-size: 17px;
}

.footer-brand h3 span {
    color: #ff7900;
}

.footer-brand small {
    color: #666;

    font-size: 6px;
    letter-spacing: 1px;
}

.footer-brand p {
    max-width: 280px;

    margin-top: 15px;

    color: #555;

    font-size: 7px;
    line-height: 1.8;
}


.footer-column {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.footer-column h4 {
    margin-bottom: 7px;

    color: #fff;

    font-size: 7px;
    letter-spacing: 3px;
}

.footer-column a,
.footer-column p,
.footer-column span {
    color: #555;

    font-size: 7px;
}

.footer-column a:hover {
    color: #ff7900;
}

.footer-column span {
    margin-top: 5px;

    color: #777;

    font-size: 6px;
    letter-spacing: 1px;
}


.footer-bottom {
    grid-column: 1 / -1;

    margin-top: 20px;
    padding-top: 17px;

    display: flex;
    justify-content: space-between;

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

    color: #444;

    font-size: 6px;
}


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

@media (max-width: 1100px) {

    .hse-menu {
        gap: 14px;
    }

    .hse-menu a {
        font-size: 7px;
    }

    .hse-logo {
        min-width: 170px;
    }

    .nav-contact {
        min-width: 120px;
    }

    .hse-content {
        width: calc(100% - 60px);
    }

    .safety-card,
    .hazard-card {
        right: 20px;
    }

    .hse-copy {
        width: 52%;
    }

    .hse-copy h1 {
        font-size: 48px;
    }

    .hse-word {
        font-size: 240px;
    }

    .hse-word-wrap {
        width: 560px;
    }

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

}


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

@media (max-width: 850px) {

    .hse-nav {
        top: 10px;
        left: 12px;
        right: 12px;

        height: 68px;

        padding: 0 16px;

        border-radius: 17px;
    }

    .hse-menu {
        display: none;
    }

    .hse-logo {
        min-width: auto;
    }

    .nav-contact {
        margin-left: auto;

        min-width: 110px;
        height: 42px;

        font-size: 8px;
    }

    .hse-hero {
        min-height: 950px;
    }

    .hse-content {
        width: calc(100% - 35px);

        padding-top: 130px;
    }

    .hse-word-wrap {
        top: 170px;
        left: 0;

        width: 100%;
        height: 180px;
    }

    .hse-word {
        font-size: 180px;
        letter-spacing: -10px;
    }

    .hse-copy {
        width: 100%;

        padding-top: 190px;
    }

    .hse-copy h1 {
        font-size: 42px;
    }

    .hse-copy > p {
        width: 90%;

        font-size: 13px;
    }

    .hse-buttons {
        flex-wrap: wrap;
    }

    .safety-card {
        top: 520px;
        left: 0;
        right: auto;

        width: 290px;
    }

    .hazard-card {
        top: 690px;
        left: 0;
        right: auto;

        width: 290px;
    }

    .hse-values {
        display: none;
    }

}


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

@media (max-width: 600px) {

    .hse-hero {
        min-height: 900px;
    }

    .hse-logo {
        gap: 8px;
    }

    .logo-dots {
        width: 24px;

        grid-template-columns: repeat(3, 6px);
        gap: 3px;
    }

    .logo-dots i {
        width: 6px;
        height: 6px;
    }

    .logo-text strong {
        font-size: 13px;
    }

    .nav-contact {
        min-width: 95px;

        padding: 0 10px;

        font-size: 7px;
    }

    .nav-contact span {
        font-size: 12px;
    }

    .hse-word-wrap {
        top: 145px;
        height: 145px;
    }

    .hse-word {
        font-size: 140px;
    }

    .hse-copy {
        padding-top: 155px;
    }

    .hse-eyebrow {
        font-size: 9px;

        letter-spacing: 2px;
    }

    .hse-copy h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .hse-copy > p {
        font-size: 11px;
        line-height: 1.6;
    }

    .hse-buttons {
        gap: 10px;
    }

    .btn-primary,
    .btn-outline {
        min-height: 48px;

        padding: 0 15px;

        font-size: 9px;
    }

    .safety-card {
        top: 490px;

        width: 100%;

        max-width: 300px;
    }

    .hazard-card {
        top: 675px;

        width: 100%;
        max-width: 300px;
    }

    .hse-architecture,
    .operate-section,
    .performance-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .architecture-grid,
    .operate-grid,
    .performance-grid {
        grid-template-columns: 1fr;
    }

    .performance-item {
        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .performance-item:last-child {
        border-bottom: none;
    }

    .hse-cta {
        width: calc(100% - 35px);

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

        gap: 25px;
    }

    .cta-buttons {
        flex-wrap: wrap;
    }

    .hse-footer {
        grid-template-columns: 1fr 1fr;

        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

}
/* =========================================================
   HERO IMAGE — CONTAINED, NOT FULL HERO BACKGROUND
========================================================= */

.hse-bg {
    position: absolute;

    /* Start below the navigation */
    top: 145px;
    right: 0;
    bottom: 105px;
    left: 0;

    width: 100%;
    height: auto;

    background-image: url("../images/hse-hero.jpg");
    background-repeat: no-repeat;

    /*
       IMPORTANT:
       Do not make the image cover the entire hero.
    */
    background-size: 78% 100%;
    background-position: right center;

    z-index: 0;
}


/* =========================================================
   IMAGE BLENDING
========================================================= */

.hse-overlay {
    position: absolute;

    top: 145px;
    right: 0;
    bottom: 105px;
    left: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            #020202 0%,
            rgba(2, 2, 2, .96) 18%,
            rgba(2, 2, 2, .72) 38%,
            rgba(2, 2, 2, .28) 65%,
            rgba(2, 2, 2, .08) 100%
        );
}


/* Remove the old full-section bottom fade */

.hse-overlay::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 65%,
            rgba(0, 0, 0, .35) 85%,
            rgba(0, 0, 0, .8) 100%
        );
}
/* =========================================================
   HERO POSITION — MOVE CONTENT UP
========================================================= */

@media (min-width: 851px) {

    /* Move the large HSE lettering upward */
    .hse-word-wrap {
        top: 150px;
    }

    /* Move the main text block upward */
    .hse-copy {
        padding-top: 180px;
    }

    /* Move the safety card upward */
    .safety-card {
        top: 215px;
    }

    /* Move the hazard card upward */
    .hazard-card {
        top: 545px;
    }
}
/* =========================================================
   HSE NAVBAR — FULL SITE-SCALE VERSION
========================================================= */

@media (min-width: 851px) {

    .hse-nav {
        top: 18px;
        left: 36px;
        right: 36px;

        height: 88px;

        padding: 0 26px;

        border-radius: 25px;
    }


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

    .hse-logo {
        gap: 15px;
        min-width: 260px;
    }

    .logo-dots {
        width: 42px;

        grid-template-columns: repeat(3, 9px);
        gap: 5px;
    }

    .logo-dots i {
        width: 9px;
        height: 9px;
    }

    .logo-text strong {
        font-size: 23px;
        line-height: 1;
        letter-spacing: -0.7px;
    }

    .logo-text small {
        margin-top: 5px;

        font-size: 7px;
        letter-spacing: 1.3px;
    }


    /* =========================
       NAVIGATION
    ========================= */

    .hse-menu {
        gap: 34px;
    }

    .hse-menu a {
        font-size: 10px;
        font-weight: 600;
    }

    .hse-menu a.active::after {
        bottom: -29px;
        height: 3px;
    }


    /* =========================
       GET IN TOUCH
    ========================= */

    .nav-contact {
        min-width: 170px;
        height: 58px;

        padding: 0 22px;

        border-radius: 12px;

        font-size: 10px;
        font-weight: 800;
    }

    .nav-contact span {
        font-size: 19px;
    }
}
/* =========================================================
   HSE POLISH PASS — SAFE OVERRIDES
   Keeps the existing HTML and design, only refines layout.
========================================================= */

:root {
    --hse-orange: #ff7900;
    --hse-black: #020202;
    --hse-panel: #0b0b0b;
    --hse-container: 1280px;
}

/* -------------------------
   DESKTOP FOUNDATION
------------------------- */
@media (min-width: 851px) {

    .hse-hero {
        min-height: 850px;
    }

    /* Keep the site-wide navbar scale, but make it breathe */
    .hse-nav {
        top: 18px;
        left: 36px;
        right: 36px;
        height: 88px;
        padding: 0 26px;
        border-radius: 25px;
    }

    .hse-logo {
        min-width: 245px;
        gap: 14px;
    }

    .logo-dots {
        width: 38px;
        grid-template-columns: repeat(3, 8px);
        gap: 5px;
    }

    .logo-dots i {
        width: 8px;
        height: 8px;
    }

    .logo-text strong {
        font-size: 20px;
        letter-spacing: -.5px;
    }

    .hse-menu {
        gap: 27px;
    }

    .hse-menu a {
        font-size: 9px;
    }

    .nav-contact {
        min-width: 158px;
        height: 56px;
        font-size: 9px;
    }

    /* HERO IMAGE: start directly below nav */
    .hse-bg {
        top: 106px;
        bottom: 104px;
        background-size: 78% 100%;
        background-position: right center;
    }

    .hse-overlay {
        top: 106px;
        bottom: 104px;
    }

    /* One clean content grid */
    .hse-content {
        width: min(var(--hse-container), calc(100% - 100px));
        min-height: 746px;
        padding-top: 0;
    }

    /* HSE sits high and behind the copy */
    .hse-word-wrap {
        top: 125px;
        left: 0;
        width: 650px;
        height: 265px;
    }

    .hse-word {
        font-size: 285px;
    }

    /* Main copy: deliberately aligned beneath HSE */
    .hse-copy {
        width: 590px;
        padding-top: 370px;
    }

    .hse-eyebrow {
        margin-bottom: 15px;
        font-size: 12px;
        letter-spacing: 4px;
    }

    .hse-copy h1 {
        max-width: 590px;
        font-size: 58px;
        line-height: .98;
        letter-spacing: -2.6px;
    }

    .hse-copy > p {
        width: 525px;
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.7;
    }

    .hse-buttons {
        gap: 16px;
        margin-top: 27px;
    }

    .btn-primary,
    .btn-outline {
        min-height: 55px;
        padding: 0 25px;
        font-size: 11px;
    }

    /* Right-side cards form one clean vertical column */
    .safety-card {
        top: 175px;
        right: 70px;
        width: 335px;
    }

    .hazard-card {
        top: 510px;
        right: 70px;
        width: 335px;
    }

    /* Values line up with the same page width */
    .hse-values {
        min-height: 104px;
        padding: 0 max(50px, calc((100% - var(--hse-container)) / 2));
    }

    .value-item {
        padding: 0 25px;
    }

    /* -------------------------
       SECTION RHYTHM
    ------------------------- */
    .hse-architecture {
        padding: 105px 45px 105px;
    }

    .operate-section {
        padding: 95px 45px 105px;
    }

    .performance-section {
        padding: 90px 45px 100px;
    }

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

    .section-heading h2 {
        font-size: 38px;
        line-height: 1.08;
    }

    .section-heading p {
        max-width: 680px;
        font-size: 11px;
        line-height: 1.75;
    }

    /* Architecture cards */
    .architecture-grid {
        width: min(var(--hse-container), 100%);
        margin: 43px auto 0;
        gap: 14px;
    }

    .architecture-card {
        min-height: 168px;
        padding: 22px;
    }

    .architecture-card h3 {
        font-size: 13px;
    }

    .architecture-card p {
        margin-top: 9px;
        font-size: 9px;
        line-height: 1.75;
    }

    /* Operation cards */
    .operate-grid {
        width: min(var(--hse-container), 100%);
        margin: 43px auto 0;
        gap: 16px;
        align-items: stretch;
    }

    .operate-box {
        padding: 20px 27px;
    }

    .operate-row {
        padding: 16px 0;
    }

    .operate-row strong {
        font-size: 10px;
    }

    .operate-row p {
        font-size: 8px;
        line-height: 1.7;
    }

    .control-row {
        padding: 14px 0;
    }

    .control-row strong {
        font-size: 9px;
    }

    .control-row p {
        font-size: 8px;
        line-height: 1.65;
    }

    /* Performance */
    .performance-grid {
        width: min(var(--hse-container), 100%);
        margin: 40px auto 0;
    }

    .performance-item {
        min-height: 125px;
    }

    .performance-item strong {
        font-size: 23px;
    }

    /* CTA */
    .hse-cta {
        width: min(var(--hse-container), calc(100% - 100px));
        padding: 29px 32px;
        margin-bottom: 80px;
    }

    .hse-cta h2 {
        font-size: 19px;
    }

    /* Footer */
    .hse-footer {
        padding: 55px max(45px, calc((100% - var(--hse-container)) / 2)) 22px;
        gap: 55px;
    }
}

/* -------------------------
   TABLET
------------------------- */
@media (min-width: 851px) and (max-width: 1200px) {
    .hse-nav {
        left: 24px;
        right: 24px;
        padding: 0 20px;
    }

    .hse-logo {
        min-width: 200px;
    }

    .hse-menu {
        gap: 16px;
    }

    .hse-menu a {
        font-size: 8px;
    }

    .nav-contact {
        min-width: 135px;
    }

    .hse-content {
        width: calc(100% - 70px);
    }

    .hse-word-wrap {
        width: 560px;
    }

    .hse-word {
        font-size: 245px;
    }

    .hse-copy {
        width: 52%;
        padding-top: 350px;
    }

    .hse-copy h1 {
        font-size: 50px;
    }

    .safety-card,
    .hazard-card {
        right: 20px;
    }

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

/* -------------------------
   MOBILE
------------------------- */
@media (max-width: 850px) {
    .hse-bg {
        top: 78px;
        bottom: 0;
        background-size: cover;
        background-position: 62% center;
    }

    .hse-overlay {
        top: 78px;
        bottom: 0;
        background:
            linear-gradient(
                90deg,
                rgba(2,2,2,.98) 0%,
                rgba(2,2,2,.82) 50%,
                rgba(2,2,2,.35) 100%
            );
    }

    .hse-content {
        padding-top: 0;
    }

    .hse-word-wrap {
        top: 115px;
    }

    .hse-copy {
        padding-top: 275px;
    }

    .architecture-card {
        min-height: 155px;
    }

    .operate-box {
        padding: 18px 22px;
    }
}

@media (max-width: 600px) {
    .hse-word-wrap {
        top: 105px;
        height: 145px;
    }

    .hse-word {
        font-size: 140px;
    }

    .hse-copy {
        padding-top: 235px;
    }

    .hse-copy h1 {
        font-size: 34px;
    }

    .safety-card {
        top: 475px;
    }

    .hazard-card {
        top: 655px;
    }
}
/* =========================================================
   HSE PAGE — LOWER SECTIONS TYPOGRAPHY & SPACING POLISH
========================================================= */


/* =========================================================
   1. SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 820px;
}

.section-heading > span {
    font-size: 10px;
    letter-spacing: 4px;
}

.section-heading h2 {
    margin-top: 14px;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.section-heading p {
    max-width: 720px;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.75;
    color: #858585;
}


/* =========================================================
   2. HSE ARCHITECTURE
========================================================= */

.hse-architecture {
    padding-top: 125px;
    padding-bottom: 130px;
}

.architecture-grid {
    width: min(1280px, 100%);
    margin-top: 55px;
    gap: 16px;
}

.architecture-card {
    min-height: 190px;
    padding: 26px;
    border-radius: 10px;
}

.card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
    font-size: 12px;
}

.architecture-card h3 {
    font-size: 15px;
    line-height: 1.3;
}

.architecture-card p {
    margin-top: 11px;
    max-width: 250px;
    color: #808080;
    font-size: 10px;
    line-height: 1.75;
}


/* =========================================================
   3. HOW WE OPERATE
========================================================= */

.operate-section {
    padding-top: 125px;
    padding-bottom: 130px;
}

.operate-grid {
    width: min(1280px, 100%);
    margin-top: 55px;
    gap: 18px;
}

.operate-box {
    padding: 24px 30px;
    border-radius: 10px;
}

.operate-row {
    gap: 18px;
    padding: 18px 0;
}

.operate-row > i {
    width: 24px;
    flex: 0 0 24px;
    font-size: 12px;
}

.operate-row strong {
    font-size: 12px;
    line-height: 1.4;
}

.operate-row p {
    margin-top: 6px;
    color: #737373;
    font-size: 9px;
    line-height: 1.7;
}


/* =========================================================
   4. OPERATIONAL CONTROL
========================================================= */

.control-title {
    margin-bottom: 12px;
    font-size: 8px;
    letter-spacing: 3.5px;
}

.control-row {
    gap: 15px;
    padding: 15px 0;
}

.control-row > span {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    font-size: 8px;
}

.control-row strong {
    font-size: 10px;
    line-height: 1.4;
}

.control-row p {
    margin-top: 5px;
    color: #707070;
    font-size: 9px;
    line-height: 1.65;
}


/* =========================================================
   5. PERFORMANCE
========================================================= */

.performance-section {
    padding-top: 120px;
    padding-bottom: 125px;
}

.performance-grid {
    width: min(1280px, 100%);
    margin-top: 52px;
    border-radius: 10px;
}

.performance-item {
    min-height: 145px;
}

.performance-item i {
    font-size: 13px;
}

.performance-item strong {
    margin-top: 8px;
    font-size: 28px;
}

.performance-item span {
    margin-top: 6px;
    font-size: 9px;
    letter-spacing: .3px;
}

.performance-item small {
    margin-top: 5px;
    color: #606060;
    font-size: 8px;
}


/* =========================================================
   6. CTA
========================================================= */

.hse-cta {
    width: min(1280px, calc(100% - 100px));
    margin-bottom: 100px;
    padding: 32px 36px;
    border-radius: 10px;
}

.hse-cta > div:first-child > span {
    font-size: 8px;
    letter-spacing: 3.5px;
}

.hse-cta h2 {
    margin-top: 7px;
    font-size: 22px;
    line-height: 1.2;
}

.hse-cta p {
    max-width: 720px;
    margin-top: 9px;
    color: #707070;
    font-size: 10px;
    line-height: 1.7;
}

.cta-buttons {
    gap: 10px;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-outline {
    min-height: 48px;
    padding: 0 21px;
    font-size: 8px;
}


/* =========================================================
   7. FOOTER
========================================================= */

.hse-footer {
    padding-top: 65px;
    padding-bottom: 25px;
    gap: 60px;
}

.footer-brand h3 {
    font-size: 20px;
}

.footer-brand small {
    font-size: 7px;
    letter-spacing: 1.2px;
}

.footer-brand p {
    max-width: 330px;
    margin-top: 17px;
    color: #5f5f5f;
    font-size: 9px;
    line-height: 1.8;
}

.footer-column {
    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 9px;
    font-size: 8px;
    letter-spacing: 3px;
}

.footer-column a,
.footer-column p,
.footer-column span {
    font-size: 8px;
}

.footer-column span {
    margin-top: 6px;
    font-size: 7px;
}

.footer-bottom {
    margin-top: 25px;
    padding-top: 20px;
    font-size: 7px;
}


/* =========================================================
   8. DESKTOP SECTION WIDTH CONSISTENCY
========================================================= */

@media (min-width: 1201px) {

    .architecture-grid,
    .operate-grid,
    .performance-grid {
        width: min(1280px, calc(100% - 20px));
    }

    .hse-cta {
        width: min(1280px, calc(100% - 100px));
    }

}


/* =========================================================
   9. TABLET
========================================================= */

@media (max-width: 1200px) and (min-width: 851px) {

    .section-heading h2 {
        font-size: 37px;
    }

    .section-heading p {
        font-size: 12px;
    }

    .architecture-card h3 {
        font-size: 14px;
    }

    .architecture-card p {
        font-size: 9px;
    }

    .operate-row strong {
        font-size: 11px;
    }

    .operate-row p,
    .control-row p {
        font-size: 8px;
    }

    .performance-item strong {
        font-size: 25px;
    }

}


/* =========================================================
   10. MOBILE — KEEP IT READABLE
========================================================= */

@media (max-width: 850px) {

    .hse-architecture,
    .operate-section,
    .performance-section {
        padding-top: 85px;
        padding-bottom: 90px;
    }

    .section-heading > span {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .section-heading h2 {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .section-heading p {
        margin-top: 14px;
        font-size: 11px;
        line-height: 1.7;
    }

    .architecture-grid,
    .operate-grid {
        margin-top: 35px;
    }

    .architecture-card {
        min-height: auto;
        padding: 22px;
    }

    .architecture-card h3 {
        font-size: 14px;
    }

    .architecture-card p {
        max-width: none;
        font-size: 10px;
    }

    .operate-box {
        padding: 20px 22px;
    }

    .operate-row {
        padding: 16px 0;
    }

    .operate-row strong {
        font-size: 11px;
    }

    .operate-row p,
    .control-row p {
        font-size: 9px;
    }

    .performance-grid {
        margin-top: 35px;
    }

    .performance-item {
        min-height: 120px;
    }

    .performance-item strong {
        font-size: 25px;
    }

    .hse-cta {
        margin-bottom: 60px;
    }

    .hse-cta h2 {
        font-size: 19px;
    }

    .hse-cta p {
        font-size: 9px;
    }

    .footer-brand p {
        font-size: 8px;
    }

    .footer-column a,
    .footer-column p,
    .footer-column span {
        font-size: 8px;
    }
}


/* =========================================================
   11. SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .section-heading h2 {
        font-size: 27px;
    }

    .section-heading p {
        font-size: 10px;
    }

    .architecture-card h3 {
        font-size: 13px;
    }

    .architecture-card p {
        font-size: 9px;
    }

    .operate-row strong {
        font-size: 10px;
    }

    .operate-row p,
    .control-row p {
        font-size: 8px;
    }

    .performance-item strong {
        font-size: 23px;
    }

    .hse-cta h2 {
        font-size: 18px;
    }
}
/* =========================================================
   FINAL HSE VISUAL POLISH
   LOWER SECTIONS — SCALE + RHYTHM
========================================================= */


/* =========================================================
   SECTION RHYTHM
========================================================= */

.hse-architecture {
    padding-top: 95px;
    padding-bottom: 95px;
}

.operate-section {
    padding-top: 95px;
    padding-bottom: 95px;
}

.performance-section {
    padding-top: 90px;
    padding-bottom: 90px;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 850px;
}

.section-heading > span {
    font-size: 10px;
    letter-spacing: 4px;
}

.section-heading h2 {
    margin-top: 12px;
    font-size: 39px;
    line-height: 1.08;
    letter-spacing: -1.6px;
}

.section-heading p {
    max-width: 700px;
    margin-top: 15px;
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   ARCHITECTURE CARDS
========================================================= */

.architecture-grid {
    width: min(1280px, calc(100% - 20px));
    margin-top: 42px;
    gap: 14px;
}

.architecture-card {
    min-height: 170px;
    padding: 23px;
}

.card-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
}

.architecture-card h3 {
    font-size: 13px;
}

.architecture-card p {
    margin-top: 9px;
    max-width: 270px;
    font-size: 9px;
    line-height: 1.7;
}


/* =========================================================
   HOW WE OPERATE — MAKE THE PANELS STRONGER
========================================================= */

.operate-grid {
    width: min(1280px, calc(100% - 20px));
    margin-top: 42px;
    gap: 16px;
}

.operate-box {
    min-height: 275px;
    padding: 20px 28px;
}

.operate-row {
    padding: 16px 0;
    gap: 16px;
}

.operate-row > i {
    width: 22px;
    flex: 0 0 22px;
    font-size: 11px;
}

.operate-row strong {
    font-size: 10px;
}

.operate-row p {
    margin-top: 5px;
    font-size: 8px;
    line-height: 1.65;
}


/* =========================================================
   OPERATIONAL CONTROL
========================================================= */

.control-title {
    margin-bottom: 5px;
    font-size: 7px;
    letter-spacing: 3px;
}

.control-row {
    padding: 15px 0;
    gap: 13px;
}

.control-row > span {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
}

.control-row strong {
    font-size: 9px;
}

.control-row p {
    margin-top: 4px;
    font-size: 8px;
    line-height: 1.6;
}


/* =========================================================
   PERFORMANCE — MORE VISUAL WEIGHT
========================================================= */

.performance-grid {
    width: min(1280px, calc(100% - 20px));
    margin-top: 40px;
}

.performance-item {
    min-height: 130px;
}

.performance-item i {
    font-size: 12px;
}

.performance-item strong {
    margin-top: 7px;
    font-size: 26px;
}

.performance-item span {
    margin-top: 5px;
    font-size: 8px;
}

.performance-item small {
    margin-top: 4px;
    font-size: 7px;
}


/* =========================================================
   CTA — STRONGER PRESENCE
========================================================= */

.hse-cta {
    width: min(1280px, calc(100% - 100px));
    margin-bottom: 80px;
    padding: 28px 32px;
}

.hse-cta h2 {
    font-size: 20px;
}

.hse-cta p {
    max-width: 700px;
    font-size: 9px;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-outline {
    min-height: 46px;
    font-size: 8px;
}


/* =========================================================
   FOOTER — CLEANER + MORE LEGIBLE
========================================================= */

.hse-footer {
    padding-top: 48px;
    padding-bottom: 20px;
    gap: 45px;
}

.footer-brand h3 {
    font-size: 18px;
}

.footer-brand p {
    max-width: 320px;
    font-size: 8px;
    line-height: 1.75;
}

.footer-column {
    gap: 8px;
}

.footer-column h4 {
    font-size: 7px;
    letter-spacing: 2.5px;
}

.footer-column a,
.footer-column p,
.footer-column span {
    font-size: 7px;
}

.footer-bottom {
    margin-top: 15px;
    padding-top: 15px;
    font-size: 6px;
}


/* =========================================================
   DESKTOP — KEEP EVERYTHING VISUALLY ALIGNED
========================================================= */

@media (min-width: 1201px) {

    .architecture-grid,
    .operate-grid,
    .performance-grid {
        transform: translateX(0);
    }

    .architecture-card,
    .operate-box,
    .performance-grid,
    .hse-cta {
        box-shadow: 0 10px 35px rgba(0,0,0,.18);
    }

}


/* =========================================================
   SUBTLE SECTION SEPARATION
========================================================= */

.hse-architecture,
.operate-section,
.performance-section {
    position: relative;
}

.hse-architecture::before,
.operate-section::before,
.performance-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1280px, calc(100% - 100px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,121,0,.12),
        transparent
    );
    pointer-events: none;
}


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

@media (max-width: 850px) {

    .hse-architecture,
    .operate-section,
    .performance-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .architecture-card {
        min-height: auto;
    }

    .operate-box {
        min-height: auto;
    }

    .performance-item {
        min-height: 115px;
    }

    .hse-cta {
        width: calc(100% - 35px);
        margin-bottom: 60px;
    }

    .hse-footer {
        padding-top: 42px;
    }

}
/* =========================================================
   HSE ARCHITECTURE — FINAL POLISH
========================================================= */

.hse-architecture {
    padding-top: 100px;
    padding-bottom: 105px;
}

.hse-architecture .section-heading {
    max-width: 850px;
}

.hse-architecture .section-heading > span {
    font-size: 10px;
    letter-spacing: 4px;
}

.hse-architecture .section-heading h2 {
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.hse-architecture .section-heading p {
    max-width: 720px;
    margin-top: 17px;
    font-size: 12px;
    line-height: 1.7;
}


/* ---------- CARD GRID ---------- */

.hse-architecture .architecture-grid {
    width: min(1280px, calc(100% - 20px));
    margin-top: 48px;
    gap: 15px;
}


/* ---------- CARDS ---------- */

.hse-architecture .architecture-card {
    min-height: 185px;
    padding: 25px 24px;

    background:
        linear-gradient(
            145deg,
            #101010 0%,
            #0a0a0a 100%
        );

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.22);

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


/* ---------- ICON ---------- */

.hse-architecture .architecture-card .card-icon {
    width: 36px;
    height: 36px;

    margin-bottom: 18px;

    border: 1px solid rgba(255,121,0,.75);
    border-radius: 50%;

    color: #ff7900;
    font-size: 12px;

    box-shadow:
        0 0 12px rgba(255,121,0,.08);
}


/* ---------- TITLE ---------- */

.hse-architecture .architecture-card h3 {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}


/* ---------- DESCRIPTION ---------- */

.hse-architecture .architecture-card p {
    max-width: 270px;

    margin-top: 10px;

    color: #858585;

    font-size: 10px;
    line-height: 1.75;
}


/* ---------- HOVER ---------- */

.hse-architecture .architecture-card:hover {
    transform: translateY(-5px);

    border-color: rgba(255,121,0,.42);

    box-shadow:
        0 18px 40px rgba(0,0,0,.35),
        0 0 25px rgba(255,121,0,.04);
}


/* =========================================================
   ARCHITECTURE — MOBILE
========================================================= */

@media (max-width: 850px) {

    .hse-architecture {
        padding-top: 75px;
        padding-bottom: 80px;
    }

    .hse-architecture .section-heading h2 {
        font-size: 31px;
    }

    .hse-architecture .section-heading p {
        font-size: 11px;
    }

    .hse-architecture .architecture-grid {
        width: 100%;
        margin-top: 35px;
    }

    .hse-architecture .architecture-card {
        min-height: auto;
        padding: 23px;
    }

    .hse-architecture .architecture-card h3 {
        font-size: 14px;
    }

    .hse-architecture .architecture-card p {
        max-width: none;
        font-size: 10px;
    }
}
/* =========================================================
   HOW WE OPERATE — PREMIUM SECTION POLISH
========================================================= */

.operate-section {
    padding-top: 85px;
    padding-bottom: 100px;
}


/* =========================================================
   SECTION INTRO
========================================================= */

.operate-section .section-heading {
    max-width: 850px;
}

.operate-section .section-heading > span {
    font-size: 10px;
    letter-spacing: 4px;
}

.operate-section .section-heading h2 {
    margin-top: 12px;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.operate-section .section-heading p {
    max-width: 720px;
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   TWO MAIN PANELS
========================================================= */

.operate-section .operate-grid {
    width: min(1280px, calc(100% - 20px));
    margin-top: 45px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}


/* =========================================================
   PANEL
========================================================= */

.operate-section .operate-box {
    min-height: 305px;

    padding: 25px 30px;

    background:
        linear-gradient(
            145deg,
            #101010 0%,
            #090909 100%
        );

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.22);

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

.operate-section .operate-box:hover {
    border-color: rgba(255,121,0,.30);

    box-shadow:
        0 20px 50px rgba(0,0,0,.35);
}


/* =========================================================
   LEFT — OPERATING PRINCIPLES
========================================================= */

.operate-section .operate-row {
    display: flex;
    align-items: flex-start;

    gap: 17px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.07);
}

.operate-section .operate-row:last-child {
    border-bottom: none;
}


/* ICON */

.operate-section .operate-row > i {
    width: 24px;
    flex: 0 0 24px;

    padding-top: 2px;

    color: var(--orange);
    font-size: 12px;
}


/* TITLE */

.operate-section .operate-row strong {
    display: block;

    color: #f2f2f2;

    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}


/* DESCRIPTION */

.operate-section .operate-row p {
    max-width: 460px;

    margin-top: 6px;

    color: #858585;

    font-size: 9px;
    line-height: 1.7;
}


/* =========================================================
   RIGHT — OPERATIONAL CONTROL
========================================================= */

.operate-section .control-title {
    margin-bottom: 6px;

    color: #777;

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

    letter-spacing: 3px;
}


/* CONTROL ROW */

.operate-section .control-row {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    padding: 16px 0;

    border-bottom: 1px solid rgba(255,255,255,.07);
}

.operate-section .control-row:last-child {
    border-bottom: none;
}


/* NUMBER CIRCLE */

.operate-section .control-row > span {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

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

    border: 1px solid rgba(255,121,0,.55);
    border-radius: 50%;

    color: var(--orange);

    font-size: 8px;

    background: rgba(255,121,0,.025);
}


/* CONTROL TITLE */

.operate-section .control-row strong {
    display: block;

    color: #f0f0f0;

    font-size: 10px;
    line-height: 1.4;
}


/* CONTROL DESCRIPTION */

.operate-section .control-row p {
    max-width: 450px;

    margin-top: 5px;

    color: #858585;

    font-size: 9px;
    line-height: 1.65;
}


/* =========================================================
   SUBTLE ORANGE ACCENT
========================================================= */

.operate-section .operate-box::before {
    content: "";

    display: block;

    width: 42px;
    height: 2px;

    margin-bottom: 3px;

    background: var(--orange);

    opacity: .85;
}


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

@media (max-width: 1200px) and (min-width: 851px) {

    .operate-section .operate-box {
        padding: 23px;
    }

    .operate-section .operate-row strong {
        font-size: 11px;
    }

    .operate-section .operate-row p,
    .operate-section .control-row p {
        font-size: 8px;
    }
}


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

@media (max-width: 850px) {

    .operate-section {
        padding-top: 75px;
        padding-bottom: 80px;
    }

    .operate-section .section-heading h2 {
        font-size: 31px;
    }

    .operate-section .section-heading p {
        font-size: 11px;
    }

    .operate-section .operate-grid {
        width: 100%;
        margin-top: 35px;

        grid-template-columns: 1fr;
    }

    .operate-section .operate-box {
        min-height: auto;
        padding: 22px;
    }

    .operate-section .operate-row {
        padding: 17px 0;
    }

    .operate-section .operate-row strong {
        font-size: 11px;
    }

    .operate-section .operate-row p,
    .operate-section .control-row p {
        font-size: 9px;
    }
}
/* =========================================================
   HSE NAVBAR — MATCH COMPLIANCE NAVBAR EXACTLY
   ========================================================= */

@media (min-width: 851px) {

    /* =====================================================
       NAVBAR SHELL
       ===================================================== */

    .hse-nav {
        top: 14px;
        left: 18px;
        right: 18px;

        width: auto;
        height: 62px;

        padding: 0 12px 0 20px;

        border-radius: 17px;

        background:
            linear-gradient(
                120deg,
                rgba(8, 8, 8, .98),
                rgba(2, 2, 2, .96)
            );

        border: 1px solid rgba(255,255,255,.12);

        box-shadow:
            0 15px 50px rgba(0,0,0,.7),
            inset 0 1px 0 rgba(255,255,255,.035);

        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);

        z-index: 1000;
    }


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

    .hse-logo {
        gap: 13px;
        min-width: 190px;
    }

    .logo-dots {
        width: 28px;

        grid-template-columns: repeat(3, 6px);
        gap: 4px;
    }

    .logo-dots i {
        width: 6px;
        height: 6px;

        border-radius: 50%;

        background: #ff7800;

        box-shadow:
            0 0 8px rgba(255,120,0,.25);
    }

    .logo-text strong {
        font-size: 18px;
        font-weight: 800;

        line-height: 1;

        letter-spacing: -.7px;
    }

    .logo-text small {
        margin-top: 4px;

        font-size: 6px;
        letter-spacing: 2px;
    }


    /* =====================================================
       NAVIGATION
       ===================================================== */

    .hse-menu {
        display: flex;
        align-items: stretch;
        justify-content: center;

        flex: 1;

        height: 62px;

        gap: 0;
    }

    .hse-menu a {
        position: relative;

        display: flex;
        align-items: center;

        padding: 0 14px;

        color: #bcbcbc;

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

        white-space: nowrap;

        transition:
            color .25s ease,
            background .25s ease;
    }

    .hse-menu a:hover {
        color: #fff;

        background: rgba(255,120,0,.035);
    }

    .hse-menu a.active {
        color: #ff7800;

        background: rgba(255,120,0,.07);
    }


    /* =====================================================
       ACTIVE ORANGE UNDERLINE
       ===================================================== */

    .hse-menu a.active::after {
        content: "";

        position: absolute;

        bottom: 0;
        left: 50%;

        width: 28px;
        height: 3px;

        transform: translateX(-50%);

        background: #ff7800;

        border-radius: 3px 3px 0 0;

        box-shadow: none;
    }


    /* =====================================================
       GET IN TOUCH
       ===================================================== */

    .nav-contact {
        flex-shrink: 0;

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

        gap: 13px;

        min-width: 150px;
        height: 46px;

        padding: 0 20px;

        border-radius: 11px;

        background: #ff7800;
        color: #050505;

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

        box-shadow:
            0 8px 25px rgba(255,120,0,.16);

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

    .nav-contact:hover {
        background: #ff8b1a;

        transform: translateY(-2px);

        box-shadow:
            0 12px 35px rgba(255,120,0,.28);
    }

    .nav-contact span {
        font-size: inherit;
    }
}
/* =========================================================
   HSE HERO — INTERACTIVE ELEMENTS ONLY
   NO LAYOUT / POSITION CHANGES
========================================================= */


/* =========================================================
   1. VIEW HSE MANUAL BUTTON
========================================================= */

.hse-buttons .btn-primary {
    position: relative;
    overflow: hidden;

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


/* subtle light sweep */
.hse-buttons .btn-primary::before {
    content: "";

    position: absolute;
    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        100deg,
        transparent,
        rgba(255,255,255,.20),
        transparent
    );

    transform: skewX(-20deg);

    transition: left .55s ease;

    pointer-events: none;
}


.hse-buttons .btn-primary:hover {
    transform: translateY(-3px);

    background: #ff8a1a;

    box-shadow:
        0 10px 28px rgba(255,121,0,.25);
}


.hse-buttons .btn-primary:hover::before {
    left: 140%;
}


/* arrow reacts */
.hse-buttons .btn-primary i,
.hse-buttons .btn-primary span {
    transition: transform .25s ease;
}

.hse-buttons .btn-primary:hover i:last-child,
.hse-buttons .btn-primary:hover span:last-child {
    transform: translateX(4px);
}


/* =========================================================
   2. DOWNLOAD POLICY BUTTON
========================================================= */

.hse-buttons .btn-outline {
    position: relative;
    overflow: hidden;

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


.hse-buttons .btn-outline:hover {
    transform: translateY(-3px);

    border-color: #ff7900;

    background: rgba(255,121,0,.07);

    box-shadow:
        0 8px 24px rgba(255,121,0,.10);
}


/* icon reacts slightly */
.hse-buttons .btn-outline i {
    transition:
        transform .25s ease,
        color .25s ease;
}

.hse-buttons .btn-outline:hover i {
    transform: translateY(-2px);

    color: #ff7900;
}


/* =========================================================
   3. SAFETY ACTIVE CARD
========================================================= */

.safety-card {
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        background-color .3s ease;
}


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

    border-color: rgba(255,121,0,.42);

    background:
        linear-gradient(
            145deg,
            rgba(24,24,24,.97),
            rgba(10,10,10,.96)
        );

    box-shadow:
        0 22px 50px rgba(0,0,0,.55),
        0 0 28px rgba(255,121,0,.07);
}


/* =========================================================
   4. SAFETY ACTIVE INDICATOR
========================================================= */

.safety-card .status-dot {
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.safety-card:hover .status-dot {
    transform: scale(1.25);

    box-shadow:
        0 0 0 5px rgba(0,255,128,.08),
        0 0 12px rgba(0,255,128,.65);
}


/* =========================================================
   5. 99.0% SCORE
========================================================= */

.safety-card .score {
    transition:
        color .3s ease,
        transform .3s ease;
}


.safety-card:hover .score {
    color: #ff8a1a;

    transform: scale(1.025);
    transform-origin: left center;
}


/* =========================================================
   6. SAFETY METRIC ROWS
========================================================= */

.safety-card .score-item {
    position: relative;

    transition:
        background-color .25s ease,
        padding-left .25s ease;
}


.safety-card .score-item:hover {
    background: rgba(255,121,0,.025);

    border-radius: 5px;
}


/* labels brighten */
.safety-card .score-item:hover .score-label {
    color: #ffffff;
}


/* percentage reacts */
.safety-card .score-item strong {
    transition:
        color .25s ease,
        transform .25s ease;
}

.safety-card .score-item:hover strong {
    color: #ff7900;

    transform: translateX(-2px);
}


/* =========================================================
   7. SCORE BARS
========================================================= */

.safety-card .score-bar {
    overflow: hidden;
}


.safety-card .score-bar span {
    position: relative;

    transition:
        filter .3s ease,
        box-shadow .3s ease;
}


/* glowing highlight travelling through bar */
.safety-card .score-bar span::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 45px;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.30),
        transparent
    );

    opacity: 0;

    transition: opacity .3s ease;
}


.safety-card .score-item:hover .score-bar span {
    filter: brightness(1.15);

    box-shadow:
        0 0 8px rgba(255,121,0,.25);
}


.safety-card .score-item:hover .score-bar span::after {
    opacity: 1;
}


/* =========================================================
   8. HAZARD RESPONSE CARD
========================================================= */

.hazard-card {
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        background-color .3s ease;
}


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

    border-color: rgba(255,121,0,.45);

    background:
        linear-gradient(
            145deg,
            rgba(25,25,25,.97),
            rgba(10,10,10,.96)
        );

    box-shadow:
        0 20px 45px rgba(0,0,0,.55),
        0 0 30px rgba(255,121,0,.08);
}


/* =========================================================
   9. HAZARD ICON
========================================================= */

.hazard-card i {
    transition:
        transform .3s ease,
        filter .3s ease;
}


.hazard-card:hover i {
    transform:
        scale(1.08)
        rotate(-4deg);

    filter:
        drop-shadow(0 0 8px rgba(255,121,0,.35));
}


/* =========================================================
   10. HAZARD TITLE
========================================================= */

.hazard-card strong {
    transition:
        color .25s ease,
        transform .25s ease;
}


.hazard-card:hover strong {
    color: #ff7900;

    transform: translateX(3px);
}


/* =========================================================
   11. HAZARD DESCRIPTION
========================================================= */

.hazard-card p {
    transition: color .25s ease;
}


.hazard-card:hover p {
    color: #b5b5b5;
}


/* =========================================================
   12. TOUCH DEVICES
   Don't force hover-style behavior on mobile
========================================================= */

@media (hover: none) {

    .hse-buttons .btn-primary:hover,
    .hse-buttons .btn-outline:hover,
    .safety-card:hover,
    .hazard-card:hover {
        transform: none;
    }

    .safety-card .score-item:hover {
        background: transparent;
    }

}
/* =========================================================
   HSE HERO VALUES — INTERACTIVE POLISH
   ZERO HARM / PEOPLE FIRST / ENVIRONMENTAL CARE / COMPLIANCE
   NO LAYOUT CHANGES
========================================================= */

.hse-values .value-item {
    position: relative;
    isolation: isolate;

    transition:
        background-color .3s ease,
        transform .3s ease;
}


/* -----------------------------------------
   SUBTLE HOVER BACKGROUND
----------------------------------------- */

.hse-values .value-item::before {
    content: "";

    position: absolute;

    inset: 8px 10px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(255,121,0,.06),
            rgba(255,121,0,.015)
        );

    opacity: 0;

    transform: scale(.96);

    transition:
        opacity .3s ease,
        transform .3s ease;

    z-index: -1;

    pointer-events: none;
}


.hse-values .value-item:hover::before {
    opacity: 1;

    transform: scale(1);
}


/* -----------------------------------------
   ICON
----------------------------------------- */

.hse-values .value-icon {
    position: relative;

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


.hse-values .value-item:hover .value-icon {
    transform:
        translateY(-4px)
        scale(1.08);

    color: #ff7900;

    background: rgba(255,121,0,.10);

    border-color: rgba(255,121,0,.75);

    box-shadow:
        0 0 0 4px rgba(255,121,0,.035),
        0 0 20px rgba(255,121,0,.16);
}


/* -----------------------------------------
   ICON INNER GLOW
----------------------------------------- */

.hse-values .value-icon::after {
    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border: 1px solid rgba(255,121,0,.35);

    opacity: 0;
    transform: scale(.75);

    transition:
        opacity .3s ease,
        transform .35s ease;
}


.hse-values .value-item:hover .value-icon::after {
    opacity: 1;

    transform: scale(1);
}


/* -----------------------------------------
   TITLE
----------------------------------------- */

.hse-values .value-item strong {
    transition:
        color .25s ease,
        transform .25s ease;
}


.hse-values .value-item:hover strong {
    color: #ff7900;

    transform: translateX(3px);
}


/* -----------------------------------------
   DESCRIPTION
----------------------------------------- */

.hse-values .value-item span {
    transition:
        color .25s ease,
        transform .25s ease;
}


.hse-values .value-item:hover span {
    color: #a5a5a5;

    transform: translateX(3px);
}


/* -----------------------------------------
   WHOLE ITEM
----------------------------------------- */

.hse-values .value-item:hover {
    transform: translateY(-2px);
}


/* -----------------------------------------
   SEPARATORS STAY SUBTLE
----------------------------------------- */

.hse-values .value-item::after {
    transition:
        background-color .3s ease,
        opacity .3s ease;
}

.hse-values .value-item:hover::after {
    background: rgba(255,121,0,.28);
}


/* =========================================================
   MOBILE / TOUCH
   Keep the strip stable on phones
========================================================= */

@media (hover: none) {

    .hse-values .value-item:hover {
        transform: none;
    }

    .hse-values .value-item:hover .value-icon {
        transform: none;

        box-shadow: none;
    }

    .hse-values .value-item:hover strong,
    .hse-values .value-item:hover span {
        transform: none;
    }

    .hse-values .value-item:hover::before {
        opacity: 0;
    }

    .hse-values .value-item:hover .value-icon::after {
        opacity: 0;
    }
}


    background: rgba(255,121,0,.12);

    box-shadow:
        0 0 18px rgba(255,121,0,.16);
}


/* -----------------------------------------
   CARD TITLES
----------------------------------------- */

.hse-architecture .architecture-card h3 {
    color: #fff;

    transition: color .25s ease;
}


.hse-architecture .architecture-card:hover h3 {
    color: #ff7900;
}


/* -----------------------------------------
   CARD TEXT
----------------------------------------- */

.hse-architecture .architecture-card p {
    color: rgba(255,255,255,.58);
}


/* =========================================================
   ORANGE ACCENT LINE
========================================================= */

.hse-architecture .architecture-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #ff7900;

    transition: width .35s ease;
}


.hse-architecture .architecture-card:hover::after {
    width: 100%;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .hse-architecture {
        background:
            linear-gradient(
                180deg,
                #b94f00,
                #8f3900
            );
    }

    .hse-architecture .architecture-card:hover {
        transform: translateY(-3px);
    }
}
/* =========================================================
   HSE ARCHITECTURE — PREMIUM POLISH
   CSS ONLY — NO HTML CHANGES
========================================================= */

/* ---------------------------------------------------------
   SECTION
--------------------------------------------------------- */

.hse-architecture {
    position: relative;
    overflow: hidden;

    padding-top: 115px;
    padding-bottom: 125px;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(255, 121, 0, .055),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #030303 0%,
            #070707 50%,
            #030303 100%
        );

    border-top: 1px solid rgba(255, 121, 0, .20);
    border-bottom: 1px solid rgba(255, 121, 0, .20);
}


/* =========================================================
   TOP / BOTTOM ORANGE ARCHITECTURAL DIVIDER
========================================================= */

.hse-architecture::before,
.hse-architecture::after {
    content: "";

    position: absolute;

    left: 0;
    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,121,0,.15) 8%,
            #ff7900 35%,
            #ff7900 65%,
            rgba(255,121,0,.15) 92%,
            transparent 100%
        );

    box-shadow:
        0 0 10px rgba(255,121,0,.18);

    pointer-events: none;
}


/* top divider */

.hse-architecture::before {
    top: 0;
}


/* bottom divider */

.hse-architecture::after {
    bottom: 0;
}


/* ---------------------------------------------------------
   CENTER NOTCH
   Uses the section background to cut into the line
--------------------------------------------------------- */

.hse-architecture .section-heading::before {
    content: "";

    position: absolute;

    top: -116px;
    left: 50%;

    width: 42px;
    height: 22px;

    transform:
        translateX(-50%)
        rotate(45deg);

    background: #030303;

    border-right: 1px solid #ff7900;
    border-bottom: 1px solid #ff7900;

    box-shadow:
        4px 4px 10px rgba(255,121,0,.08);

    pointer-events: none;
}


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

.hse-architecture .section-heading {
    position: relative;

    max-width: 900px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


/* eyebrow */

.hse-architecture .section-heading > span {
    display: inline-block;

    color: #ff7900;

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

    letter-spacing: 4px;

    margin-bottom: 12px;
}


/* main heading */

.hse-architecture .section-heading h2 {
    max-width: 850px;

    margin-left: auto;
    margin-right: auto;

    font-size: 43px;
    line-height: 1.08;

    letter-spacing: -1.8px;

    color: #f7f7f7;
}


/* orange heading emphasis */

.hse-architecture .section-heading h2 span {
    color: #ff7900;
}


/* description */

.hse-architecture .section-heading p {
    max-width: 720px;

    margin: 18px auto 0;

    color: #858585;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   CARD GRID
========================================================= */

.hse-architecture .architecture-grid {
    width: min(1280px, calc(100% - 40px));

    margin: 52px auto 0;

    gap: 18px;
}


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

.hse-architecture .architecture-card {
    position: relative;

    min-height: 220px;

    padding: 29px 28px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #111111 0%,
            #0b0b0b 55%,
            #080808 100%
        );

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 12px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.25);

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


/* subtle orange light inside card */

.hse-architecture .architecture-card::before {
    content: "";

    position: absolute;

    top: -80px;
    right: -80px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,121,0,.075),
            transparent 68%
        );

    opacity: .65;

    pointer-events: none;
}


/* orange bottom accent */

.hse-architecture .architecture-card::after {
    content: "";

    position: absolute;

    left: 28px;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #ff7900;

    transition: width .35s ease;
}


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

.hse-architecture .architecture-card:hover {
    transform: translateY(-7px);

    border-color: rgba(255,121,0,.48);

    box-shadow:
        0 25px 55px rgba(0,0,0,.38),
        0 0 28px rgba(255,121,0,.055);
}


.hse-architecture .architecture-card:hover::after {
    width: calc(100% - 56px);
}


/* =========================================================
   ICON
========================================================= */

.hse-architecture .architecture-card .card-icon {
    position: relative;

    width: 46px;
    height: 46px;

    margin-bottom: 25px;

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

    border: 1px solid rgba(255,121,0,.70);

    border-radius: 50%;

    color: #ff7900;

    font-size: 14px;

    background:
        rgba(255,121,0,.025);

    box-shadow:
        0 0 16px rgba(255,121,0,.07);

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


.hse-architecture .architecture-card:hover .card-icon {
    transform:
        translateY(-3px)
        scale(1.06);

    background:
        rgba(255,121,0,.08);

    border-color:
        #ff7900;

    box-shadow:
        0 0 22px rgba(255,121,0,.18);
}


/* =========================================================
   CARD TITLE
========================================================= */

.hse-architecture .architecture-card h3 {
    position: relative;
    z-index: 2;

    margin: 0;

    font-size: 16px;
    line-height: 1.35;

    font-weight: 700;

    color: #f5f5f5;

    transition: color .25s ease;
}


.hse-architecture .architecture-card:hover h3 {
    color: #ff7900;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.hse-architecture .architecture-card p {
    position: relative;
    z-index: 2;

    max-width: 280px;

    margin-top: 12px;

    color: #858585;

    font-size: 11px;

    line-height: 1.75;

    transition: color .25s ease;
}


.hse-architecture .architecture-card:hover p {
    color: #a0a0a0;
}


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

@media (max-width: 1200px) and (min-width: 851px) {

    .hse-architecture {
        padding-top: 100px;
        padding-bottom: 105px;
    }

    .hse-architecture .section-heading h2 {
        font-size: 38px;
    }

    .hse-architecture .architecture-grid {
        width: min(1100px, calc(100% - 40px));

        gap: 15px;
    }

    .hse-architecture .architecture-card {
        min-height: 205px;

        padding: 25px 22px;
    }

    .hse-architecture .architecture-card h3 {
        font-size: 14px;
    }

    .hse-architecture .architecture-card p {
        font-size: 10px;
    }
}


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

@media (max-width: 850px) {

    .hse-architecture {
        padding-top: 85px;
        padding-bottom: 90px;
    }


    .hse-architecture .section-heading::before {
        top: -86px;

        width: 34px;
        height: 18px;
    }


    .hse-architecture .section-heading > span {
        font-size: 8px;

        letter-spacing: 3px;
    }


    .hse-architecture .section-heading h2 {
        font-size: 30px;

        line-height: 1.12;

        letter-spacing: -1px;
    }


    .hse-architecture .section-heading p {
        max-width: 90%;

        margin-top: 14px;

        font-size: 11px;

        line-height: 1.7;
    }


    .hse-architecture .architecture-grid {
        width: calc(100% - 30px);

        margin-top: 35px;

        gap: 14px;
    }


    .hse-architecture .architecture-card {
        min-height: auto;

        padding: 24px;
    }


    .hse-architecture .architecture-card .card-icon {
        width: 42px;
        height: 42px;

        margin-bottom: 20px;
    }


    .hse-architecture .architecture-card h3 {
        font-size: 14px;
    }


    .hse-architecture .architecture-card p {
        max-width: none;

        font-size: 10px;
    }


    /* disable lift on touch */

    .hse-architecture .architecture-card:hover {
        transform: none;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 600px) {

    .hse-architecture {
        padding-top: 75px;
        padding-bottom: 80px;
    }


    .hse-architecture .section-heading h2 {
        font-size: 27px;
    }


    .hse-architecture .architecture-grid {
        width: calc(100% - 24px);
    }
}
/* =========================================================
   HOW WE OPERATE — PREMIUM GRAY DESIGN
   CSS ONLY — EXISTING HTML UNTOUCHED
========================================================= */

.operate-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 115px 0 125px;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(255, 121, 0, .07),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #181818 0%,
            #202020 48%,
            #181818 100%
        );

    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,121,0,.18);
}


/* =========================================================
   SUBTLE INDUSTRIAL BACKGROUND
========================================================= */

.operate-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 0%,
            rgba(255,255,255,.018) 30%,
            transparent 30.5%,
            transparent 70%,
            rgba(255,255,255,.018) 70.5%,
            transparent 100%
        );

    opacity: .8;

    pointer-events: none;
}


/* =========================================================
   TOP ORANGE DIVIDER
========================================================= */

.operate-section::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            #ff7900 18%,
            #ff7900 82%,
            transparent 100%
        );

    box-shadow:
        0 0 14px rgba(255,121,0,.25);

    pointer-events: none;
}


/* =========================================================
   CENTER NOTCH
========================================================= */

.operate-section .section-heading::before {
    content: "";

    position: absolute;

    top: -116px;
    left: 50%;

    width: 38px;
    height: 38px;

    transform:
        translateX(-50%)
        rotate(45deg);

    background: #181818;

    border-right: 2px solid #ff7900;
    border-bottom: 2px solid #ff7900;

    z-index: 5;

    pointer-events: none;
}


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

.operate-section .section-heading {
    position: relative;
    z-index: 3;

    width: min(900px, calc(100% - 40px));

    margin: 0 auto;

    text-align: center;
}


/* eyebrow */

.operate-section .section-heading > span {
    display: inline-block;

    color: #ff7900;

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

    letter-spacing: 5px;

    margin-bottom: 14px;
}


/* main heading */

.operate-section .section-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 46px;
    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 700;
}


/* orange emphasis */

.operate-section .section-heading h2 strong {
    color: #ff7900;
}


/* description */

.operate-section .section-heading p {
    max-width: 760px;

    margin: 18px auto 0;

    color: #b9b9b9;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   TWO LARGE PANELS
========================================================= */

.operate-section .operate-grid {
    position: relative;
    z-index: 3;

    width: min(1280px, calc(100% - 40px));

    margin: 52px auto 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;
}


/* =========================================================
   PANEL
========================================================= */

.operate-section .operate-box {
    position: relative;

    min-height: 315px;

    padding: 30px 32px;

    background:
        linear-gradient(
            145deg,
            #292929 0%,
            #222222 55%,
            #1c1c1c 100%
        );

    border: 1px solid rgba(255,255,255,.16);

    border-radius: 16px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.025);

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


/* panel hover */

.operate-section .operate-box:hover {
    transform: translateY(-5px);

    border-color: rgba(255,121,0,.45);

    box-shadow:
        0 30px 70px rgba(0,0,0,.38),
        0 0 25px rgba(255,121,0,.06);
}


/* =========================================================
   LEFT PANEL — ORANGE ACCENT
========================================================= */

.operate-section .operate-box:first-child::before {
    content: "";

    position: absolute;

    top: 0;
    left: 30px;

    width: 52px;
    height: 3px;

    background: #ff7900;

    box-shadow:
        0 0 12px rgba(255,121,0,.25);
}


/* =========================================================
   OPERATION ROWS
========================================================= */

.operate-section .operate-row {
    position: relative;

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

    gap: 20px;

    padding: 19px 0;

    border-bottom:
        1px solid rgba(255,255,255,.09);

    transition:
        background .25s ease,
        padding-left .25s ease;
}


.operate-section .operate-row:first-child {
    padding-top: 8px;
}


.operate-section .operate-row:last-child {
    border-bottom: none;
}


/* row hover */

.operate-section .operate-row:hover {
    padding-left: 5px;
}


/* =========================================================
   LEFT ROW ICONS
========================================================= */

.operate-section .operate-row > i {
    flex: 0 0 30px;

    margin-top: 2px;

    color: #ff7900;

    font-size: 17px;

    transition:
        transform .3s ease,
        filter .3s ease;
}


.operate-section .operate-row:hover > i {
    transform: scale(1.12);

    filter:
        drop-shadow(
            0 0 7px rgba(255,121,0,.35)
        );
}


/* =========================================================
   LEFT ROW TITLES
========================================================= */

.operate-section .operate-row strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
    line-height: 1.4;

    transition: color .25s ease;
}


.operate-section .operate-row:hover strong {
    color: #ff7900;
}


/* =========================================================
   LEFT ROW DESCRIPTIONS
========================================================= */

.operate-section .operate-row p {
    max-width: 520px;

    margin-top: 6px;

    color: #a5a5a5;

    font-size: 10px;
    line-height: 1.7;
}


/* =========================================================
   OPERATIONAL CONTROL HEADING
========================================================= */

.operate-section .control-title {
    margin-bottom: 8px;

    color: #888888;

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

    letter-spacing: 4px;
}


/* =========================================================
   CONTROL ROWS
========================================================= */

.operate-section .control-row {
    display: flex;
    align-items: flex-start;

    gap: 17px;

    padding: 18px 0;

    border-bottom:
        1px solid rgba(255,255,255,.09);
}


.operate-section .control-row:last-child {
    border-bottom: none;
}


/* =========================================================
   NUMBER CIRCLES
========================================================= */

.operate-section .control-row > span {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    display: flex;

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

    border:
        1px solid rgba(255,121,0,.60);

    border-radius: 50%;

    color: #ff7900;

    background:
        rgba(255,121,0,.025);

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

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


.operate-section .control-row:hover > span {
    transform: scale(1.08);

    background:
        rgba(255,121,0,.10);

    border-color: #ff7900;

    box-shadow:
        0 0 15px rgba(255,121,0,.15);
}


/* =========================================================
   CONTROL TITLES
========================================================= */

.operate-section .control-row strong {
    display: block;

    color: #ffffff;

    font-size: 11px;
    line-height: 1.4;

    transition: color .25s ease;
}


.operate-section .control-row:hover strong {
    color: #ff7900;
}


/* =========================================================
   CONTROL DESCRIPTIONS
========================================================= */

.operate-section .control-row p {
    max-width: 500px;

    margin-top: 6px;

    color: #a0a0a0;

    font-size: 9px;
    line-height: 1.7;
}


/* =========================================================
   BOTTOM DIVIDER
========================================================= */

.operate-section {
    border-bottom: none;
}


/* create stronger bottom line */

.operate-section .operate-grid::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -126px;

    width: 100vw;
    height: 2px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            #ff7900 20%,
            #ff7900 80%,
            transparent
        );

    box-shadow:
        0 0 14px rgba(255,121,0,.20);

    pointer-events: none;
}


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

@media (max-width: 1200px) and (min-width: 851px) {

    .operate-section {
        padding-top: 100px;
        padding-bottom: 110px;
    }

    .operate-section .section-heading h2 {
        font-size: 40px;
    }

    .operate-section .operate-grid {
        width: min(1100px, calc(100% - 35px));
    }

    .operate-section .operate-box {
        padding: 27px;
    }
}


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

@media (max-width: 850px) {

    .operate-section {
        padding-top: 85px;
        padding-bottom: 90px;
    }


    .operate-section .section-heading {
        width: calc(100% - 30px);
    }


    .operate-section .section-heading::before {
        top: -86px;

        width: 28px;
        height: 28px;
    }


    .operate-section .section-heading > span {
        font-size: 8px;
        letter-spacing: 3px;
    }


    .operate-section .section-heading h2 {
        font-size: 31px;
        line-height: 1.12;

        letter-spacing: -1px;
    }


    .operate-section .section-heading p {
        font-size: 11px;
        line-height: 1.7;
    }


    .operate-section .operate-grid {
        width: calc(100% - 30px);

        margin-top: 38px;

        grid-template-columns: 1fr;

        gap: 16px;
    }


    .operate-section .operate-box {
        min-height: auto;

        padding: 25px 23px;

        border-radius: 13px;
    }


    .operate-section .operate-row {
        padding: 17px 0;
    }


    .operate-section .operate-row strong {
        font-size: 11px;
    }


    .operate-section .operate-row p {
        font-size: 9px;
    }


    .operate-section .control-row {
        padding: 16px 0;
    }


    .operate-section .control-row strong {
        font-size: 10px;
    }


    .operate-section .control-row p {
        font-size: 9px;
    }


    .operate-section .operate-grid::after {
        bottom: -91px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 600px) {

    .operate-section {
        padding-top: 75px;
        padding-bottom: 80px;
    }


    .operate-section .section-heading h2 {
        font-size: 27px;
    }


    .operate-section .operate-grid {
        width: calc(100% - 24px);
    }
}
/* =========================================================
   HSE PERFORMANCE — PREMIUM INDUSTRIAL SECTION
   CSS ONLY — NO HTML CHANGES
========================================================= */

.performance-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 125px 0 130px;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.96) 0%,
            rgba(0,0,0,.90) 45%,
            rgba(0,0,0,.96) 100%
        ),
        url("../images/hse-performance-bg.jpg") center / cover no-repeat;

    border-top: 1px solid rgba(255,121,0,.18);
    border-bottom: 1px solid rgba(255,121,0,.20);
}


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

.performance-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(255,121,0,.08),
            transparent 40%
        );

    z-index: -1;
}


/* =========================================================
   ORANGE TOP DIVIDER
========================================================= */

.performance-section::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #ff7900 20%,
            #ff7900 80%,
            transparent
        );

    box-shadow:
        0 0 15px rgba(255,121,0,.25);
}


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

.performance-section .section-heading {
    position: relative;
    z-index: 2;

    width: min(900px, calc(100% - 40px));

    margin: 0 auto;

    text-align: center;
}


/* eyebrow */

.performance-section .section-heading > span {
    display: inline-block;

    color: #ff7900;

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

    letter-spacing: 5px;

    margin-bottom: 15px;
}


/* heading */

.performance-section .section-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 46px;
    line-height: 1.08;

    letter-spacing: -2px;
}


/* orange word */

.performance-section .section-heading h2 strong {
    color: #ff7900;
}


/* description */

.performance-section .section-heading p {
    max-width: 700px;

    margin: 18px auto 0;

    color: #a9a9a9;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   PERFORMANCE GRID
========================================================= */

.performance-section .performance-grid {
    position: relative;
    z-index: 2;

    width: min(1280px, calc(100% - 40px));

    margin: 55px auto 0;

    display: grid;

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

    border:
        1px solid rgba(255,255,255,.14);

    border-radius: 14px;

    overflow: hidden;

    background:
        rgba(18,18,18,.90);

    box-shadow:
        0 25px 65px rgba(0,0,0,.45);
}


/* =========================================================
   PERFORMANCE CARDS
========================================================= */

.performance-section .performance-item {
    position: relative;

    min-height: 190px;

    padding: 32px 25px;

    display: flex;
    flex-direction: column;

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

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(28,28,28,.96),
            rgba(12,12,12,.96)
        );

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

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


/* remove final separator */

.performance-section .performance-item:last-child {
    border-right: none;
}


/* =========================================================
   CARD TOP ORANGE LINE
========================================================= */

.performance-section .performance-item::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 0;
    height: 3px;

    transform: translateX(-50%);

    background: #ff7900;

    transition: width .35s ease;

    box-shadow:
        0 0 12px rgba(255,121,0,.25);
}


.performance-section .performance-item:hover::before {
    width: 70px;
}


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

.performance-section .performance-item:hover {
    background:
        linear-gradient(
            145deg,
            rgba(35,35,35,.98),
            rgba(14,14,14,.98)
        );

    transform: translateY(-4px);

    box-shadow:
        inset 0 0 35px rgba(255,121,0,.025);
}


/* =========================================================
   ICON
========================================================= */

.performance-section .performance-item i {
    width: 48px;
    height: 48px;

    display: flex;

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

    margin-bottom: 15px;

    border:
        1px solid rgba(255,121,0,.60);

    border-radius: 50%;

    color: #ff7900;

    font-size: 15px;

    background:
        rgba(255,121,0,.035);

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


.performance-section .performance-item:hover i {
    transform:
        translateY(-3px)
        scale(1.08);

    background:
        rgba(255,121,0,.10);

    border-color:
        #ff7900;

    box-shadow:
        0 0 20px rgba(255,121,0,.16);
}


/* =========================================================
   BIG NUMBER
========================================================= */

.performance-section .performance-item strong {
    margin: 0;

    color: #ffffff;

    font-size: 38px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: -1px;

    transition:
        color .25s ease,
        transform .25s ease;
}


.performance-section .performance-item:hover strong {
    color: #ff7900;

    transform: scale(1.04);
}


/* =========================================================
   LABEL
========================================================= */

.performance-section .performance-item span {
    margin-top: 11px;

    color: #ffffff;

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

    letter-spacing: 1.2px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.performance-section .performance-item small {
    margin-top: 7px;

    color: #777777;

    font-size: 8px;

    line-height: 1.5;
}


/* =========================================================
   CENTER NOTCH / DIVIDER
========================================================= */

.performance-section .section-heading::before {
    content: "";

    position: absolute;

    top: -126px;
    left: 50%;

    width: 38px;
    height: 38px;

    transform:
        translateX(-50%)
        rotate(45deg);

    background: #000;

    border-right:
        2px solid #ff7900;

    border-bottom:
        2px solid #ff7900;

    z-index: 5;
}


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

@media (max-width: 1100px) and (min-width: 851px) {

    .performance-section {
        padding-top: 105px;
        padding-bottom: 110px;
    }

    .performance-section .section-heading h2 {
        font-size: 40px;
    }

    .performance-section .performance-grid {
        width: calc(100% - 35px);
    }

    .performance-section .performance-item {
        min-height: 175px;

        padding: 28px 18px;
    }

    .performance-section .performance-item strong {
        font-size: 32px;
    }
}


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

@media (max-width: 850px) {

    .performance-section {
        padding-top: 85px;
        padding-bottom: 90px;

        background-position: 30% center;
    }


    .performance-section .section-heading {
        width: calc(100% - 30px);
    }


    .performance-section .section-heading::before {
        top: -86px;

        width: 28px;
        height: 28px;
    }


    .performance-section .section-heading > span {
        font-size: 8px;

        letter-spacing: 3px;
    }


    .performance-section .section-heading h2 {
        font-size: 31px;

        letter-spacing: -1px;
    }


    .performance-section .section-heading p {
        font-size: 11px;
    }


    .performance-section .performance-grid {
        width: calc(100% - 30px);

        margin-top: 38px;

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

        border-radius: 12px;
    }


    .performance-section .performance-item {
        min-height: 170px;

        padding: 25px 15px;

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

        border-bottom:
            1px solid rgba(255,255,255,.09);
    }


    .performance-section .performance-item:nth-child(2n) {
        border-right: none;
    }


    .performance-section .performance-item:nth-last-child(-n+2) {
        border-bottom: none;
    }


    .performance-section .performance-item strong {
        font-size: 32px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 600px) {

    .performance-section {
        padding-top: 75px;
        padding-bottom: 80px;
    }


    .performance-section .section-heading h2 {
        font-size: 27px;
    }


    .performance-section .performance-grid {
        width: calc(100% - 24px);

        grid-template-columns: 1fr;
    }


    .performance-section .performance-item {
        min-height: 155px;

        border-right: none !important;
        border-bottom:
            1px solid rgba(255,255,255,.09);
    }


    .performance-section .performance-item:last-child {
        border-bottom: none;
    }
}
/* =========================================================
   HSE POLICY CTA
   PREMIUM SOLAR / INDUSTRIAL DESIGN
   CSS ONLY — DO NOT CHANGE HTML
========================================================= */

.hse-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    width: min(1280px, calc(100% - 80px));

    margin: 75px auto 85px;

    min-height: 390px;

    padding: 60px 65px;

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

    gap: 60px;

    background:
        linear-gradient(
            90deg,
            rgba(2,2,2,.98) 0%,
            rgba(2,2,2,.96) 34%,
            rgba(2,2,2,.82) 58%,
            rgba(2,2,2,.38) 100%
        ),
        url("../images/hse-policy-bg.jpg") center / cover no-repeat;

    border: 1px solid rgba(255,121,0,.75);

    border-radius: 16px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.55),
        0 0 35px rgba(255,121,0,.06);
}


/* =========================================================
   ORANGE GLOW AROUND PANEL
========================================================= */

.hse-cta::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(255,121,0,.12),
            transparent 30%
        );

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   TOP ORANGE LINE
========================================================= */

.hse-cta::after {
    content: "";

    position: absolute;

    top: -1px;
    left: 50%;

    width: 85px;
    height: 3px;

    transform: translateX(-50%);

    background: #ff7900;

    box-shadow:
        0 0 14px rgba(255,121,0,.5);
}


/* =========================================================
   TOP CENTER NOTCH
========================================================= */

.hse-cta {
    --notch-size: 22px;
}


/* Create notch using an extra shadowed shape */

.hse-cta > div:first-child::after {
    content: "";

    position: absolute;

    top: -82px;
    left: 50%;

    width: var(--notch-size);
    height: var(--notch-size);

    transform:
        translateX(-50%)
        rotate(45deg);

    background: #030303;

    border-right: 2px solid #ff7900;
    border-bottom: 2px solid #ff7900;

    z-index: 5;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.hse-cta > div:first-child {
    position: relative;
    z-index: 4;

    flex: 1;

    max-width: 650px;
}


/* =========================================================
   HSE POLICY EYEBROW
========================================================= */

.hse-cta > div:first-child > span {
    display: block;

    margin-bottom: 18px;

    color: #ff7900;

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

    letter-spacing: 4px;
}


/* =========================================================
   SMALL SHIELD DETAIL
========================================================= */

.hse-cta > div:first-child > span::before {
    content: "\f3ed";

    display: inline-flex;

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

    width: 30px;
    height: 30px;

    margin-right: 13px;

    border: 1px solid rgba(255,121,0,.7);

    border-radius: 50%;

    color: #ff7900;

    font-family:
        "Font Awesome 6 Free";

    font-weight: 900;

    font-size: 13px;

    vertical-align: middle;

    box-shadow:
        0 0 15px rgba(255,121,0,.10);
}


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

.hse-cta h2 {
    margin: 0;

    max-width: 620px;

    color: #ffffff;

    font-size: 48px;

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 700;
}


/* Orange heading emphasis */

.hse-cta h2 strong {
    color: #ff7900;
}


/* =========================================================
   ORANGE UNDERLINE
========================================================= */

.hse-cta h2::after {
    content: "";

    display: block;

    width: 64px;
    height: 3px;

    margin-top: 25px;

    background: #ff7900;

    box-shadow:
        0 0 12px rgba(255,121,0,.35);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hse-cta p {
    max-width: 620px;

    margin-top: 22px;

    color: #d0d0d0;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   BUTTON CONTAINER
========================================================= */

.hse-cta .cta-buttons {
    position: relative;
    z-index: 5;

    flex-shrink: 0;

    display: flex;
    align-items: center;

    gap: 14px;
}


/* =========================================================
   BUTTONS
========================================================= */

.hse-cta .cta-buttons a {
    min-height: 56px;

    padding: 0 27px;

    display: inline-flex;

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

    gap: 18px;

    border-radius: 7px;

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

    letter-spacing: .4px;

    white-space: nowrap;

    text-decoration: none;

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


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.hse-cta .cta-buttons .btn-primary {
    color: #050505;

    background: #ff7900;

    border: 1px solid #ff7900;

    box-shadow:
        0 10px 30px rgba(255,121,0,.20);
}


.hse-cta .cta-buttons .btn-primary:hover {
    transform: translateY(-4px);

    background: #ff8a1a;

    box-shadow:
        0 15px 35px rgba(255,121,0,.32);
}


/* arrow */

.hse-cta .btn-primary span {
    font-size: 20px;

    transition:
        transform .25s ease;
}


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


/* =========================================================
   OUTLINE BUTTON
========================================================= */

.hse-cta .cta-buttons .btn-outline {
    color: #ffffff;

    background:
        rgba(0,0,0,.45);

    border:
        1px solid rgba(255,255,255,.45);

    backdrop-filter: blur(8px);
}


.hse-cta .cta-buttons .btn-outline:hover {
    transform: translateY(-4px);

    color: #ff7900;

    border-color: #ff7900;

    background:
        rgba(255,121,0,.06);

    box-shadow:
        0 12px 30px rgba(0,0,0,.30);
}


/* =========================================================
   SOLAR IMAGE DEPTH
========================================================= */

.hse-cta:hover {
    border-color: #ff7900;

    box-shadow:
        0 35px 90px rgba(0,0,0,.60),
        0 0 45px rgba(255,121,0,.08);
}


/* =========================================================
   BOTTOM ORANGE NOTCH
========================================================= */

.hse-cta .cta-buttons::after {
    content: "";

    position: absolute;

    bottom: -82px;
    left: 50%;

    width: 22px;
    height: 22px;

    transform:
        translateX(-50%)
        rotate(45deg);

    background: #030303;

    border-right: 2px solid #ff7900;
    border-bottom: 2px solid #ff7900;

    pointer-events: none;
}


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

@media (max-width: 1150px) {

    .hse-cta {
        width: calc(100% - 50px);

        padding: 50px;

        gap: 35px;
    }

    .hse-cta h2 {
        font-size: 40px;
    }

    .hse-cta p {
        font-size: 11px;
    }

    .hse-cta .cta-buttons a {
        padding: 0 20px;

        font-size: 9px;
    }
}


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

@media (max-width: 800px) {

    .hse-cta {
        width: calc(100% - 30px);

        min-height: auto;

        margin: 55px auto 65px;

        padding: 45px 28px;

        flex-direction: column;

        align-items: flex-start;

        gap: 32px;

        background-position:
            72% center;
    }


    .hse-cta > div:first-child {
        max-width: 100%;
    }


    .hse-cta > div:first-child > span {
        font-size: 9px;

        letter-spacing: 3px;
    }


    .hse-cta h2 {
        font-size: 34px;

        letter-spacing: -1.3px;
    }


    .hse-cta p {
        font-size: 10px;

        line-height: 1.7;
    }


    .hse-cta .cta-buttons {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }


    .hse-cta .cta-buttons a {
        width: 100%;

        min-height: 52px;
    }


    .hse-cta .cta-buttons::after {
        display: none;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 500px) {

    .hse-cta {
        width: calc(100% - 22px);

        padding: 35px 22px;
    }


    .hse-cta h2 {
        font-size: 29px;
    }


    .hse-cta > div:first-child > span {
        font-size: 8px;

        letter-spacing: 2.5px;
    }
}
/* =========================================================
   HSE SECTION DIVIDER
   STYLE 01 — THIN TECHNICAL ORANGE LINE
========================================================= */

.hse-section-divider {
    position: relative;

    width: 100%;
    height: 46px;

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

    margin: 0;

    overflow: hidden;
}


/* Main line */

.hse-section-divider::before {
    content: "";

    position: absolute;

    left: 4%;
    right: 4%;

    top: 50%;

    height: 1px;

    transform: translateY(-50%);

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,121,0,.25) 8%,
            rgba(255,121,0,.75) 30%,
            #ff7900 50%,
            rgba(255,121,0,.75) 70%,
            rgba(255,121,0,.25) 92%,
            transparent 100%
        );
}


/* Glowing center point */

.hse-section-divider::after {
    content: "";

    position: relative;

    width: 8px;
    height: 8px;

    background: #ff7900;

    border-radius: 50%;

    box-shadow:
        0 0 6px rgba(255,121,0,.9),
        0 0 16px rgba(255,121,0,.55),
        0 0 30px rgba(255,121,0,.25);

    z-index: 2;
}


/* =========================================================
   OPTIONAL: SMALL TECHNICAL BREAK AROUND CENTER
========================================================= */

.hse-section-divider {
    --divider-gap: 24px;
}

.hse-section-divider::before {
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,121,0,.18) 8%,
            rgba(255,121,0,.55) 35%,
            #ff7900 46%,
            transparent 46%,
            transparent 54%,
            #ff7900 54%,
            rgba(255,121,0,.55) 65%,
            rgba(255,121,0,.18) 92%,
            transparent 100%
        );
}


/* =========================================================
   HOVER REACTION
========================================================= */

.hse-section-divider:hover::after {
    transform: scale(1.35);

    box-shadow:
        0 0 8px rgba(255,121,0,1),
        0 0 20px rgba(255,121,0,.75),
        0 0 40px rgba(255,121,0,.35);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


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

@media (max-width: 900px) {

    .hse-section-divider {
        height: 38px;
    }

    .hse-section-divider::before {
        left: 5%;
        right: 5%;
    }
}


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

@media (max-width: 600px) {

    .hse-section-divider {
        height: 32px;
    }

    .hse-section-divider::before {
        left: 7%;
        right: 7%;
    }

    .hse-section-divider::after {
        width: 6px;
        height: 6px;
    }
}
/* =========================================================
   HSE — CLEAN SECTION DIVIDERS
   FINAL VERSION
   HTML NOT REQUIRED
========================================================= */


/* ---------------------------------------------------------
   REMOVE THE OLD NOTCH / DIAMOND EFFECTS
--------------------------------------------------------- */

.hse-architecture .section-heading::before,
.operate-section .section-heading::before,
.performance-section .section-heading::before,
.hse-cta > div:first-child::after {
    content: none !important;
}


/* ---------------------------------------------------------
   ARCHITECTURE
--------------------------------------------------------- */

.hse-architecture {
    position: relative;
    border-top: 0 !important;
    border-bottom: 0 !important;
}


/* single divider BELOW architecture */

.hse-architecture::after {
    content: "";

    position: absolute;

    left: 5%;
    right: 5%;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,121,0,.18) 10%,
            rgba(255,121,0,.65) 35%,
            #ff7900 50%,
            rgba(255,121,0,.65) 65%,
            rgba(255,121,0,.18) 90%,
            transparent 100%
        );

    box-shadow:
        0 0 10px rgba(255,121,0,.16);

    pointer-events: none;
}


/* tiny center accent */

.hse-architecture::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -3px;

    width: 6px;
    height: 6px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #ff7900;

    box-shadow:
        0 0 6px rgba(255,121,0,.8),
        0 0 16px rgba(255,121,0,.35);

    z-index: 3;

    pointer-events: none;
}


/* ---------------------------------------------------------
   HOW WE OPERATE
--------------------------------------------------------- */

.operate-section {
    position: relative;

    border-top: 0 !important;
    border-bottom: 0 !important;
}


/* remove old top divider */

.operate-section::after {
    content: none !important;
}


/* clean TOP divider */

.operate-section::before {
    content: "";

    position: absolute;

    left: 5%;
    right: 5%;
    top: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,121,0,.18) 10%,
            rgba(255,121,0,.65) 35%,
            #ff7900 50%,
            rgba(255,121,0,.65) 65%,
            rgba(255,121,0,.18) 90%,
            transparent 100%
        );

    box-shadow:
        0 0 10px rgba(255,121,0,.15);

    pointer-events: none;
}


/* center point */

.operate-section::after {
    content: "";

    position: absolute;

    left: 50%;
    top: -3px;

    width: 6px;
    height: 6px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #ff7900;

    box-shadow:
        0 0 6px rgba(255,121,0,.8),
        0 0 16px rgba(255,121,0,.35);

    z-index: 4;

    pointer-events: none;
}


/* ---------------------------------------------------------
   PERFORMANCE
--------------------------------------------------------- */

.performance-section {
    position: relative;

    border-top: 0 !important;
}


/* clean top divider */

.performance-section::after {
    content: "";

    position: absolute;

    left: 5%;
    right: 5%;
    top: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,121,0,.18) 10%,
            rgba(255,121,0,.65) 35%,
            #ff7900 50%,
            rgba(255,121,0,.65) 65%,
            rgba(255,121,0,.18) 90%,
            transparent 100%
        );

    box-shadow:
        0 0 10px rgba(255,121,0,.15);

    pointer-events: none;
}


/* center point */

.performance-section::before {
    content: "";

    position: absolute;

    left: 50%;
    top: -3px;

    width: 6px;
    height: 6px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #ff7900;

    box-shadow:
        0 0 6px rgba(255,121,0,.8),
        0 0 16px rgba(255,121,0,.35);

    z-index: 4;

    pointer-events: none;
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 850px) {

    .hse-architecture::after,
    .operate-section::before,
    .performance-section::after {
        left: 7%;
        right: 7%;
    }

    .hse-architecture::before,
    .operate-section::after,
    .performance-section::before {
        width: 5px;
        height: 5px;
    }
}
/* =========================================================
   HSE FOOTER — FINAL CORPORATE POLISH
   ========================================================= */

.hse-footer {
    position: relative;

    width: 100%;

    padding:
        78px
        max(55px, calc((100% - 1280px) / 2))
        28px;

    display: grid;

    grid-template-columns:
        1.65fr
        1fr
        1fr
        1fr;

    column-gap: 70px;
    row-gap: 55px;

    background:
        linear-gradient(
            180deg,
            #030303 0%,
            #010101 100%
        );

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

    color: #ffffff;
}


/* ---------------------------------------------------------
   SUBTLE ORANGE TOP ACCENT
--------------------------------------------------------- */

.hse-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 5%;
    right: 5%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,121,0,.18) 15%,
            rgba(255,121,0,.55) 35%,
            #ff7900 50%,
            rgba(255,121,0,.55) 65%,
            rgba(255,121,0,.18) 85%,
            transparent 100%
        );

    box-shadow:
        0 0 12px rgba(255,121,0,.12);

    pointer-events: none;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    align-self: start;
}

.footer-brand h3 {
    margin: 0;

    font-size: 23px;
    line-height: 1;

    font-weight: 800;
    letter-spacing: -1px;

    color: #f4f4f4;
}

.footer-brand h3 span {
    color: #ff7900;
}

.footer-brand small {
    display: block;

    margin-top: 7px;

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

    letter-spacing: 2.5px;

    color: #666;
}

.footer-brand p {
    max-width: 360px;

    margin-top: 22px;

    color: #737373;

    font-size: 11px;
    line-height: 1.85;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.footer-column h4 {
    margin: 0 0 8px;

    color: #f1f1f1;

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

    letter-spacing: 3px;
}

.footer-column a,
.footer-column p,
.footer-column span {
    margin: 0;

    color: #696969;

    font-size: 10px;
    line-height: 1.65;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}


/* ---------------------------------------------------------
   LINKS
--------------------------------------------------------- */

.footer-column a:hover {
    color: #ff7900;

    transform: translateX(3px);
}


/* ---------------------------------------------------------
   CONTACT LABELS
--------------------------------------------------------- */

.footer-column span {
    margin-top: 3px;

    color: #7d7d7d;

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

    letter-spacing: 2px;
}


/* ---------------------------------------------------------
   CONTACT LINKS
--------------------------------------------------------- */

.footer-column span + a {
    color: #777;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    grid-column: 1 / -1;

    width: 100%;

    margin-top: 20px;

    padding-top: 22px;

    display: flex;

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

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

    color: #4f4f4f;

    font-size: 9px;

    line-height: 1.5;
}


/* privacy / compliance */

.footer-bottom span:last-child {
    color: #555;
}

.footer-bottom span:last-child:hover {
    color: #777;
}


/* =========================================================
   DESKTOP — LARGE SCREENS
========================================================= */

@media (min-width: 1400px) {

    .hse-footer {
        padding-left:
            max(70px, calc((100% - 1280px) / 2));

        padding-right:
            max(70px, calc((100% - 1280px) / 2));

        column-gap: 90px;
    }

    .footer-brand p {
        max-width: 390px;
    }
}


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

@media (max-width: 1100px) {

    .hse-footer {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        column-gap: 45px;

        padding-left: 40px;
        padding-right: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 520px;
    }
}


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

@media (max-width: 700px) {

    .hse-footer {
        grid-template-columns: 1fr 1fr;

        padding:
            55px
            25px
            25px;

        column-gap: 30px;
        row-gap: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand h3 {
        font-size: 21px;
    }

    .footer-brand p {
        max-width: 100%;

        margin-top: 16px;

        font-size: 10px;
        line-height: 1.75;
    }

    .footer-column h4 {
        font-size: 8px;
        letter-spacing: 2.5px;
    }

    .footer-column a,
    .footer-column p,
    .footer-column span {
        font-size: 9px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

        margin-top: 5px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .hse-footer {
        grid-template-columns: 1fr;

        padding:
            48px
            20px
            22px;

        row-gap: 35px;
    }

    .footer-brand,
    .footer-bottom {
        grid-column: 1;
    }

    .footer-brand p {
        font-size: 10px;
    }

    .footer-column {
        gap: 10px;
    }

    .footer-bottom {
        font-size: 8px;
    }
}
/* =========================================================
   HOLS-FIELD HSE
   TABLET + MOBILE RESPONSIVENESS
   ========================================================= */


/* =========================================================
   TABLET — 1024px AND BELOW
   ========================================================= */

@media (max-width: 1024px) {

    /* ---------- GLOBAL ---------- */

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    /* ---------- NAVBAR ---------- */

    .site-header {
        padding: 12px 14px 0;
    }

    .nav-shell {
        min-height: 62px;
        padding: 0 12px 0 16px;
    }

    .hse-menu {
        gap: 0;
    }

    .hse-menu a {
        padding: 0 9px;
        font-size: 9px;
    }

    .nav-contact {
        min-width: 125px;
        height: 44px;
        padding: 0 15px;
        font-size: 9px;
    }


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

    .hse-hero {
        min-height: 650px;
        padding: 70px 5% 70px;
    }

    .hse-hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hse-hero-content {
        max-width: 100%;
    }

    .hse-hero-title {
        font-size: clamp(52px, 7vw, 78px);
    }

    .hse-hero-subtitle {
        font-size: 14px;
        max-width: 480px;
    }

    .hse-buttons {
        flex-wrap: wrap;
    }

    .hse-buttons a {
        min-height: 52px;
    }


    /* =====================================================
       SAFETY CARD
    ===================================================== */

    .safety-card {
        width: 100%;
        max-width: 390px;
        margin-left: auto;
    }

    .hazard-card {
        width: 100%;
        max-width: 390px;
        margin-left: auto;
    }


    /* =====================================================
       VALUES BAR
    ===================================================== */

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

    .hse-value {
        padding: 22px 25px;
    }

    .hse-value:nth-child(2) {
        border-right: none;
    }

    .hse-value:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.08);
    }


    /* =====================================================
       HSE ARCHITECTURE
    ===================================================== */

    .hse-architecture {
        padding-left: 5%;
        padding-right: 5%;
    }

    .architecture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .architecture-card {
        min-height: 210px;
    }


    /* =====================================================
       HOW WE OPERATE
    ===================================================== */

    .operate-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .operate-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .operate-card {
        width: 100%;
    }


    /* =====================================================
       HSE PERFORMANCE
    ===================================================== */

    .performance-section {
        padding-left: 5%;
        padding-right: 5%;
    }

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

    .performance-item {
        padding: 35px 20px;
    }


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

    .hse-cta {
        margin-left: 5%;
        margin-right: 5%;

        padding: 55px 40px;

        gap: 35px;
    }

    .hse-cta h2 {
        font-size: clamp(34px, 5vw, 52px);
    }

}


/* =========================================================
   MOBILE — 768px AND BELOW
   ========================================================= */

@media (max-width: 768px) {

    /* ---------- GLOBAL ---------- */

    body {
        overflow-x: hidden;
    }

    /* =====================================================
       NAVBAR
    ===================================================== */

    .site-header {
        padding: 10px 10px 0;
    }

    .nav-shell {
        min-height: 58px;

        padding:
            0 10px 0 14px;

        border-radius: 14px;
    }

    /*
       Hide desktop navigation.
       Your existing mobile menu can take over.
    */

    .hse-menu {
        display: none;
    }

    .nav-contact {
        min-width: 112px;
        height: 42px;

        padding: 0 13px;

        font-size: 8px;
    }


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

    .hse-hero {
        min-height: auto;

        padding:
            55px 22px 55px;
    }

    .hse-hero-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .hse-hero-content {
        width: 100%;
    }

    .hse-hero-title {
        font-size: clamp(48px, 15vw, 72px);

        line-height: .92;

        letter-spacing: -2px;
    }

    .hse-hero-subtitle {
        font-size: 13px;

        line-height: 1.7;

        max-width: 100%;
    }

    .hse-buttons {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;

        gap: 12px;
    }

    .hse-buttons a {
        width: 100%;

        justify-content: center;

        min-height: 52px;
    }


    /* =====================================================
       SAFETY CARD
    ===================================================== */

    .safety-card,
    .hazard-card {
        width: 100%;

        max-width: none;

        margin: 0;
    }

    .safety-card {
        padding: 25px;
    }

    .safety-card .score {
        font-size: 54px;
    }

    .score-item strong {
        font-size: 14px;
    }


    /* =====================================================
       VALUES BAR
    ===================================================== */

    .hse-values {
        grid-template-columns: 1fr;

        width: 100%;
    }

    .hse-value {
        min-height: 85px;

        padding:
            18px 25px;

        border-right: none !important;

        border-bottom:
            1px solid rgba(255,255,255,.08);
    }

    .hse-value:last-child {
        border-bottom: none;
    }


    /* =====================================================
       SECTION HEADINGS
    ===================================================== */

    .section-eyebrow {
        font-size: 8px;

        letter-spacing: 2.5px;
    }

    .section-title {
        font-size: clamp(32px, 9vw, 46px);

        line-height: 1.02;

        letter-spacing: -1.5px;
    }

    .section-description {
        font-size: 12px;

        line-height: 1.7;

        max-width: 100%;
    }


    /* =====================================================
       HSE ARCHITECTURE
    ===================================================== */

    .hse-architecture {
        padding:
            80px 22px;
    }

    .architecture-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .architecture-card {
        min-height: auto;

        padding: 28px 24px;
    }

    .architecture-card h3 {
        font-size: 17px;
    }

    .architecture-card p {
        font-size: 11px;

        line-height: 1.7;
    }


    /* =====================================================
       HOW WE OPERATE
    ===================================================== */

    .operate-section {
        padding:
            80px 22px;
    }

    .operate-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .operate-card {
        padding: 25px 22px;
    }

    .operate-card h3 {
        font-size: 14px;
    }

    .operate-card p {
        font-size: 10px;
    }


    /* =====================================================
       PERFORMANCE
    ===================================================== */

    .performance-section {
        padding:
            80px 22px;
    }

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

    .performance-item {
        min-height: 145px;

        padding:
            28px 15px;
    }

    .performance-item strong {
        font-size: 30px;
    }

    .performance-item span {
        font-size: 8px;
    }

    .performance-item small {
        font-size: 8px;
    }


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

    .hse-cta {
        margin:
            40px 20px 0;

        padding:
            45px 25px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

        border-radius: 18px;
    }

    .hse-cta h2 {
        font-size: clamp(30px, 9vw, 42px);

        line-height: 1.05;
    }

    .hse-cta p {
        font-size: 11px;

        line-height: 1.7;
    }

    .cta-buttons {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 12px;
    }

    .cta-buttons a {
        width: 100%;

        justify-content: center;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .hse-footer {
        grid-template-columns: 1fr 1fr;

        gap:
            40px 25px;

        padding:
            60px 22px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        grid-column: 1 / -1;

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

}


/* =========================================================
   SMALL MOBILE — 480px AND BELOW
   ========================================================= */

@media (max-width: 480px) {

    /* ---------- NAV ---------- */

    .nav-shell {
        min-height: 54px;
    }

    .nav-contact {
        min-width: 100px;

        height: 38px;

        font-size: 7px;
    }


    /* ---------- HERO ---------- */

    .hse-hero {
        padding:
            45px 18px;
    }

    .hse-hero-title {
        font-size: 50px;
    }

    .hse-hero-subtitle {
        font-size: 12px;
    }


    /* ---------- SAFETY CARD ---------- */

    .safety-card {
        padding: 20px;
    }

    .safety-card .score {
        font-size: 48px;
    }

    .score-item {
        padding: 12px 0;
    }


    /* ---------- ARCHITECTURE ---------- */

    .hse-architecture,
    .operate-section,
    .performance-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .architecture-card {
        padding: 24px 20px;
    }


    /* ---------- PERFORMANCE ---------- */

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

    .performance-item {
        min-height: 120px;
    }


    /* ---------- CTA ---------- */

    .hse-cta {
        margin-left: 15px;
        margin-right: 15px;

        padding:
            38px 20px;
    }


    /* ---------- FOOTER ---------- */

    .hse-footer {
        grid-template-columns: 1fr;

        gap: 35px;

        padding:
            50px 20px 22px;
    }

    .footer-brand,
    .footer-contact,
    .footer-bottom {
        grid-column: 1;
    }

    .footer-column {
        width: 100%;
    }

    .footer-brand h3 {
        font-size: 22px;
    }

    .footer-brand p {
        font-size: 10px;
    }

    .footer-bottom {
        font-size: 8px;

        line-height: 1.8;
    }

}
/* =========================================================
   HSE — MOBILE HAMBURGER FIX
   MOBILE ONLY — DESKTOP UNTOUCHED
   ========================================================= */

@media (max-width: 850px) {

    /* Keep navbar contents visible outside the shell */
    .hf-navbar,
    .hf-nav-shell {
        overflow: visible !important;
    }

    .hf-nav-shell {
        position: relative !important;
    }

    /* Hide desktop navigation on mobile */
    .hf-navigation {
        display: none !important;
    }

    /* Hide Get In Touch on mobile */
    .hf-nav-cta {
        display: none !important;
    }

    /* SHOW HAMBURGER */
    .hf-menu-toggle {
        display: flex !important;

        width: 42px !important;
        height: 42px !important;

        margin-left: auto !important;

        align-items: center !important;
        justify-content: center !important;

        background: #080808 !important;
        border: 1px solid rgba(255,120,0,.45) !important;
        border-radius: 9px !important;

        color: #ff7800 !important;

        cursor: pointer !important;
        z-index: 100002 !important;

        position: relative !important;
    }

    .hf-menu-toggle i {
        color: #ff7800 !important;
        font-size: 21px !important;
    }

    /* OPEN MOBILE MENU */
    .hf-navigation.mobile-open {
        display: flex !important;

        position: absolute !important;

        top: calc(100% + 8px) !important;
        left: 0 !important;
        right: 0 !important;

        width: auto !important;
        height: auto !important;

        flex-direction: column !important;

        padding: 8px !important;

        background: #070707 !important;

        border: 1px solid rgba(255,255,255,.1) !important;
        border-radius: 12px !important;

        box-shadow: 0 20px 50px rgba(0,0,0,.7);

        z-index: 100001 !important;
    }

    .hf-navigation.mobile-open a {
        width: 100% !important;
        height: 46px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        padding: 0 16px !important;

        font-size: 10px !important;

        border-radius: 8px !important;
    }
}


/* SMALL PHONES */
@media (max-width: 480px) {

    .hf-menu-toggle {
        width: 40px !important;
        height: 40px !important;
    }

}
/* =========================================================
   HSE MOBILE HAMBURGER
   FINAL MOBILE NAVIGATION FIX
   ========================================================= */

.hse-menu-toggle {
    display: none;
}


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

@media (max-width: 850px) {

    /* Hide desktop navigation */
    .hse-menu {
        display: none !important;
    }

    /* Hide Get In Touch */
    .nav-contact {
        display: none !important;
    }

    /* Show hamburger */
    .hse-menu-toggle {
        display: flex !important;

        margin-left: auto;

        width: 42px;
        height: 42px;

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

        background: #ff7900;
        color: #050505;

        border: none;
        border-radius: 10px;

        cursor: pointer;

        font-size: 17px;

        position: relative;
        z-index: 50;

        box-shadow:
            0 6px 20px rgba(255, 121, 0, 0.22);
    }

    .hse-menu-toggle i {
        pointer-events: none;
    }

    /* OPEN MENU */
    .hse-menu.mobile-open {
        display: flex !important;

        position: absolute !important;

        top: 76px;
        left: 0;
        right: 0;

        width: 100%;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 8px;

        background: rgba(5, 5, 5, 0.97);

        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 14px;

        box-shadow:
            0 20px 45px rgba(0, 0, 0, 0.65);

        z-index: 100;
    }

    .hse-menu.mobile-open a {
        display: flex;

        align-items: center;

        width: 100%;
        min-height: 46px;

        padding: 0 16px;

        font-size: 10px;

        border-radius: 8px;
    }

    .hse-menu.mobile-open a:hover,
    .hse-menu.mobile-open a.active {
        background: rgba(255, 121, 0, 0.08);
        color: #ff7900;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 600px) {

    .hse-menu-toggle {
        width: 40px;
        height: 40px;

        font-size: 16px;
    }

}