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

:root {

    /* Colours */

    --dark-blue: #060E1A;
    --dark-blue-alt: #080F1D;
    --dark-blue-soft: #0A1222;
    --black-blue: #030810;
    --light-blue: #7DD3FC;

    --gold: #C8973A;
    --gold-soft: rgba(200, 151, 58, 0.12);
    --gold-muted: rgba(200, 151, 58, 0.55);

    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.62);
    --white-muted: rgba(255, 255, 255, 0.45);
    --white-faint: rgba(255, 255, 255, 0.18);

    /* Fonts */

    --heading-font: "Bebas Neue", sans-serif;
    --subheading-font: "Barlow Condensed", sans-serif;
    --body-font: "Barlow", sans-serif;

    /* Layout */

    --section-padding: 88px 6%;
    --nav-height: 62px;
    --container-width: 1200px;

    /* Effects */

    --transition: 0.2s ease;
    --border-gold: 1px solid rgba(200, 151, 58, 0.12);
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    background: #060E1A;
    overflow-x: hidden;
    font-family: var(--body-font);
}

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

/* Navbar */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;

    height: 62px;
    padding: 0 6%;

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

    background: rgba(6, 14, 26, 0.97);
    border-bottom: 1px solid rgba(200, 151, 58, 0.12);
}

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

.nav-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;

    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #C8973A;
}

.nav-cta {
    padding: 8px 20px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #060E1A;
    background: #C8973A;
    border-radius: 2px;
    transition: 10s ease-in-out;
}

.nav-cta:hover {
    color: var(--dark-blue);
    background-color: var(--white);
}

.menu-toggle {
    display: none;
}

.close {
    display: none;
}

.menu-toggle.active .hamburger {
    display: none;
}

.menu-toggle.active .close {
    display: block;
}

/* Mobile */

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #C8973A;
        font-size: 28px;
        cursor: pointer;
        height: 850px;}

    .nav-links {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        width: 100%;
        padding: 30px 6%;

        flex-direction: column;
        align-items: flex-start;
        gap: 20px;

        background: #060E1A;
        border-bottom: 1px solid rgba(200, 151, 58, 0.12);
    }

    .nav-links.active {
        display: flex;
    }
}

/* Shared */

section {
    padding: 88px 6%;
}

.lbl {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
    color: rgba(200, 151, 58, 0.6);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.rule {
    width: 44px;
    height: 3px;
    background: #C8973A;
    border-radius: 2px;
    margin-bottom: 26px;
}

.h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(34px, 4.2vw, 52px);
    letter-spacing: 3px;
    color: #fff;
    line-height: 1.04;
    margin-bottom: 18px;
}

.h1 .g {
    color: #C8973A;
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--white-muted);
    line-height: 1.75;
    max-width: 700px;
    margin-bottom: 28px;
}

.body-text {
    font-size: 1rem;
    text-align: left;
    font-weight: 300;
    color: var(--white-soft);
    line-height: 1.72;
    font-family: var(--body-font);
}

.why-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.why-image {
    display: flex;
    justify-content: flex-end;
}

.why-image img {
    width: 100%;
    max-width: 450px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.why-quote {
    margin: 40px 0;
    padding-left: 24px;
    border-left: 4px solid var(--gold);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.8;
    text-transform: uppercase;
    color: var(--gold);
}

.gold-text {
    color: rgba(200, 151, 58, 0.9);
    font-weight: 400;
}

.btn {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 2px;
}

.btn-gold {
    color: #060E1A;
    background: #C8973A;
}

.btn-ghost {
    color: #C8973A;
    border: 1px solid rgba(200, 151, 58, 0.35);
    margin-left: 14px;
}

.check-list {
    list-style: none;
}

.check-list li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 12px;
    line-height: 1.5;
}

.check-list li::before {
    content: '—';
    color: #C8973A;
    flex-shrink: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(200, 151, 58, 0.07);
}

.two-col-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(200, 151, 58, 0.07);
}

.section-heading {
    font-family: var(--subheading-font);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 6% 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark-blue);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(168deg,
            #0C1E34 0%,
            #060E1A 55%,
            #030810 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: 0.045;

    background-image:
        linear-gradient(rgba(200, 151, 58, 0.7) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(200, 151, 58, 0.7) 1px,
            transparent 1px);

    background-size: 55px 55px;
}

.hero-slash {
    position: absolute;
    top: -15%;
    right: -5%;
    width: 65vw;
    height: 140%;
    background:
        linear-gradient(165deg,
            rgba(12, 138, 152, 0.09) 0%,
            transparent 60%);
    transform: skewX(32deg);
}

.hero-inner {
    width: 100%;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.hero-content {
    max-width: 720px;
}

.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--light-blue);
    text-transform: uppercase;
    margin-bottom: 22px;
    text-align: center;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 9vw, 108px);
    letter-spacing: 4px;
    line-height: 0.9;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.hero-title .gold {
    color: #C8973A;
}

.hero-subtitle {
    font-family: var(--subheading-font);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--white-soft);
    text-transform: uppercase;
    margin-bottom: 28px;
    text-align: center;
}

.hero-leg {
    position: relative;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1.5;
    margin-bottom: 14px;
    padding-left: 24px;
}

.hero-leg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 8px);
    background: var(--gold);
    border-radius: 999px;
}

.hero-desc {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 36px;
    text-align: center;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    letter-spacing: 2px;
    color: #C8973A;
    line-height: 1;
}

.stat-lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.28);
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-rule {
    width: 1px;
    height: 50px;
    background: rgba(200, 151, 58, 0.2);
}

.hero-content {
    max-width: 720px;
}

.hero-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--dark-blue);
    border-radius: 40px 12px 12px 40px;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(to left,
            transparent 10%,
            rgba(35, 85, 140, 0.45) 45%,
            rgba(6, 14, 26, 0.95) 100%);

    border-radius: inherit;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 780px;
    object-fit: cover;
    border-radius: inherit;
    display: block;
    width: 100%;
    height: 780px;
    object-fit: cover;
    border-radius: inherit;
    transform: scale(1.01);
}

.light-blue {
    color: var(--light-blue);
}

.gold {
    color: var(--gold);
}


.hero-buttons {
    text-align: center;
}

.btn {
    transition: 0.4s ease-in-out;
}

.btn-gold:hover {
    background: var(--white);
    color: var(--dark-blue);
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--dark-blue);
}

/* HERO — RESPONSIVE */

@media (max-width: 1024px) {

    .hero {
    padding: 100px 5% 150px;
}

    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }

    .hero-title {
        font-size: clamp(52px, 8vw, 80px);
    }

    .hero-eyebrow {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .hero-desc {
        font-size: 0.92rem;
    }

    .hero-leg {
        font-size: 1.05rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-num {
        font-size: 30px;
    }

    .hero-image img {
        height: 580px;
    }

    .hero-image {
        border-radius: 24px 8px 8px 24px;
    }
}

/* ---------- MOBILE (≤ 640px) ---------- */
@media (max-width: 640px) {

    .hero {
        padding: 90px 6% 100px;
        min-height: 100vh;
        align-items: flex-start;
        position: relative;
    }

    /* Collapse grid — single column, both children overlap via position */
    .hero-inner {
        display: block;
        position: relative;
        width: 100%;
    }

    .hero-image {
        position: absolute;
        top: -90px;
        left: 0;
        right: 0;
        bottom: -60px;
        border-radius: 0;
        width: 100%;
        z-index: 0;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        opacity: 0.4;
    }

    .hero-image::before {
        background: linear-gradient(to bottom,
                rgba(6, 14, 26, 0.82) 0%,
                rgba(6, 14, 26, 0.65) 50%,
                rgba(6, 14, 26, 0.88) 100%);
        border-radius: 0;
    }

    .hero-content {
        position: relative;
        z-index: 5;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(52px, 14vw, 72px);
        letter-spacing: 2px;
    }

    .hero-eyebrow {
        font-size: 0.78rem;
        letter-spacing: 2.5px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.72rem;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .hero-leg {
        font-size: 0.98rem;
        padding-left: 18px;
        margin-bottom: 12px;
    }

    .hero-desc {
        font-size: 0.88rem;
        line-height: 1.7;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .hero-stats {
        gap: 0;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 32px;
        flex-wrap: nowrap;
    }

    .stat-box {
        flex: 1;
        text-align: center;
    }

    .stat-num {
        font-size: 26px;
    }

    .stat-lbl {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .hero-rule {
        height: 40px;
        flex-shrink: 0;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 50%;
        margin: 0;
        text-align: center;
    }
}

/* ---------- SMALL MOBILE (≤ 380px) ---------- */
@media (max-width: 380px) {

    .hero {
        padding: 80px 5% 50px;
    }

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

    .stat-num {
        font-size: 22px;
    }

    .stat-lbl {
        font-size: 7px;
    }
}

/* Why Section */

.why {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.why::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-size: 55px 55px;
    pointer-events: none;
}


.why-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 2;
    background-color: var(--dark-blue-soft);
}

.why-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.why-title {
    font-family: var(--subheading-font);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.why-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto;
    column-gap: 80px;
    row-gap: 0;
    align-items: start;
}

.why-container .h1 {
    grid-column: 1 / -1;
    margin-bottom: 32px;
}

.why-container .lead {
    grid-column: 1;
    grid-row: 2;
    line-height: 2;
    margin-bottom: 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
}

.why-points {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    max-width: 620px;
    margin: 32px auto 0;

    display: flex;
    flex-direction: column;
    gap: 2px;

    border-left: 1px solid rgba(200, 151, 58, 0.12);
    padding-left: 32px;
}

.why-point {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--subheading-font);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white-soft);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: color var(--transition);
}

.why-point:last-child {
    border-bottom: none;
}

.why-point::before {
    content: "■";
    color: var(--light-blue);
    font-family: var(--subheading-font);
    font-weight: 700;
    flex-shrink: 0;
}

.why-tagline {
    grid-column: 1 / -1;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(200, 151, 58, 0.1);
    text-align: center;
    font-family: var(--heading-font);
    font-size: 1.8rem;
    letter-spacing: 6px;
    line-height: 1;
    color: var(--white);
}

.span-red {
    color: red;
}

.body-class {
    font-size: 1.2rem !important;
}

.serve-h2 {
    color: var(--white) !important;
}

.section-h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    color: white;
}

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

/* ============================================
   WHY — RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {

    .why-container {
        grid-template-columns: 1fr 1fr;
        column-gap: 48px;
    }

    .why-points {
        padding-left: 32px;
    }

    .why-point {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .why-split {
        display: flex;
        flex-direction: column;
    }

    .why-split img {
        width: 250px;
    }

    .why-container {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .why-container .h1 {
        grid-column: 1;
    }

    .why-container .lead {
        grid-column: 1;
        grid-row: auto;
    }

    .why-body-stack {
        grid-column: 1;
        grid-row: auto;
    }

    .why-points {
        grid-column: 1;
        grid-row: auto;
        border-left: none;
        border-top: 1px solid rgba(200, 151, 58, 0.12);
        padding-left: 0;
        padding-top: 32px;
        margin-top: 32px;
    }

    .why-point {
        font-size: 18px;
        padding: 18px 0;
    }

    .why-tagline {
        grid-column: 1;
        font-size: clamp(38px, 10vw, 56px);
        margin-top: 36px;
        padding-top: 32px;
    }
}

@media (max-width: 480px) {

    .why-tagline {
        font-size: clamp(34px, 12vw, 48px);
        letter-spacing: 4px;
    }

    .why-point {
        font-size: 16px;
    }
}

/* Why AMHTO Exists */

.amhto-exist-section {
    background-color: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.amhto-exist-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("./assets/heads.png") center/cover;
    z-index: 0;
}

.amhto-exist-section > * {
    position: relative;
    z-index: 1;
}

.exists-container {
    max-width: 800px;
    margin: 32px auto 0;
    padding: 40px;
    color: var(--white-soft);
    background:
        linear-gradient(
            rgba(9, 27, 54, 0.85),
            rgba(9, 27, 54, 0.85)
        ),
        url("./assets/construction-site.jpg");

    background-size: cover;
    background-position: center;
    border-radius: 20px;
    border: 1px solid rgba(200, 151, 58, 0.12);
    margin-bottom: 75px;
}

.exists-container {
    position: relative;
    overflow: hidden;
}

.why {
    padding: 0;
    position: relative;
    background: var(--dark-blue);
    overflow: hidden;
}

.why::before,
.why::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 151, 58, 0.8);
    pointer-events: none;
}

.why::before,
.why::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(200, 151, 58, 0.9);
    pointer-events: none;
}

.why::after {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
}

.exists-container p {
    font-size: 1.05rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.exists-lead {
    font-family: var(--subheading-font);
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white) !important;
}

.exists-points {
    margin: 32px 0;
    padding-left: 32px;
    border-left: 1px solid rgba(200, 151, 58, 0.12);
}

.exists-point {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--subheading-font);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white-soft);
    display: flex;
    align-items: center;
    gap: 16px;
}

.exists-point:last-child {
    border-bottom: none;
}

.exists-point::before {
    content: "■";
    color: var(--light-blue);
    flex-shrink: 0;
}

.exists-highlight {
    font-family: var(--heading-font);
    font-size: 1.5rem !important;
    letter-spacing: 3px;
    line-height: 1.3 !important;
    color: var(--white) !important;
}

/* Why Industry Is Paying Attention Section */

.paying-attention-section {
    background:
        repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.02) 0px,
            rgba(0, 0, 0, 0.02) 1px,
            transparent 1px,
            transparent 40px),
        linear-gradient(180deg,
            var(--white-muted) 0%,
            var(--white-soft) 100%);
    position: relative;
    overflow: hidden;
    margin-top: -70px;
}

.paying-attention-section {
    clip-path: polygon(
        0 0,
        100% 8%,
        100% 100%,
        0 92%
    );
    padding-bottom: 150px;
    padding-top: 150px;
}

/* What AMHTO Is Not Section */

.is-not-section {
    background: linear-gradient(
        180deg,
        #091b36 0%,
        #102748 60%,
        #17355f 100%
    );

    padding-bottom: 125px;

    clip-path: polygon(
        0 4%,
        5% 0,
        10% 4%,
        15% 0,
        20% 4%,
        25% 0,
        30% 4%,
        35% 0,
        40% 4%,
        45% 0,
        50% 4%,
        55% 0,
        60% 4%,
        65% 0,
        70% 4%,
        75% 0,
        80% 4%,
        85% 0,
        90% 4%,
        95% 0,
        100% 4%,
        100% 100%,
        0 100%
    );

    padding-top: 8rem;
}

.is-not-section {
    position: relative;
}

.section-wave {
    position: absolute;
    bottom: -1px;
    left: 0;

    width: 100%;
    line-height: 0;
}

.section-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.section-wave-one svg {
    display: block;
    width: 100%;
    height: 80px;
}

.section-wave-one path {
    fill: var(--white-muted);
}

.section-wave path {
    fill: var(--dark-blue-soft);
}

.amhto-not-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
    padding-top: 50px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .your-section {
        clip-path: polygon(
            0 4%,
            20% 0,
            40% 4%,
            60% 0,
            80% 4%,
            100% 0,
            100% 100%,
            0 100%
        );
    }
}

/* GRID OVERLAY */

.paying-attention-section::before {
    content: "";
    position: absolute;
    inset: 0;

    opacity: 0.3;

    background-image:
        linear-gradient(rgba(25, 52, 94, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 52, 94, 0.5) 1px, transparent 1px);

    background-size: 60px 60px;
    pointer-events: none;
}

/* MAIN ANGLE */

.paying-attention-section::after {
    content: "";

    position: absolute;
    top: -15%;
    right: -10%;

    width: 45vw;
    height: 130%;

    background: linear-gradient(160deg,
            rgba(9, 27, 54, 0.4),
            transparent 70%);

    transform: skewX(-28deg);
    pointer-events: none;
}

/* ANGLE 01 - GOLD */

.attention-angle-one {
    position: absolute;
    bottom: -20%;
    left: -15%;

    width: 40vw;
    height: 120%;

    background: linear-gradient(210deg,
            rgba(200, 151, 58, 0.2),
            transparent 75%);

    transform: skewY(18deg);
    pointer-events: none;
}

/* ANGLE 02 - TEAL */

.attention-angle-two {
    position: absolute;
    top: 10%;
    left: 25%;

    width: 30vw;
    height: 110%;

    background: linear-gradient(120deg,
            rgba(42, 88, 170, 0.4),
            transparent 75%);

    transform: rotate(-12deg);
    pointer-events: none;
}

/* ANGLE 03 - BLUE */

.attention-angle-three {
    position: absolute;
    top: -5%;
    left: -5%;

    width: 25vw;
    height: 100%;

    background: linear-gradient(120deg,
            rgba(42, 88, 170, 0.4),
            transparent 75%);

    transform: rotate(15deg);
    pointer-events: none;
}


/* ANGLE 06 - DEEP NAVY */

.attention-angle-six {
    position: absolute;
    bottom: 5%;
    left: 45%;

    width: 25vw;
    height: 90%;

    background: linear-gradient(300deg,
            rgba(5, 18, 38, 0.07),
            transparent 80%);

    transform: skewY(-15deg);
    pointer-events: none;
}



.attention-container {
    position: relative;
    z-index: 2;
}

.paying-attention-wrap {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
}

.rule.blue {
    background: var(--dark-blue);
}

.attention-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    filter: brightness(85%) saturate(85%);
}

.body-text.blue {
    color: var(--dark-blue);
}

.section-heading.blue {
    color: var(--dark-blue);
}

.body-text.attention-highlight {
    color: var(--dark-blue);
    font-weight: 700;
}

.final-line {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-top: 3rem;
}

.final-line::before {
    content: "";
    display: block;

    border-top: 1px solid transparent;
    border-image: linear-gradient(to right,
            transparent,
            var(--dark-blue),
            transparent) 1;
    margin-bottom: 35px;
}

.body-text.final-line {
    color: var(--dark-blue) !important;
}

.paying-attention-section::before,
.paying-attention-section::after,
.attention-angle-one,
.attention-angle-two,
.attention-angle-three,
.attention-angle-four,
.attention-angle-five,
.attention-angle-six {
    z-index: 1;
}

.attention-container {
    position: relative;
    z-index: 5;
}

@media (max-width: 900px) {
    .paying-attention-wrap {
        grid-template-columns: 1fr;
    }

    .attention-img {
        height: 350px;
        order: -1;
    }
}

/* Industry Already Understand HOC */

.hoc-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.hoc-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hoc-image {
    flex: 1.2;
}

.hoc-content {
    flex: 0.8;
}

.hoc-image {
    display: flex;
    align-items: center;
}

.hoc-content {
    flex: 0.8;
    max-width: 500px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
}

.final-line {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    color: var(--white);
}

.hoc-image img {
    width: 100%;
    display: block;
    border-bottom: 5px solid var(--gold);
}

.body-text.attention-highlight {
    color: var(--white-muted);
}

#hoc-final {
    color: var(--gold)!important;
}

#final-line {
    color: var(--dark-blue)!important;
}

/* Tablet */
@media (max-width: 1024px) {
    .hoc-section {
        padding: 6rem 1.5rem;
    }

    .hoc-container {
        gap: 2rem;
    }

    .hoc-content {
        max-width: 480px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hoc-section {
        padding: 5rem 1.25rem;
    }

    .hoc-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .hoc-image,
    .hoc-content {
        flex: none;
        width: 100%;
    }

    .hoc-content {
        max-width: 100%;
        padding: 1rem;
    }

    .hoc-image img {
        max-width: 100%;
    }

    .final-line {
        padding: 1.25rem;
        font-size: 1rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hoc-section {
        padding: 4rem 1rem;
    }

    .hoc-container {
        gap: 2rem;
    }

    .final-line {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* Psychosocial Hazards vs AMHTO Controls Section */

.control-environment-section {
    background-color: var(--dark-blue);

    background-image:
        repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 2px,
            transparent 2px,
            transparent 80px);
}

.control-environment-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-kicker {
    margin-bottom: 1.5rem;

    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: var(--gold);
}

.control-statement {
    max-width: 950px;
    margin: 0 auto;

    font-size: clamp(2.4rem, 6vw, 5.5rem);
    line-height: 0.95;
    font-weight: 800;

    color: var(--white);
}

.control-intro {
    max-width: 760px;
    margin: 2rem auto 0;

    font-size: 1.1rem;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.75);
}

.control-word-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;

    margin-top: 5rem;

    background: var(--light-blue);
}

.control-word-grid span {
    padding: 2rem 1rem;

    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.9);
    background: rgba(9, 27, 54, 0.92);
}

@media (max-width: 768px) {
    .control-word-grid {
        grid-template-columns: 1fr 1fr;
    }

    .control-statement {
        line-height: 1.05;
    }
}

/* Who We Serve Section */

.serve-section {
    min-height: 80vh;
    padding: 100px 24px;

    background:
        linear-gradient(rgba(6, 14, 26, 0.92),
            rgba(6, 14, 26, 0.92)),
        url("./assets/serve-background.jpg");

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

    position: relative;
    overflow: hidden;
}

.belong-p {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--white-muted);
    line-height: 1.75;
    max-width: 700px;
    margin-bottom: 28px;
    padding-top: 10px;
}

.serve-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.serve-card {
    perspective: 1000px;
    min-height: 280px;
}

.serve-card-inner {
    position: relative;
    width: 100%;
    height: 100%;

    min-height: 280px;
    background-color: var(--dark-blue-soft);
    transition: transform 1.2s ease;
    transform-style: preserve-3d;
}

.serve-card:hover .serve-card-inner {
    transform: rotateY(180deg);
}

.serve-card-front,
.serve-card-back {
    position: absolute;
    inset: 0;
    padding: 36px;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.serve-card-front {
    border-top: 3px solid var(--gold);
}

.serve-card-back {
    transform: rotateY(180deg);
    border-top: 3px solid var(--gold);
    background: transparent;
}

.read-more {
    color: var(--white);
    padding-top: 50px;
    text-align: right;
}

.serve-card-front h3,
.serve-card-back h3 {
    margin-bottom: 12px;
    color: var(--light-blue);
}

.serve-card-front span {
    color: var(--gold);
    font-weight: 700;
}

.serve-card-back p {
    color: var(--white);
    line-height: 1.6;
    font-family: var(--body-font);
}

.serve-card h3 {
    margin-bottom: 12px;
    color: var(--light-blue);
}

.lead {
    color: var(--white);
}

.serve-card p {
    color: var(--white);
    line-height: 1.5;
}

.serve-card span {
    display: block;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 700;
}

.serve-statement {
    max-width: 900px;
    margin: 120px auto 0;
    text-align: center;
}

.serve-statement {
    max-width: 900px;
    margin: 120px auto 0;
    text-align: center;
}

.statement-top {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.g {
    color: var(--gold);
}

.lead {
    max-width: 800px;
    margin: 0 auto 32px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.statement-bottom {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 500;
    color: var(--white);
}

.gold-text {
    color: var(--gold);
    font-weight: 700;
}

.serve-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;

    max-width: 1200px;
    margin: 60px auto;
}

.serve-images img {
    height: 350px;
    width: 100%;

    max-width: 300px;

    object-fit: cover;
    border-radius: 25px;
    border: 3px solid var(--gold);
}

.serve-images img:nth-child(2) {
    height: 450px;
    max-width: 380px;
}

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

@media (max-width: 1024px) {

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

    .serve-images {
        gap: 24px;
    }

    .serve-images img {
        height: 280px;
    }

}


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

@media (max-width: 768px) {

    .serve-section {
        padding: 80px 20px;
    }

    .serve-h2 {
        text-align: center;
    }

    .serve-header {
        text-align: center;
    }

    .serve-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 50px;
    }

    .serve-card {
        min-height: 240px;
    }

    .serve-card-inner {
        min-height: 240px;
    }

    .serve-card-front,
    .serve-card-back {
        padding: 28px;
    }

    .serve-statement {
        margin-top: 80px;
    }

    .serve-images {
        flex-direction: column;
        gap: 24px;
        margin: 40px 0;
    }

    .serve-images img {
        width: 100%;
        max-width: 500px;
        height: 250px;
        margin: 0;
    }

}


/* ==========================================
   SMALL PHONES
   ========================================== */

@media (max-width: 480px) {

    .serve-card-front,
    .serve-card-back {
        padding: 24px;
    }

    .serve-card h3,
    .serve-card-front h3 {
        font-size: 1.3rem;
    }

    .serve-card-back p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .serve-images img {
        height: 220px;
    }

}

/* How It Works Section */

.how-it-works {
    position: relative;
    padding: 120px 24px;
    background:
        linear-gradient(168deg,
            #0C1E34 0%,
            #060E1A 55%,
            #030810 100%);
    overflow: hidden;
}

.how-bg,
.how-grid,
.how-slash {
    position: absolute;
    pointer-events: none;
}

.how-grid {
    inset: 0;
    opacity: 0.045;
    background-image:
        linear-gradient(rgba(200, 151, 58, 0.7) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 151, 58, 0.7) 1px, transparent 1px);
    background-size: 55px 55px;
}

.how-h3 {
    color: var(--white);
}

.how-slash {
    top: -15%;
    right: -5%;
    width: 65vw;
    height: 140%;
    background: linear-gradient(165deg, rgba(12, 138, 152, 0.09), transparent 60%);
    transform: skewX(32deg);
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.works-intro {
    width: 100%;
    margin-top: 50px;
}

.works-intro h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin: 18px 0;
}

.works-intro p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Images */

.split-images {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;

    max-width: 1100px;
    margin: 80px auto;
}

.images-left,
.images-right {
    width: 100%;
    max-width: 500px;
}

.images-left p,
.images-right p {
    margin-top: 24px;
    text-align: left;
}

.how-images img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Four Step Cards */

.foundations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 80px;
}

.foundation-card {
    padding: 32px;
    border-top: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    background: rgba(255, 255, 255, 0.025);
}

.foundation-card span {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(200, 151, 58, 0.35);
    margin-bottom: 20px;
}

.foundation-card h3 {
    color: var(--light-blue);
    margin-bottom: 18px;
}

.foundation-card p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Framework */

.framework-section {
    margin-top: 100px;
    padding: 50px;
    border-left: 4px solid var(--gold);
    background: rgba(0, 0, 0, 0.22);
}

.framework-section h3 {
    color: var(--gold);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 28px;
}

.framework-section p,
.framework-section li {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.framework-section ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 28px;
    margin: 30px 0;
    padding-left: 20px;
}

/* Final Action Statement */

.action-statement {
    max-width: 900px;
    margin: 120px auto 0;
    text-align: center;
    padding: 50px;
    background:
        linear-gradient(rgba(6, 14, 26, 0.85),
            rgba(6, 14, 26, 0.85)),
        url("./assets/image-one.jpg");

    background-size: cover;
    background-position: center;
    border-radius: 25px;
}

.action-statement h3 {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 18px;
}

.action-statement .gold {
    color: var(--gold);
    margin-bottom: 36px;
}

.action-statement p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Responsive */

@media (max-width: 1000px) {
    .foundations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 700px) {
    .how-it-works {
        padding: 90px 20px;
    }

    .foundations-grid,
    .framework-section ul {
        grid-template-columns: 1fr;
    }

    .foundation-card,
    .framework-section {
        padding: 28px;
    }

    .action-statement {
        margin-top: 80px;
    }
}

/* PROVIDES SECTION */

.provides-section {
    padding: var(--section-padding);
    background: var(--dark-blue-soft);
    position: relative;
    overflow: hidden;
}

.provides-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image:
        linear-gradient(rgba(200, 151, 58, 0.7) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 151, 58, 0.7) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
}

/* ANGLE 01 */

.provides-section::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -10%;
    width: 45vw;
    height: 130%;

    background: linear-gradient(160deg,
            rgba(12, 138, 152, 0.05),
            transparent 65%);

    transform: skewX(-28deg);
    pointer-events: none;
}

/* ANGLE 02 */

.provides-section::after {
    content: "";
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 40vw;
    height: 120%;

    background: linear-gradient(210deg,
            rgba(200, 151, 58, 0.06),
            transparent 70%);

    transform: skewY(18deg);
    pointer-events: none;
}

/* ANGLE 03 */

.provides-angle {
    position: absolute;
    top: 10%;
    left: 25%;

    width: 30vw;
    height: 110%;

    background: linear-gradient(135deg,
            rgba(42, 88, 170, 0.05),
            transparent 75%);

    transform: rotate(-12deg);
    pointer-events: none;

}

.provides-container {
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.provides-header {
    margin-bottom: 52px;
}

/* Provide Cards */

.provides-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(200, 151, 58, 0.07);
    margin-bottom: 96px;
}

.provide-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 32px 28px;
    background: var(--dark-blue-soft);
    border-top: 2px solid transparent;

    font-family: var(--subheading-font);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white-soft);
    line-height: 1.5;

    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.provide-item::before {
    content: "—";
    color: var(--gold);
    font-family: var(--subheading-font);
    font-weight: 700;
    flex-shrink: 0;
}

.provide-item:hover {
    border-top-color: var(--gold);
    color: var(--white);
    background: var(--dark-blue-alt);
}

/* Known By Name Section */

.known-by-section {
    background:
        linear-gradient(
            180deg,
            rgba(248, 248, 248, 0.2) 0%,
            rgba(240, 240, 240, 0.2) 100%
        ),
        url("./assets/white-background.jpg");

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

}

.known-by-section .body-text {
    max-width: 850px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.known-grid {
    max-width: 1200px;
    margin: 5rem auto;

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

.known-card {
    padding: 2rem;

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

    border: 1px solid rgba(9, 27, 54, 0.08);
    border-radius: 16px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);

    transition: 0.3s ease;
}

.known-card:hover {
    transform: translateY(-8px);

    border-color: var(--gold);
}

.known-card.featured {
    transform: rotate(-3deg);

    background: linear-gradient(
        135deg,
        var(--gold),
        #e8bf63
    );

    color: var(--dark-blue);

    border: none;
}

.known-card.featured:hover {
    transform: rotate(-3deg) translateY(-8px);
}

.known-card span {
    display: block;

    margin-bottom: 1rem;

    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;

    color: var(--gold);
}

.known-card.featured span {
    color: var(--dark-blue);
}

.known-card h3 {
    margin-bottom: 1rem;

    font-size: 1.6rem;
    color: var(--dark-blue);
}

.known-card p {
    margin: 0;

    line-height: 1.7;
}

.visibility-statement {
    max-width: 900px;
    margin: 0 auto 2rem;

    text-align: center;

    font-size: 1.4rem;
    font-weight: 700;

    color: var(--dark-blue);
}

.visibility-final {
    max-width: 900px;
    margin: 0 auto;

    text-align: center;

    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;

    color: var(--dark-blue);
}

.visibility-final::before {
    content: "";

    display: block;

    width: 250px;
    height: 2px;

    margin: 0 auto 3rem;

    background: linear-gradient(
        to right,
        transparent,
        var(--gold),
        transparent
    );
}

@media (max-width: 900px) {
    .known-grid {
        grid-template-columns: 1fr;
    }

    .known-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* Growth Control Framework */

.growth-control-section {
    background: linear-gradient(
    135deg,
    #051224 0%,
    #0b2342 35%,
    #133861 70%,
    #1b4c7f 100%
);
}

.growth-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.no-exceptions {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin:  0;
}

.growth-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-left: solid 5px var(--gold);

    max-width: 1000px;
    margin: 50px auto;
    padding-left: 2rem;
}

.growth-principles {
    flex: 0 1 600px;
    color: var(--gold);
    line-height: 3rem;
}

.growth-image {
    flex: 0 0 450px;
}

.growth-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.growth-final {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-blue);
    text-align: center;
}

.body-text.growth-highlight {
    color: var(--gold);
}

.body-text.no-exceptions {
    color: var(--gold);
}

.body-text.growth-final {
    color: var(--gold);
}

.growth-control-section {
    background: linear-gradient(
    135deg,
    #051224 0%,
    #0b2342 35%,
    #133861 70%,
    #1b4c7f 100%
);
}

.growth-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.no-exceptions {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin:  0;
}

.growth-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-left: solid 5px var(--gold);

    max-width: 1000px;
    margin: 50px auto;
    padding-left: 2rem;
}

.growth-principles {
    flex: 0 1 600px;
    color: var(--gold);
    line-height: 3rem;
}

.growth-image {
    flex: 0 0 450px;
}

.growth-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.growth-final {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-blue);
    text-align: center;
}

.body-text.growth-highlight {
    color: var(--gold);
}

.body-text.no-exceptions {
    color: var(--gold);
}

.body-text.growth-final {
    color: var(--gold);
}

/* =========================
   Tablet
========================= */
@media (max-width: 1024px) {

    .growth-content {
        gap: 2rem;
        padding-left: 1.5rem;
    }

    .growth-principles {
        flex: 1;
        line-height: 2.5rem;
    }

    .growth-image {
        flex: 0 0 350px;
    }

    .growth-highlight {
        font-size: 1.3rem;
    }

    .no-exceptions {
        font-size: 2rem;
    }

    .growth-final {
        font-size: 1.75rem;
    }
}


/* =========================
   Mobile
========================= */
@media (max-width: 768px) {

    .growth-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;

        border-left: none;
        border-top: 5px solid var(--gold);

        padding-left: 0;
        padding-top: 2rem;
    }

    .growth-principles {
        flex: none;
        width: 100%;
        line-height: 2rem;
    }

    .growth-image {
        flex: none;
        width: 100%;
        max-width: 450px;
    }

    .growth-image img {
        width: 100%;
    }

    .growth-highlight {
        font-size: 1.2rem;
    }

    .no-exceptions {
        font-size: 1.8rem;
    }

    .growth-final {
        font-size: 1.5rem;
    }
}


/* =========================
   Small Mobile
========================= */
@media (max-width: 480px) {

    .growth-content {
        margin: 2rem auto;
        gap: 1.5rem;
    }

    .growth-principles {
        line-height: 1.8rem;
    }

    .growth-highlight {
        font-size: 1.1rem;
    }

    .no-exceptions {
        font-size: 1.5rem;
    }

    .growth-final {
        font-size: 1.3rem;
        line-height: 1.4;
    }
}
/* Regional Statement */

.regional-statement {
    padding-top: 64px;
    border-top: 1px solid rgba(200, 151, 58, 0.1);
}

.regional-statement h3 {
    font-family: var(--subheading-font);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 5px;
    color: rgba(200, 151, 58, 0.5);
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Split Layout */

.regional-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;

    max-width: 1200px;
    margin: 80px auto;
}

.regional-left {
    text-align: left;
}

.regional-right {
    width: 100%;
}

.regional-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: 70% center;
    display: block;

    border-top: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
}

/* Word Tags */

.regional-words {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 6px;
    margin-bottom: 36px;
    padding-top: 8px;
}

.regional-words span {
    font-family: var(--subheading-font);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark-blue);
    background: var(--gold);
    padding: 5px 14px;
    border-radius: 2px;
}

/* Paragraphs */

.regional-statement .operational-line {
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 22px;
}

.regional-statement .operational-line:first-of-type {
    color: var(--gold);
    font-size: 1.35rem;
    font-weight: 700;
}

/* Closing Line */

.regional-close {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 60px 0 0;
    padding-top: 36px;
    border-top: 1px solid rgba(200, 151, 58, 0.1);
    text-align: center;
}

.regional-close span {
    font-family: var(--heading-font);
    font-size: clamp(22px, 3vw, 36px);
    letter-spacing: 3px;
    color: var(--white-soft);
    padding-right: 32px;
    margin-right: 32px;
    border-right: 1px solid rgba(200, 151, 58, 0.18);
    line-height: 1.2;
}

.regional-close span:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    color: var(--gold);
}

/* ================================
   PROVIDES SECTION RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 1024px) {
    .provides-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 72px;
    }

    .regional-split {
        grid-template-columns: 1fr;
        gap: 44px;
        margin: 60px auto;
    }

    .regional-right img {
        height: 480px;
        object-position: center;
    }

    .regional-close {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: flex-start;
    }

    .regional-close span {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .provides-section {
        padding: 80px 20px;
    }

    .provides-header {
        margin-bottom: 36px;
    }

    .provides-grid {
        grid-template-columns: 1fr;
        margin-bottom: 56px;
    }

    .provide-item {
        padding: 26px 22px;
        font-size: 14px;
    }

    .regional-statement {
        padding-top: 44px;
    }

    .regional-statement h3 {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .regional-statement h2 {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 32px;
    }

    .regional-split {
        gap: 34px;
        margin: 44px auto;
    }

    .regional-words {
        gap: 8px;
        margin-bottom: 28px;
    }

    .regional-words span {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 5px 10px;
    }

    .regional-statement .operational-line {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .regional-statement .operational-line:first-of-type {
        font-size: 1.15rem;
    }

    .regional-right img {
        height: 650px;
        border-top: 3px solid var(--gold);
        border-right: 3px solid var(--gold);
        object-position: center 80%;
    }

    .regional-close {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-top: 44px;
        padding-top: 28px;
    }

    .regional-close span {
        font-size: 1.7rem;
        letter-spacing: 2px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .provides-section {
        padding: 70px 18px;
    }

    .provide-item {
        padding: 22px 18px;
    }

    .regional-statement h2 {
        font-size: 1.75rem;
    }

    .regional-right img {
        height: 650px;
    }
}

/* Pilots Section */

.pilot-zero-section {
    position: relative;
    padding: 140px 24px;
    background: linear-gradient(145deg,
            #050c16 0%,
            #08131f 40%,
            #0c2733 100%);
    background-size: 120px 100%, 100% 100%;
    color: var(--white);
    overflow: hidden;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 95%,
        50% 100%,
        0 95%
    );
}

.pilot-zero-section::before {
    content: "PILOT ZERO";
    position: absolute;
    top: 70px;
    right: 40px;
    font-family: var(--heading-font);
    font-size: 10rem;
    letter-spacing: 10px;
    color: rgba(255, 255, 255, 0.025);
    white-space: nowrap;
    pointer-events: none;
}

.pilot-zero-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 150px;
}

.ambulance-image img {
    width: 100%;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    display: block;
    margin: 0 auto;
    padding-top: 18px;
}

/* LEFT SIDE */

.pilot-zero-intro {
    position: sticky;
    top: 120px;
    padding-left: 28px;
    border-left: 3px solid var(--gold);
}

.pilot-zero-intro p {
    max-width: 520px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 22px;
    padding-top: 25px;
}

.pilot-zero-highlight {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(200, 151, 58, 0.25);
    font-family: var(--subheading-font);
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    letter-spacing: 1px;
    line-height: 1.4 !important;
    color: var(--gold) !important;
}

/* RIGHT SIDE */

.pilot-zero-content {
    position: relative;
    padding: 54px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
    border-top: 3px solid var(--gold);
    border-right: 1px solid rgba(200, 151, 58, 0.22);
    border-bottom: 1px solid rgba(200, 151, 58, 0.08);
}

.pilot-zero-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 44px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(200, 151, 58, 0.18);
}

.pilot-zero-heading span {
    font-family: var(--heading-font);
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 0.85;
    letter-spacing: 4px;
    color: var(--white);
}

.pilot-zero-heading h3 {
    font-family: var(--subheading-font);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}

.pilot-zero-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 22px;
}

/* LIST */

.pilot-zero-list {
    list-style: none;
    padding: 0;
    margin: 34px 0 42px;
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(200, 151, 58, 0.14);
}

.pilot-zero-list li {
    position: relative;
    padding: 18px 0 18px 42px;
    border-bottom: 1px solid rgba(200, 151, 58, 0.1);

    font-family: var(--subheading-font);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white-soft);
}

.pilot-zero-list li::before {
    content: "0"counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 18px;

    font-family: var(--subheading-font);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold);
}

.pilot-zero-list {
    counter-reset: item;
}

/* CLOSING */

.pilot-zero-closing {
    margin-top: 34px;
    padding: 30px 32px;
    background: rgba(200, 151, 58, 0.08);
    border-left: 3px solid var(--gold);

    font-family: var(--subheading-font);
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px;
    line-height: 1.5 !important;
    color: var(--white) !important;
}

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

@media (max-width: 1050px) {
    .pilot-zero-container {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .pilot-zero-intro {
        position: relative;
        top: auto;
    }

    .pilot-zero-content {
        padding: 44px;
    }
}

@media (max-width: 768px) {
    .pilot-zero-section {
        padding: 90px 20px;
    }

    .pilot-zero-section::before {
        top: 30px;
        right: -20px;
        font-size: 5rem;
    }

    .pilot-zero-intro {
        padding-left: 20px;
    }

    .pilot-zero-intro h2 {
        margin-bottom: 28px;
    }

    .pilot-zero-highlight {
        font-size: 1.1rem !important;
    }

    .pilot-zero-content {
        padding: 34px 24px;
    }

    .pilot-zero-heading {
        display: block;
    }

    .pilot-zero-heading span {
        display: block;
        font-size: 3.2rem;
        margin-bottom: 14px;
    }

    .pilot-zero-list li {
        padding-left: 38px;
        font-size: 0.8rem;
    }

    .pilot-zero-closing {
        padding: 24px 22px;
        font-size: 0.95rem !important;
    }

    .ambulance-image img {
        margin: 0 auto;
    }
}

/* Operational Outputs */

.outputs-h3 {
    color: var(--light-blue);
    padding-bottom: 25px;
}

.outputs-h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.outcome-item {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--gold);
    font-weight: 600;
    color: var(--white);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 2rem auto;
}

.outcomes-statement {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 2rem;
}

.outcomes-highlight {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    max-width: 900px;
    margin: 1rem auto 0;
}

/* =========================
   Tablet
========================= */
@media (max-width: 1024px) {

    .outcomes-grid {
        max-width: 800px;
        gap: 0.9rem;
    }

    .outputs-h3 {
        font-size: 1.8rem;
    }

    .outcomes-highlight {
        font-size: 1.6rem;
    }
}


/* =========================
   Mobile
========================= */
@media (max-width: 768px) {

    .outcomes-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 0.85rem;
    }

    .outcome-item {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .outputs-h3 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .outcomes-statement {
        font-size: 1.05rem;
    }

    .outcomes-highlight {
        font-size: 1.35rem;
        line-height: 1.4;
    }
}


/* =========================
   Small Mobile
========================= */
@media (max-width: 480px) {

    .outputs-h3 {
        font-size: 1.3rem;
    }

    .outcome-item {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .outcomes-statement {
        font-size: 1rem;
    }

    .outcomes-highlight {
        font-size: 1.2rem;
    }
}

/* Government, Regional Development & Community Engagement */

.engagement-section {
    background-color: var(--white-muted);

    background-image:
        radial-gradient(
            rgba(9, 27, 54, 0.08) 1px,
            transparent 1px
        );

    background-size: 30px 30px;
}

.engagement {
    color: var(--white);
}

.engagement-row h3 {
    color: var(--dark-blue);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.engagement p {
    color: rgba(255,255,255,0.9);
}

.engagement-row p {
    line-height: 25px;
}

.engagement strong {
    color: var(--white);
}

.engagement ul {
    margin: 1rem 0 2rem 1.5rem;
}

.engagement li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.school-image-div img {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    margin-top: 50px;
}

.image-caption {
    text-align: center;
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.8;
    margin-top: 0.75rem;
}

.ral-ral-highlight {
    margin-top: 3rem;
    padding: 2rem;
    border-left: 4px solid var(--gold);
    background: rgba(255,255,255,0.05);
}

.ral-ral-highlight h3 {
    margin-top: 0;
}

/* Support Section */

.support-section {
    position: relative;
    overflow: hidden;
    padding: 88px 6%!important;
}

.support-section::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

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

    top: -250px;
    right: -200px;

    transform: rotate(45deg);

    z-index: -1;
}

.support-section::after {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

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

    bottom: -150px;
    left: -150px;

    transform: rotate(-25deg);

    z-index: -1;
}

.support-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.support-section::before {
    content: "";
    position: absolute;

    width: 450px;
    height: 450px;

    background: rgba(201, 162, 39, 0.04);

    top: -200px;
    right: -200px;

    transform: rotate(45deg);

    z-index: -1;
}

.support-section::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    border: 2px solid rgba(201, 162, 39, 0.08);

    bottom: -150px;
    left: -150px;

    transform: rotate(25deg);

    z-index: -1;
}

.support img {
    height: 250px;
    cursor: pointer;
}

.support-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

    gap: 2rem;

    max-width: 1200px;
    margin: 3rem auto 0;
    align-items: center;
}

.support-container img {
    width: 100%;
    max-width: 180px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto;
cursor: pointer;
}

.support-logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.support-logo:hover {
    transform: scale(1.05);
}

.support-modal {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

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

    background: rgba(0, 0, 0, 0.95);

    z-index: 2147483647;
}

.support-modal.active {
    display: flex;
}

.support-modal img {
    position: relative;
    z-index: 2;

    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    object-fit: contain;
}

.close-modal {
    position: fixed;
    top: 20px;
    right: 30px;

    z-index: 3;

    color: white;
    font-size: 3rem;
    cursor: pointer;
}

/* Support & Investment Opportunities */

.contact-channels-section {
    padding: 120px 24px;
    background: var(--dark-blue-soft);
}

.contact-channels-container {
    max-width: 1180px;
    margin: 0 auto;
}

.contact-channels-header {
    max-width: 680px;
    margin-bottom: 70px;
}

.contact-channels-header p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.66);
}

/* CONTACT CARD */

.investment-section {
    width: 100%;
    background-color: var(--dark-blue-soft);
}

.contact-channels-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.channel-card {
    display: block;
    position: relative;
    padding: 60px 0;
    text-decoration: none;
}

.channel-number {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    line-height: 1;
    color: rgba(200, 151, 58, 0.38);
    margin-bottom: 1rem;
}

.channel-card h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1rem;
}

.channel-card p {
    max-width: 650px;
    font-size: 1rem;
    line-height: 1.8;
    font-family: var(--body-font);
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
}

.channel-card span {
    display: inline-block;
    font-family: var(--subheading-font);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .channel-card {
        grid-template-columns: 70px 1fr;
        gap: 24px;
        align-items: start;
        padding: 30px 0 70px;
    }

    .split-images {
        display: flex;
        flex-direction: column;
    }

    .channel-card p {
        grid-column: 2;
    }

    .channel-card span {
        left: 94px;
        right: auto;
    }

    .channel-card::before {
        left: 70px;
    }
}

@media (max-width: 600px) {
    .contact-channels-section {
        padding: 80px 20px;
    }

    .channel-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 30px 0 76px;
    }

    .channel-card::before {
        display: none;
    }

    .channel-number {
        font-size: 2rem;
    }

    .channel-card span {
        left: 0;
        bottom: 26px;
        font-size: 0.72rem;
        letter-spacing: 1.5px;
    }
}

/* Footer Section */

.footer {
    position: relative;
    padding: 90px 0 70px;
    background: var(--black-blue);
    border-top: 1px solid rgba(200, 151, 58, 0.16);
    text-align: center;
    overflow: hidden;
}

.footer::before {
    content: "ALWAYS FORWARD";
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    font-family: var(--heading-font);
    font-size: 8.2rem;
    letter-spacing: 10px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
}

.footer h2 {
    font-family: var(--heading-font);
    font-size: 3.2rem;
    line-height: 0.85;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer p {
    font-family: var(--body-font);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.footer-organisation {
    font-size: 1rem;
}

.footer-tagline {
    font-family: var(--subheading-font) !important;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white-soft) !important;
}

.footer-section {
    padding: 0!important;
}

.footer-divider {
    width: 70px;
    height: 3px;
    background: var(--gold);
    margin: 36px auto;
}

.footer-divider h3 {
    color: var(--white);
}

.footer h3 {
    color: var(--white);
}

.footer-closing {
    font-family: var(--heading-font) !important;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 3px;
    color: var(--white) !important;
}

.footer-motto {
    font-family: var(--subheading-font) !important;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold) !important;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.footer-logo img {
    padding-top: 50px;
    width: 180px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 600px) {
    .footer {
        padding: 75px 20px 55px;
    }

    .footer::before {
        top: 30px;
        font-size: 1.2rem;
        letter-spacing: 6px;
    }

    .footer h2 {
        font-size: 4rem;
    }

    .footer-tagline {
        font-size: 0.72rem;
        letter-spacing: 2px;
    }

    .footer-motto {
        letter-spacing: 3px;
    }
}

/* Advertisement */

.footer-credit {
    background: #0b0b0b;
    padding: 18px 20px;
    text-align: center;
    border-top: 1px solid rgba(242, 106, 33, 0.18);
}

.footer-credit a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;

    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;

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

.footer-credit span {
    color: #f26a21;
}

.footer-credit a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.footer-credit a:hover span {
    color: #ff7a2f;
}

@media (max-width: 768px) {
    .footer-credit a {
        font-size: 1rem;
        letter-spacing: 0.06em;
        line-height: 1.5;
    }
}

/* Pilot Zero Responsive */

@media (max-width: 1050px) {
    .pilot-zero-container {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .pilot-zero-intro {
        position: relative;
        top: auto;
    }

    .pilot-zero-content {
        width: 100%;
        max-width: 100%;
        padding: 44px;
    }
}

@media (max-width: 768px) {
    .pilot-zero-section {
        padding: 90px 20px;
        overflow-x: hidden;
    }

    .pilot-zero-section::before {
        top: 30px;
        right: -20px;
        font-size: 5rem;
    }

    .pilot-zero-intro {
        padding-left: 20px;
    }

    .pilot-zero-content {
        padding: 34px 24px;
    }

    .pilot-zero-heading {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 28px;
    }

    .pilot-zero-heading span {
        font-size: 3.2rem;
        line-height: 1;
    }

    .pilot-zero-heading h3 {
        font-size: 0.8rem;
        letter-spacing: 4px;
        white-space: normal;
    }

    .pilot-zero-list li {
        padding-left: 38px;
        font-size: 0.8rem;
    }

    .pilot-zero-closing {
        padding: 24px 22px;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .pilot-zero-section {
        padding: 70px 18px;
    }

    .pilot-zero-intro {
        padding-left: 16px;
    }

    .pilot-zero-intro h2 {
        font-size: 2.1rem;
        line-height: 1;
    }

    .pilot-zero-intro p,
    .pilot-zero-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .pilot-zero-content {
        padding: 28px 20px;
    }

    .pilot-zero-heading span {
        font-size: 2.7rem;
    }

    .ambulance-image img {
        height: 220px;
    }
}

.why-section > .why-grid,
.provides-section > .provides-container {
    max-width: none;
    margin: 0;
}

.why-container,
.provides-grid,
.regional-statement,
.regional-close {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.website-link {
    padding-top: 25px;
}

/* Call To Action Section */

.cta-list {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.cta-intro {
    font-size: 1.2rem;
    color: var(--white-soft);
    margin-bottom: 2rem;
}

.cta-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 3rem;
}

.cta-types span {
    padding: 10px 18px;
    border-left: 3px solid var(--gold);
    background: rgba(255,255,255,0.04);
    color: var(--white-soft);
    font-weight: 600;
}

.cta-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-closing {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white-soft);
}

.cta-closing gold {
    color: var(--gold);
}

.contact-channels-grid h3 {
    color: var(--white);
}

.cta-para {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    color: var(--white);
    line-height: 28px;
    border-left: solid 3px var(--gold);
    padding: 15px;
}

.contact-channels-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.info {
    color: var(--light-blue);
    line-height: 28px;
}

/* Scroll Reveal */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sr-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 768px) {
    .contact-channels-grid {
        display: flex;
        flex-direction: column;
    }
}