/* =========================================================
   HOLS-FIELD — WHY CHOOSE US
   COMPLETE PAGE CSS
   Hero refined to match the approved industrial mockup.
   Works with the existing why-choose-us.html.
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --orange: #ff7900;
    --orange-dark: #e96600;
    --black: #030303;
    --black-soft: #070808;
    --cream: #f3eee7;
    --white: #f7f7f5;
    --muted: #a9aaa7;
    --line: rgba(255,255,255,.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: "Poppins", Arial, sans-serif;
}

a {
    color: inherit;
}

.why-page {
    width: 100%;
    overflow: hidden;
    background: var(--black);
}


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

.why-hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    padding-top: 72px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #020303;
}

/* Subtle technical grid */
.why-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .20;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 70px 70px;
}

/* Warm atmospheric glow */
.why-hero::after {
    content: "";
    position: absolute;
    width: 680px;
    height: 680px;
    right: 4%;
    top: 7%;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(
        circle,
        rgba(255,121,0,.12) 0%,
        rgba(255,121,0,.04) 35%,
        transparent 72%
    );
    filter: blur(24px);
}


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

.why-hero-image {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 36% !important;
    z-index: -4 !important;
    overflow: hidden;
    background:
        url("../images/why-choose-hero.jpg")
        center center / cover no-repeat !important;
    opacity: 1 !important;
}

/* Deep cinematic fade into the text */
.why-hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            #020303 0%,
            rgba(2,3,3,.98) 13%,
            rgba(2,3,3,.86) 28%,
            rgba(2,3,3,.50) 47%,
            rgba(2,3,3,.14) 72%,
            transparent 100%
        );
}

/* Bottom cinematic fade */
.why-hero-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 34%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,.82)
    );
}


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

.why-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(2,3,3,.98) 0%,
            rgba(2,3,3,.94) 28%,
            rgba(2,3,3,.68) 46%,
            rgba(2,3,3,.20) 72%,
            rgba(2,3,3,.04) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.86) 0%,
            transparent 35%
        );
}


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

.why-hero-content {
    position: relative;
    z-index: 5;
    width: 50%;
    max-width: 760px;
    margin-left: 6.5%;
    padding-top: 76px;
    padding-bottom: 115px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}


/* =========================================================
   HERO EYEBROW
   Dash — ENGINEERING | ENERGY | EXECUTION — Dash
========================================================= */

.why-hero-content .eyebrow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: max-content;
    margin: 0 0 25px;
    color: #e8e8e5;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .27em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Remove the old HTML span so the dash is controlled here */
.why-hero-content .eyebrow > span {
    display: none;
}

/* Dash in front */
.why-hero-content .eyebrow::before {
    content: "—";
    color: var(--orange);
    font-size: 22px;
    font-weight: 500;
    line-height: 0;
    letter-spacing: 0;
}

/* Dash at the back */
.why-hero-content .eyebrow::after {
    content: "—";
    color: var(--orange);
    font-size: 22px;
    font-weight: 500;
    line-height: 0;
    letter-spacing: 0;
}

/* The separators between words */
.why-hero-content .eyebrow b {
    color: var(--orange);
    font-weight: 800;
}


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

.why-hero-title {
    margin: 0;
    padding: 0;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: "Barlow Condensed", Arial Narrow, sans-serif;
    font-weight: 700;
    line-height: .86;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

/* ENGINEERED — ORANGE */
.why-hero-title span:first-child {
    color: var(--orange);
    font-size: clamp(5.2rem, 7vw, 8.8rem);
    font-weight: 700;
    line-height: .86;
}

/* TO DELIVER — WHITE */
.why-hero-title span:nth-child(2) {
    color: #f7f7f5;
    font-size: clamp(5.2rem, 7vw, 8.8rem);
    font-weight: 700;
    line-height: .86;
}

/* POWERING PROGRESS — ORANGE */
.why-hero-title strong {
    display: block;
    margin-top: 13px;
    color: var(--orange) !important;
    font-family: "Barlow Condensed", Arial Narrow, sans-serif;
    font-size: clamp(3.2rem, 4.35vw, 5.4rem);
    font-weight: 700;
    line-height: .90;
    letter-spacing: -.015em;
}


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

.why-hero-content > p {
    max-width: 650px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.75;
    letter-spacing: .05px;
}


/* =========================================================
   WATCH OUR STORY — ORANGE
========================================================= */

.hero-outline-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 13px;
    height: 54px;
    min-width: 205px;
    margin-top: 29px;
    padding: 0 25px !important;
    border: 1px solid var(--orange) !important;
    border-radius: 2px;
    background: var(--orange) !important;
    color: #080808 !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease,
        color .3s ease;
}

.hero-outline-btn i {
    color: #080808 !important;
    font-size: 10px;
}

.hero-outline-btn:hover {
    background: #ff8a1c !important;
    color: #080808 !important;
    transform: translateY(-2px);
    box-shadow:
        0 0 30px rgba(255,121,0,.20),
        0 12px 30px rgba(0,0,0,.35);
}


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

.hero-proof {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 44%;
    z-index: 10;
    min-height: 88px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 !important;
    background: rgba(2,3,3,.88);
    border-top: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
}

.proof-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 20px;
    border-right: 1px solid rgba(255,255,255,.11);
}

.proof-item:last-child {
    border-right: 0;
}

.proof-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: grid;
    place-items: center;
    border: 1px solid var(--orange);
    border-radius: 50%;
    color: var(--orange);
    font-size: 13px;
}

.proof-item strong {
    display: block;
    color: var(--orange);
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

.proof-item span {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.48);
    font-size: 7px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* =========================================================
   SIX STRENGTHS
========================================================= */

.strengths-section {
    position: relative;
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 42px;
    padding: 68px 6.5%;
    background:
        radial-gradient(
            circle at 0 50%,
            rgba(255,121,0,.045),
            transparent 28%
        ),
        var(--cream);
    color: #111;
}

.strengths-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 210px;
    height: 100%;
    opacity: .20;
    pointer-events: none;
    background-image:
        radial-gradient(
            circle,
            rgba(255,121,0,.45) 1px,
            transparent 1px
        );
    background-size: 10px 10px;
    mask-image: linear-gradient(90deg,#000,transparent);
}

.strengths-intro,
.strengths-grid {
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: var(--orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.strengths-intro h2 {
    margin: 0;
    font-family: "Barlow Condensed", Arial Narrow, sans-serif;
    font-size: 45px;
    line-height: .93;
    font-weight: 700;
}

.strengths-intro h2 span {
    color: var(--orange);
}

.strengths-intro p {
    max-width: 215px;
    margin: 22px 0 0;
    color: #666;
    font-size: 10px;
    line-height: 1.8;
}

.engineering-signature {
    margin-top: 38px;
    color: var(--orange);
    font-family: Georgia, serif;
    font-size: 18px;
    font-style: italic;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid #c8c4bd;
    border-bottom: 1px solid #c8c4bd;
}

.strength-item {
    min-width: 0;
    min-height: 310px;
    padding: 18px 17px;
    border-right: 1px solid #c8c4bd;
    transition:
        background .3s ease,
        transform .3s ease;
}

.strength-item:last-child {
    border-right: 0;
}

.strength-item:hover {
    background: rgba(255,255,255,.38);
    transform: translateY(-3px);
}

.strength-number {
    color: var(--orange);
    font-size: 9px;
    font-weight: 800;
}

.strength-icon {
    width: 49px;
    height: 49px;
    margin: 25px 0 19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #111;
    color: var(--orange);
    font-size: 17px;
    transition:
        transform .3s ease,
        background .3s ease;
}

.strength-item:nth-child(even) .strength-icon {
    background: var(--orange);
    color: #fff;
}

.strength-item:hover .strength-icon {
    transform: scale(1.06);
}

.strength-item h3 {
    margin: 0;
    max-width: 125px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

.strength-item p {
    margin: 15px 0 0;
    color: #666;
    font-size: 9px;
    line-height: 1.8;
}


/* =========================================================
   CLIENT BENEFITS
========================================================= */

.client-benefits {
    padding: 61px 6.5% 55px;
    background:
        radial-gradient(
            circle at center,
            rgba(255,121,0,.055),
            transparent 35%
        ),
        #050606;
}

.benefits-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.benefits-heading > span {
    color: var(--orange);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .2em;
}

.benefits-heading h2 {
    margin: 13px 0 0;
    font-family: "Barlow Condensed", Arial Narrow, sans-serif;
    font-size: 45px;
    line-height: 1;
    font-weight: 700;
}

.benefits-heading strong {
    color: var(--orange);
}

.benefits-grid {
    max-width: 1220px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid rgba(255,255,255,.13);
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.benefit-item {
    min-height: 178px;
    padding: 28px 17px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.13);
}

.benefit-item:last-child {
    border-right: 0;
}

.benefit-item i {
    display: block;
    margin-bottom: 18px;
    color: var(--orange);
    font-size: 22px;
}

.benefit-item h3 {
    margin: 0;
    color: #f5f5f3;
    font-size: 11px;
    line-height: 1.35;
}

.benefit-item p {
    max-width: 145px;
    margin: 12px auto 0;
    color: #929492;
    font-size: 8px;
    line-height: 1.75;
}


/* =========================================================
   COMMITMENT
========================================================= */

.commitment-section {
    position: relative;
    min-height: 405px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #030505;
}

.commitment-image {
    position: absolute;
    inset: 0;
    background:
        url("../images/why-choose-commitment.jpg")
        center / cover no-repeat;
}

.commitment-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2,4,4,.98) 0%,
            rgba(2,4,4,.94) 22%,
            rgba(2,4,4,.65) 45%,
            rgba(2,4,4,.22) 72%,
            rgba(2,4,4,.12) 100%
        );
}

.commitment-content {
    position: relative;
    z-index: 2;
    width: min(520px, 44%);
    margin-left: 6.5%;
}

.commitment-content h2 {
    margin: 0;
    font-family: "Barlow Condensed", Arial Narrow, sans-serif;
    font-size: clamp(52px, 5.2vw, 72px);
    line-height: .89;
    font-weight: 700;
    text-transform: uppercase;
}

.commitment-content h2 strong {
    display: block;
    color: var(--orange);
}

.commitment-content p {
    max-width: 450px;
    margin: 22px 0;
    color: #d0d1cf;
    font-size: 10px;
    line-height: 1.8;
}

.commitment-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    background: var(--orange);
    color: #070707;
    text-decoration: none;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.commitment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,121,0,.22);
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    z-index: 1100;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 21px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    transition: transform .25s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
}


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

.site-footer {
    width: 100%;
    background: #030303;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.06);
}

.site-footer .footer-inner {
    width: min(1400px, 92%);
    margin: 0 auto;
    padding: 70px 0 55px;
    display: grid;
    grid-template-columns: 1.45fr .8fr 1fr 1.15fr 1.15fr;
    column-gap: 50px;
    align-items: start;
}

.site-footer .footer-brand {
    min-width: 0;
}

.site-footer .footer-logo {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 20px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.site-footer .footer-logo span {
    color: var(--orange);
}

.site-footer .footer-logo small {
    margin-top: 6px;
    color: rgba(255,255,255,.45);
    font-size: 7px;
    letter-spacing: 3px;
}

.site-footer .footer-brand > p {
    max-width: 310px;
    margin: 0 0 20px;
    color: rgba(255,255,255,.55);
    font-size: 13px;
    line-height: 1.7;
}

.site-footer .footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer .footer-socials a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.site-footer .footer-socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.site-footer .footer-column {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.site-footer .footer-column h4 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    line-height: 1.3;
}

.site-footer .footer-column > a {
    width: fit-content;
    margin-bottom: 11px;
    color: rgba(255,255,255,.50);
    font-size: 12px;
    line-height: 1.4;
    text-decoration: none;
    transition:
        color .25s ease,
        transform .25s ease;
}

.site-footer .footer-column > a:hover {
    color: var(--orange);
    transform: translateX(3px);
}

.site-footer .contact-column p,
.site-footer .footer-enquiries p {
    margin: 0 0 14px;
    color: rgba(255,255,255,.52);
    font-size: 12px;
    line-height: 1.6;
}

.site-footer .contact-column p i,
.site-footer .footer-enquiries p i {
    width: 18px;
    margin-right: 6px;
    color: var(--orange);
}

.site-footer .contact-column a,
.site-footer .footer-enquiries a {
    color: rgba(255,255,255,.52);
    text-decoration: none;
    transition: color .25s ease;
}

.site-footer .contact-column a:hover,
.site-footer .footer-enquiries a:hover {
    color: var(--orange);
}

.site-footer .footer-enquiries {
    min-width: 0;
}

.site-footer .footer-enquiries .direct-title {
    margin-top: 20px;
}

.site-footer .footer-bottom {
    width: min(1400px, 92%);
    margin: 0 auto;
    padding: 20px 0 25px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-footer .footer-bottom > span {
    color: var(--orange);
    font-size: 11px;
    line-height: 1.4;
}

.site-footer .footer-bottom > div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255,255,255,.30);
    font-size: 10px;
}

.site-footer .footer-bottom a {
    color: rgba(255,255,255,.35);
    text-decoration: none;
    transition: color .25s ease;
}

.site-footer .footer-bottom a:hover {
    color: var(--orange);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .why-hero-content {
        width: 51%;
        max-width: 820px;
        margin-left: 6.5%;
    }

    .why-hero-title span:first-child,
    .why-hero-title span:nth-child(2) {
        font-size: clamp(6rem, 7vw, 9.5rem);
    }

    .why-hero-title strong {
        font-size: clamp(3.5rem, 4.5vw, 5.7rem);
    }

    .why-hero-content > p {
        max-width: 680px;
        font-size: 14px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1150px) {

    .why-hero {
        min-height: 760px;
        height: 760px;
    }

    .why-hero-image {
        left: 30% !important;
    }

    .why-hero-content {
        width: 55%;
        margin-left: 6%;
        padding-top: 80px;
    }

    .why-hero-title span:first-child,
    .why-hero-title span:nth-child(2) {
        font-size: clamp(4.5rem, 7vw, 6.8rem);
    }

    .why-hero-title strong {
        font-size: clamp(2.8rem, 4vw, 4.2rem);
    }

    .hero-proof {
        left: 38%;
    }

    .proof-item {
        padding: 14px;
        gap: 10px;
    }

    .proof-item strong {
        font-size: 21px;
    }

    .strengths-section {
        grid-template-columns: 200px 1fr;
        gap: 28px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .strength-item {
        padding-left: 13px;
        padding-right: 13px;
    }

    .client-benefits {
        padding-left: 5%;
        padding-right: 5%;
    }
}


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

@media (max-width: 900px) {

    .why-hero {
        min-height: 760px;
        height: 760px;
        padding-top: 64px;
        align-items: center;
    }

    .why-hero-image {
        left: 18% !important;
        opacity: .82 !important;
        background-position: 65% center !important;
    }

    .why-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(2,3,3,.98) 0%,
                rgba(2,3,3,.91) 37%,
                rgba(2,3,3,.50) 70%,
                rgba(2,3,3,.22) 100%
            );
    }

    .why-hero-content {
        width: 63%;
        max-width: none;
        margin-left: 6%;
        padding-top: 60px;
        padding-bottom: 120px;
    }

    .why-hero-content .eyebrow {
        font-size: 9px;
        gap: 11px;
        letter-spacing: .20em;
    }

    .why-hero-title span:first-child,
    .why-hero-title span:nth-child(2) {
        font-size: clamp(4.1rem, 8vw, 6rem);
    }

    .why-hero-title strong {
        font-size: clamp(2.7rem, 5vw, 4rem);
    }

    .why-hero-content > p {
        max-width: 520px;
        font-size: 11px;
    }

    .hero-proof {
        left: 30%;
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-item {
        min-height: 70px;
    }

    .proof-item:nth-child(2) {
        border-right: 0;
    }

    .proof-item:nth-child(n+3) {
        border-top: 1px solid rgba(255,255,255,.10);
    }

    .strengths-section {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 65px 6%;
    }

    .strengths-intro p {
        max-width: 390px;
    }

    .strengths-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .strength-item:nth-child(3) {
        border-right: 0;
    }

    .strength-item:nth-child(n+4) {
        border-top: 1px solid #c8c4bd;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefit-item:nth-child(3) {
        border-right: 0;
    }

    .benefit-item:nth-child(n+4) {
        border-top: 1px solid rgba(255,255,255,.13);
    }

    .commitment-content {
        width: 55%;
        margin-left: 6%;
    }

    .site-footer .footer-inner {
        grid-template-columns: 1.4fr 1fr 1fr;
        row-gap: 45px;
        column-gap: 35px;
    }

    .site-footer .footer-brand {
        grid-column: span 3;
    }
}


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

@media (max-width: 600px) {

    .why-hero {
        min-height: 820px;
        height: 820px;
        align-items: flex-start;
    }

    .why-hero-image {
        left: 0 !important;
        opacity: .55 !important;
        background-position: 63% center !important;
    }

    .why-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2,3,3,.88) 0%,
                rgba(2,3,3,.72) 40%,
                rgba(2,3,3,.84) 70%,
                #020303 100%
            );
    }

    .why-hero-content {
        width: 88%;
        margin: 0 auto;
        padding-top: 112px;
        padding-bottom: 130px;
    }

    .why-hero-content .eyebrow {
        width: 100%;
        gap: 8px;
        margin-bottom: 22px;
        font-size: 8px;
        letter-spacing: .14em;
    }

    .why-hero-content .eyebrow::before,
    .why-hero-content .eyebrow::after {
        font-size: 17px;
    }

    .why-hero-title {
        width: 100%;
    }

    .why-hero-title span:first-child,
    .why-hero-title span:nth-child(2) {
        font-size: clamp(3.65rem, 14vw, 5rem);
        line-height: .88;
    }

    .why-hero-title strong {
        margin-top: 10px;
        font-size: clamp(2.25rem, 9.5vw, 3.5rem);
        line-height: .93;
    }

    .why-hero-content > p {
        max-width: 100%;
        margin-top: 24px;
        font-size: 10px;
        line-height: 1.75;
    }

    .hero-outline-btn {
        min-width: 190px;
        height: 50px;
        margin-top: 25px;
        padding: 0 19px !important;
        font-size: 8px;
    }

    .hero-proof {
        left: 0;
        right: 0;
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-item {
        min-height: 66px;
        padding: 10px 12px;
        gap: 9px;
    }

    .proof-icon {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
        font-size: 11px;
    }

    .proof-item strong {
        font-size: 18px;
    }

    .proof-item span {
        font-size: 5.5px;
    }

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

    .strengths-intro h2 {
        font-size: 40px;
    }

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

    .strength-item {
        min-height: 285px;
        padding: 20px 14px;
    }

    .strength-item:nth-child(2n) {
        border-right: 0;
    }

    .strength-item:nth-child(n+3) {
        border-top: 1px solid #c8c4bd;
    }

    .strength-item h3 {
        font-size: 11px;
    }

    .strength-item p {
        font-size: 8px;
    }

    .client-benefits {
        padding: 65px 6%;
    }

    .benefits-heading h2 {
        font-size: 40px;
    }

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

    .benefit-item {
        padding: 25px 12px;
    }

    .benefit-item:nth-child(2n) {
        border-right: 0;
    }

    .benefit-item:nth-child(n+3) {
        border-top: 1px solid rgba(255,255,255,.13);
    }

    .commitment-section {
        min-height: 560px;
        align-items: flex-end;
    }

    .commitment-image {
        background-position: 62% center;
    }

    .commitment-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2,4,4,.18),
                rgba(2,4,4,.64) 48%,
                rgba(2,4,4,.97) 80%
            );
    }

    .commitment-content {
        width: 88%;
        margin: 0 auto 55px;
    }

    .commitment-content h2 {
        font-size: 49px;
    }

    .site-footer .footer-inner {
        width: 88%;
        padding: 55px 0 40px;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer .footer-brand {
        grid-column: auto;
    }

    .site-footer .footer-brand > p {
        max-width: 100%;
    }

    .site-footer .footer-bottom {
        width: 88%;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .site-footer .footer-bottom > div {
        justify-content: flex-start;
    }

    .whatsapp-btn {
        right: 16px;
        bottom: 16px;
        width: 43px;
        height: 43px;
        font-size: 19px;
    }
}


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

@media (max-width: 430px) {

    .why-hero {
        min-height: 790px;
        height: 790px;
    }

    .why-hero-content {
        padding-top: 104px;
    }

    .why-hero-content .eyebrow {
        font-size: 7px;
        gap: 6px;
        letter-spacing: .10em;
    }

    .why-hero-title span:first-child,
    .why-hero-title span:nth-child(2) {
        font-size: 3.25rem;
    }

    .why-hero-title strong {
        font-size: 2.05rem;
    }

    .why-hero-content > p {
        font-size: 9px;
    }

    .hero-outline-btn {
        min-width: 180px;
        height: 48px;
        font-size: 7.5px;
    }

    .strengths-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .strength-item,
    .benefit-item {
        border-right: 0 !important;
    }

    .strength-item:not(:first-child) {
        border-top: 1px solid rgba(0,0,0,.15);
    }

    .benefit-item:not(:first-child) {
        border-top: 1px solid rgba(255,255,255,.13);
    }

    .commitment-content h2 {
        font-size: 45px;
    }
}


/* =========================================================
   EXTRA-WIDE SCREENS
========================================================= */

@media (min-width: 1800px) {

    .why-hero-content {
        margin-left: 7%;
        width: 50%;
    }

    .why-hero-title span:first-child,
    .why-hero-title span:nth-child(2) {
        font-size: 9.4rem;
    }

    .why-hero-title strong {
        font-size: 5.5rem;
    }

    .why-hero-content > p {
        font-size: 14px;
    }
}


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

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* =========================================================
   CLIENT BENEFITS — MAKE TEXT BIGGER
   PASTE THIS AT THE VERY BOTTOM OF CSS
========================================================= */

.client-benefits {
    padding: 75px 6.5% 68px;
}

.benefits-heading {
    max-width: 850px;
    margin: 0 auto 50px;
}

.benefits-heading > span {
    font-size: 10px;
}

.benefits-heading h2 {
    font-size: 52px;
}

/* SIX BENEFIT CARDS */
.benefits-grid {
    max-width: 1320px;
}

.benefit-item {
    min-height: 205px;
    padding: 34px 20px 30px;
}

/* ICON */
.benefit-item i {
    margin-bottom: 20px;
    font-size: 25px;
}

/* CARD TITLES */
.benefit-item h3 {
    max-width: 175px;
    margin: 0 auto;
    color: #f5f5f3;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
}

/* CARD DESCRIPTIONS */
.benefit-item p {
    max-width: 175px;
    margin: 15px auto 0;
    color: rgba(255,255,255,.58);
    font-size: 10.5px;
    line-height: 1.7;
}


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

@media (max-width: 900px) {

    .client-benefits {
        padding: 70px 6% 60px;
    }

    .benefits-heading h2 {
        font-size: 46px;
    }

    .benefit-item {
        min-height: 200px;
        padding: 30px 18px;
    }

    .benefit-item h3 {
        font-size: 14px;
    }

    .benefit-item p {
        font-size: 10px;
    }
}


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

@media (max-width: 600px) {

    .client-benefits {
        padding: 65px 6% 55px;
    }

    .benefits-heading {
        margin-bottom: 38px;
    }

    .benefits-heading h2 {
        font-size: 40px;
    }

    .benefit-item {
        min-height: 190px;
        padding: 28px 14px;
    }

    .benefit-item i {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .benefit-item h3 {
        max-width: 160px;
        font-size: 13px;
    }

    .benefit-item p {
        max-width: 160px;
        font-size: 9.5px;
        line-height: 1.65;
    }
}


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

@media (max-width: 430px) {

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

    .benefit-item {
        min-height: auto;
        padding: 30px 20px;
        border-right: 0 !important;
    }

    .benefit-item:not(:first-child) {
        border-top: 1px solid rgba(255,255,255,.14);
    }

    .benefit-item h3 {
        max-width: 230px;
        font-size: 15px;
    }

    .benefit-item p {
        max-width: 260px;
        font-size: 10.5px;
    }
}
/* =========================================================
   WHY CHOOSE US — TEXT SIZE BOOST
   PASTE UNDER ALL EXISTING CSS
========================================================= */


/* =========================================================
   SIX STRENGTHS — INTRO TEXT
========================================================= */

.strengths-intro p {
    max-width: 270px;
    margin-top: 24px;
    font-size: 12px;
    line-height: 1.8;
    color: #5f5f5d;
}


/* =========================================================
   SIX STRENGTHS — CARD TITLES
========================================================= */

.strength-item h3 {
    max-width: 150px;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;
}


/* =========================================================
   SIX STRENGTHS — CARD DESCRIPTIONS
========================================================= */

.strength-item p {
    max-width: 175px;
    margin-top: 16px;
    font-size: 10.5px;
    line-height: 1.75;
    color: #5f5f5d;
}


/* =========================================================
   COMMITMENT SECTION — DESCRIPTION
========================================================= */

.commitment-content p {
    max-width: 500px;
    margin: 24px 0;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,.78);
}


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

@media (max-width: 900px) {

    .strengths-intro p {
        max-width: 500px;
        font-size: 11.5px;
        line-height: 1.8;
    }

    .strength-item h3 {
        max-width: 160px;
        font-size: 13px;
    }

    .strength-item p {
        max-width: 190px;
        font-size: 10px;
        line-height: 1.7;
    }

    .commitment-content p {
        max-width: 500px;
        font-size: 12px;
        line-height: 1.75;
    }
}


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

@media (max-width: 600px) {

    .strengths-intro p {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.8;
    }

    .strength-item h3 {
        max-width: 180px;
        font-size: 13px;
        line-height: 1.25;
    }

    .strength-item p {
        max-width: 100%;
        font-size: 9.5px;
        line-height: 1.7;
    }

    .commitment-content p {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.75;
    }
}


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

@media (max-width: 430px) {

    .strengths-intro p {
        font-size: 10.5px;
    }

    .strength-item h3 {
        font-size: 14px;
    }

    .strength-item p {
        font-size: 10px;
    }

    .commitment-content p {
        font-size: 10.5px;
    }
}
/* =========================================================
   HOLS-FIELD — WHY CHOOSE US
   FINAL FULL-PAGE POLISH
   PASTE THIS ENTIRE BLOCK UNDER ALL EXISTING CSS
========================================================= */


/* =========================================================
   01 — GLOBAL POLISH
========================================================= */

.why-page {
    overflow: hidden;
}

.why-page section {
    position: relative;
}

.why-page a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   02 — HERO
========================================================= */

.why-hero {
    min-height: 100vh !important;
    height: 100vh !important;

    background: #020303;

    isolation: isolate;
}


/* Hero image */

.why-hero-image {
    left: 34% !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;

    opacity: 1 !important;

    background-position: center center !important;
    background-size: cover !important;
}


/* Strong cinematic image fade */

.why-hero-image::before {
    background:
        linear-gradient(
            90deg,
            #020303 0%,
            rgba(2,3,3,.98) 12%,
            rgba(2,3,3,.88) 27%,
            rgba(2,3,3,.58) 46%,
            rgba(2,3,3,.20) 70%,
            rgba(2,3,3,.03) 100%
        ) !important;
}

.why-hero-image::after {
    height: 38% !important;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.88)
        ) !important;
}


/* Hero overlay */

.why-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(2,3,3,.98) 0%,
            rgba(2,3,3,.92) 25%,
            rgba(2,3,3,.55) 52%,
            rgba(2,3,3,.12) 82%,
            transparent 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.82),
            transparent 42%
        ) !important;
}


/* =========================================================
   03 — HERO CONTENT
========================================================= */

.why-hero-content {
    width: 53% !important;
    max-width: 800px !important;

    margin-left: 6.5% !important;

    padding-top: 58px !important;
    padding-bottom: 125px !important;

    align-items: flex-start !important;
}


/* =========================================================
   04 — HERO EYEBROW
========================================================= */

.why-hero-content .eyebrow {
    display: flex !important;
    align-items: center !important;

    gap: 13px !important;

    margin-bottom: 27px !important;

    color: #eeeeeb !important;

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

    letter-spacing: .24em !important;

    line-height: 1 !important;
}


/* Hide original empty span */

.why-hero-content .eyebrow > span {
    display: none !important;
}


/* Dash BEFORE */

.why-hero-content .eyebrow::before {
    content: "—" !important;

    display: inline-block;

    color: #ff7900 !important;

    font-size: 22px !important;
    font-weight: 400 !important;

    letter-spacing: 0 !important;
}


/* Dash AFTER */

.why-hero-content .eyebrow::after {
    content: "—" !important;

    display: inline-block;

    color: #ff7900 !important;

    font-size: 22px !important;
    font-weight: 400 !important;

    letter-spacing: 0 !important;
}


/* Orange separators */

.why-hero-content .eyebrow b {
    color: #ff7900 !important;

    font-weight: 800 !important;
}


/* =========================================================
   05 — HERO TITLE
========================================================= */

.why-hero-title {
    width: 100% !important;
    max-width: 800px !important;

    margin: 0 !important;

    font-family:
        "Barlow Condensed",
        "Arial Narrow",
        sans-serif !important;

    font-weight: 700 !important;

    line-height: .84 !important;

    letter-spacing: -.025em !important;
}


/* ENGINEERED */

.why-hero-title span:first-child {
    display: block;

    color: #ff7900 !important;

    font-size:
        clamp(5rem, 7.2vw, 9rem) !important;

    font-weight: 700 !important;

    line-height: .84 !important;
}


/* TO DELIVER */

.why-hero-title span:nth-child(2) {
    display: block;

    color: #f7f7f5 !important;

    font-size:
        clamp(5rem, 7.2vw, 9rem) !important;

    font-weight: 700 !important;

    line-height: .84 !important;
}


/* POWERING PROGRESS */

.why-hero-title strong {
    display: block;

    margin-top: 15px !important;

    color: #ff7900 !important;

    font-family:
        "Barlow Condensed",
        "Arial Narrow",
        sans-serif !important;

    font-size:
        clamp(3.3rem, 4.55vw, 5.7rem) !important;

    font-weight: 700 !important;

    line-height: .88 !important;

    letter-spacing: -.015em !important;
}


/* =========================================================
   06 — HERO DESCRIPTION
========================================================= */

.why-hero-content > p {
    max-width: 650px !important;

    margin: 30px 0 0 !important;

    color: rgba(255,255,255,.72) !important;

    font-size: 13px !important;

    line-height: 1.8 !important;

    letter-spacing: .01em !important;
}


/* =========================================================
   07 — WATCH OUR STORY
========================================================= */

.why-hero-content .hero-outline-btn {
    width: auto !important;
    max-width: none !important;

    min-width: 205px !important;

    height: 54px !important;

    margin-top: 29px !important;

    padding: 0 25px !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 12px !important;

    border: 1px solid #ff7900 !important;

    border-radius: 2px !important;

    background: #ff7900 !important;

    color: #080808 !important;

    font-size: 10px !important;

    font-weight: 800 !important;

    letter-spacing: .14em !important;

    text-transform: uppercase !important;

    text-decoration: none !important;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease !important;
}

.why-hero-content .hero-outline-btn i {
    color: #080808 !important;

    font-size: 10px !important;
}

.why-hero-content .hero-outline-btn:hover {
    background: #ff8b22 !important;

    color: #080808 !important;

    transform: translateY(-3px) !important;

    box-shadow:
        0 12px 32px rgba(255,121,0,.22) !important;
}


/* =========================================================
   08 — HERO STATS
========================================================= */

.hero-proof {
    left: 42% !important;
    right: 0 !important;
    bottom: 0 !important;

    min-height: 92px !important;

    display: grid !important;

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

    background:
        rgba(2,3,3,.90) !important;

    border-top:
        1px solid rgba(255,255,255,.12) !important;

    backdrop-filter: blur(16px);

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

.proof-item {
    min-width: 0 !important;

    padding: 17px 20px !important;

    display: flex !important;

    align-items: center !important;

    gap: 13px !important;

    border-right:
        1px solid rgba(255,255,255,.10) !important;
}

.proof-item:last-child {
    border-right: 0 !important;
}

.proof-icon {
    width: 40px !important;
    height: 40px !important;

    flex: 0 0 40px !important;

    display: grid !important;
    place-items: center !important;

    border:
        1px solid #ff7900 !important;

    border-radius: 50% !important;

    color: #ff7900 !important;

    font-size: 13px !important;
}

.proof-item strong {
    display: block;

    color: #ff7900 !important;

    font-size: 25px !important;

    font-weight: 800 !important;

    line-height: 1 !important;
}

.proof-item span {
    display: block;

    margin-top: 5px !important;

    color: rgba(255,255,255,.50) !important;

    font-size: 7px !important;

    font-weight: 600 !important;

    letter-spacing: .08em !important;

    text-transform: uppercase !important;
}


/* =========================================================
   09 — SIX STRENGTHS
========================================================= */

.strengths-section {
    padding:
        78px
        6.5%
        78px !important;

    grid-template-columns:
        245px 1fr !important;

    gap: 50px !important;

    background:
        radial-gradient(
            circle at 0 50%,
            rgba(255,121,0,.055),
            transparent 30%
        ),
        #f3eee7 !important;
}


/* Intro */

.strengths-intro h2 {
    font-size: 48px !important;

    line-height: .92 !important;
}

.strengths-intro p {
    max-width: 275px !important;

    margin-top: 25px !important;

    color: #5d5d5b !important;

    font-size: 12px !important;

    line-height: 1.8 !important;
}

.engineering-signature {
    margin-top: 40px !important;

    color: #ff7900 !important;

    font-size: 19px !important;
}


/* Strength grid */

.strengths-grid {
    border-top:
        1px solid #c6c2bb !important;

    border-bottom:
        1px solid #c6c2bb !important;
}

.strength-item {
    min-height: 320px !important;

    padding:
        20px
        18px !important;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease !important;
}

.strength-item:hover {
    background: rgba(255,255,255,.40) !important;

    transform: translateY(-4px);

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

.strength-number {
    font-size: 10px !important;
}

.strength-icon {
    width: 52px !important;
    height: 52px !important;

    margin:
        27px 0
        20px !important;

    font-size: 18px !important;
}

.strength-item h3 {
    max-width: 155px !important;

    font-size: 14px !important;

    line-height: 1.25 !important;
}

.strength-item p {
    max-width: 180px !important;

    margin-top: 16px !important;

    color: #60605e !important;

    font-size: 10.5px !important;

    line-height: 1.75 !important;
}


/* =========================================================
   10 — CLIENT BENEFITS
========================================================= */

.client-benefits {
    padding:
        78px
        6.5%
        72px !important;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(255,121,0,.065),
            transparent 36%
        ),
        #030303 !important;
}

.benefits-heading {
    max-width: 900px !important;

    margin:
        0 auto
        52px !important;
}

.benefits-heading > span {
    font-size: 10px !important;

    letter-spacing: .22em !important;
}

.benefits-heading h2 {
    margin-top: 15px !important;

    font-size: 52px !important;

    line-height: .95 !important;
}

.benefits-grid {
    max-width: 1340px !important;

    border-top:
        1px solid rgba(255,255,255,.14) !important;

    border-bottom:
        1px solid rgba(255,255,255,.14) !important;
}

.benefit-item {
    min-height: 215px !important;

    padding:
        35px
        20px
        30px !important;

    transition:
        background .3s ease,
        transform .3s ease !important;
}

.benefit-item:hover {
    background:
        rgba(255,121,0,.035) !important;

    transform: translateY(-3px);
}

.benefit-item i {
    margin-bottom: 20px !important;

    color: #ff7900 !important;

    font-size: 25px !important;
}

.benefit-item h3 {
    max-width: 180px !important;

    margin: 0 auto !important;

    color: #f5f5f3 !important;

    font-size: 15px !important;

    line-height: 1.25 !important;

    font-weight: 700 !important;
}

.benefit-item p {
    max-width: 180px !important;

    margin:
        15px auto
        0 !important;

    color: rgba(255,255,255,.57) !important;

    font-size: 10.5px !important;

    line-height: 1.7 !important;
}


/* =========================================================
   11 — COMMITMENT
========================================================= */

.commitment-section {
    min-height: 500px !important;

    display: flex !important;

    align-items: center !important;
}

.commitment-image {
    background-position:
        center center !important;

    background-size:
        cover !important;
}

.commitment-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(2,4,4,.97) 0%,
            rgba(2,4,4,.86) 25%,
            rgba(2,4,4,.55) 48%,
            rgba(2,4,4,.18) 75%,
            rgba(2,4,4,.08) 100%
        ) !important;
}

.commitment-content {
    width: 48% !important;

    max-width: 650px !important;

    margin-left: 6.5% !important;

    padding:
        40px 0 !important;
}

.commitment-content h2 {
    font-size:
        clamp(3.8rem, 5.2vw, 6rem) !important;

    line-height: .88 !important;
}

.commitment-content p {
    max-width: 520px !important;

    margin:
        25px 0 !important;

    color: rgba(255,255,255,.78) !important;

    font-size: 13px !important;

    line-height: 1.8 !important;
}

.commitment-btn {
    height: 50px;

    padding:
        0 21px !important;

    display: inline-flex;

    align-items: center;

    gap: 13px;

    background: #ff7900;

    color: #080808;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

    text-decoration: none;

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

.commitment-btn:hover {
    transform: translateY(-3px);

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


/* =========================================================
   12 — WHATSAPP
========================================================= */

.whatsapp-btn {
    width: 47px !important;
    height: 47px !important;

    right: 22px !important;
    bottom: 22px !important;

    box-shadow:
        0 10px 30px rgba(0,0,0,.35) !important;

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

.whatsapp-btn:hover {
    transform: translateY(-4px) !important;

    box-shadow:
        0 15px 35px rgba(0,0,0,.40) !important;
}


/* =========================================================
   13 — FOOTER POLISH
========================================================= */

.site-footer {
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(255,121,0,.025),
            transparent 32%
        ),
        #020202 !important;
}

.site-footer .footer-inner {
    width: min(1400px, 90%) !important;

    padding:
        78px 0
        68px !important;

    grid-template-columns:
        1.45fr
        1fr
        1fr
        1.35fr !important;

    column-gap: 75px !important;
}

.site-footer .footer-brand > p {
    max-width: 380px !important;

    font-size: 12px !important;

    line-height: 1.8 !important;
}

.site-footer .footer-column > h4 {
    margin-bottom: 24px !important;

    font-size: 10px !important;

    letter-spacing: 2.1px !important;
}

.site-footer .footer-column > a {
    margin-bottom: 12px !important;

    font-size: 11px !important;
}

.site-footer .footer-contact-label {
    font-size: 8px !important;

    letter-spacing: 1.8px !important;
}

.site-footer .contact-column p {
    font-size: 11px !important;

    line-height: 1.65 !important;
}

.site-footer .footer-bottom {
    width: min(1400px, 90%) !important;

    padding:
        24px 0
        27px !important;
}

.site-footer .footer-bottom > span {
    font-size: 11px !important;
}


/* =========================================================
   14 — TABLET
========================================================= */

@media (max-width: 1100px) {

    .why-hero-content {
        width: 60% !important;

        margin-left: 6% !important;
    }

    .why-hero-image {
        left: 27% !important;
    }

    .hero-proof {
        left: 34% !important;
    }

    .strengths-section {
        grid-template-columns:
            210px 1fr !important;

        gap: 35px !important;
    }

    .strength-item {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .site-footer .footer-inner {
        column-gap: 40px !important;
    }
}


/* =========================================================
   15 — TABLET / 900px
========================================================= */

@media (max-width: 900px) {

    .why-hero {
        height: 760px !important;

        min-height: 760px !important;
    }

    .why-hero-image {
        left: 15% !important;

        opacity: .82 !important;

        background-position:
            66% center !important;
    }

    .why-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(2,3,3,.98),
                rgba(2,3,3,.90) 38%,
                rgba(2,3,3,.52) 72%,
                rgba(2,3,3,.20)
            ) !important;
    }

    .why-hero-content {
        width: 65% !important;

        padding-top: 60px !important;
        padding-bottom: 125px !important;
    }

    .why-hero-title span:first-child,
    .why-hero-title span:nth-child(2) {
        font-size:
            clamp(4rem, 8vw, 6rem) !important;
    }

    .why-hero-title strong {
        font-size:
            clamp(2.7rem, 5vw, 4rem) !important;
    }

    .why-hero-content > p {
        font-size: 11px !important;
    }

    .hero-proof {
        left: 30% !important;

        grid-template-columns:
            repeat(2, 1fr) !important;
    }

    .proof-item {
        min-height: 70px !important;
    }

    .proof-item:nth-child(2) {
        border-right: 0 !important;
    }

    .proof-item:nth-child(n+3) {
        border-top:
            1px solid rgba(255,255,255,.10) !important;
    }


    /* Strengths */

    .strengths-section {
        grid-template-columns: 1fr !important;

        gap: 38px !important;

        padding:
            65px 6% !important;
    }

    .strengths-intro p {
        max-width: 500px !important;
    }

    .strengths-grid {
        grid-template-columns:
            repeat(3, 1fr) !important;
    }

    .strength-item:nth-child(3) {
        border-right: 0 !important;
    }

    .strength-item:nth-child(n+4) {
        border-top:
            1px solid #c8c4bd !important;
    }


    /* Benefits */

    .benefits-grid {
        grid-template-columns:
            repeat(3, 1fr) !important;
    }

    .benefit-item:nth-child(3) {
        border-right: 0 !important;
    }

    .benefit-item:nth-child(n+4) {
        border-top:
            1px solid rgba(255,255,255,.13) !important;
    }


    /* Commitment */

    .commitment-content {
        width: 58% !important;

        margin-left: 6% !important;
    }


    /* Footer */

    .site-footer .footer-inner {
        grid-template-columns:
            1.4fr
            1fr
            1fr !important;

        row-gap: 45px !important;
    }

    .site-footer .footer-brand {
        grid-column:
            span 3 !important;
    }
}


/* =========================================================
   16 — MOBILE
========================================================= */

@media (max-width: 600px) {

    /* HERO */

    .why-hero {
        height: 820px !important;

        min-height: 820px !important;

        align-items: flex-start !important;
    }

    .why-hero-image {
        left: 0 !important;

        opacity: .52 !important;

        background-position:
            65% center !important;
    }

    .why-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2,3,3,.88) 0%,
                rgba(2,3,3,.68) 38%,
                rgba(2,3,3,.82) 68%,
                #020303 100%
            ) !important;
    }

    .why-hero-content {
        width: 88% !important;

        margin:
            0 auto !important;

        padding-top:
            105px !important;

        padding-bottom:
            130px !important;
    }


    /* Eyebrow */

    .why-hero-content .eyebrow {
        width: 100% !important;

        gap: 7px !important;

        margin-bottom: 23px !important;

        font-size: 7.5px !important;

        letter-spacing: .12em !important;
    }

    .why-hero-content .eyebrow::before,
    .why-hero-content .eyebrow::after {
        font-size: 17px !important;
    }


    /* Heading */

    .why-hero-title span:first-child,
    .why-hero-title span:nth-child(2) {
        font-size:
            clamp(3.5rem, 14vw, 5rem) !important;

        line-height: .87 !important;
    }

    .why-hero-title strong {
        margin-top: 10px !important;

        font-size:
            clamp(2.2rem, 9.5vw, 3.5rem) !important;

        line-height: .92 !important;
    }


    /* Description */

    .why-hero-content > p {
        margin-top: 24px !important;

        font-size: 10px !important;

        line-height: 1.75 !important;
    }


    /* Button */

    .why-hero-content .hero-outline-btn {
        min-width: 190px !important;

        height: 50px !important;

        margin-top: 25px !important;

        padding:
            0 20px !important;

        font-size: 8px !important;
    }


    /* Stats */

    .hero-proof {
        left: 0 !important;
        right: 0 !important;

        grid-template-columns:
            repeat(2, 1fr) !important;
    }

    .proof-item {
        min-height: 66px !important;

        padding:
            10px 12px !important;

        gap: 9px !important;
    }

    .proof-icon {
        width: 31px !important;
        height: 31px !important;

        flex-basis: 31px !important;

        font-size: 11px !important;
    }

    .proof-item strong {
        font-size: 18px !important;
    }

    .proof-item span {
        font-size: 5.5px !important;
    }


    /* STRENGTHS */

    .strengths-section {
        padding:
            60px 6% !important;
    }

    .strengths-intro h2 {
        font-size: 41px !important;
    }

    .strengths-intro p {
        font-size: 11px !important;

        line-height: 1.8 !important;
    }

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

    .strength-item {
        min-height: 285px !important;

        padding:
            20px 14px !important;
    }

    .strength-item:nth-child(2n) {
        border-right: 0 !important;
    }

    .strength-item:nth-child(n+3) {
        border-top:
            1px solid #c8c4bd !important;
    }

    .strength-item h3 {
        font-size: 13px !important;
    }

    .strength-item p {
        font-size: 9.5px !important;
    }


    /* BENEFITS */

    .client-benefits {
        padding:
            65px 6%
            55px !important;
    }

    .benefits-heading h2 {
        font-size: 40px !important;
    }

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

    .benefit-item {
        min-height: 190px !important;

        padding:
            28px 14px !important;
    }

    .benefit-item:nth-child(2n) {
        border-right: 0 !important;
    }

    .benefit-item:nth-child(n+3) {
        border-top:
            1px solid rgba(255,255,255,.14) !important;
    }

    .benefit-item h3 {
        font-size: 13px !important;
    }

    .benefit-item p {
        font-size: 9.5px !important;
    }


    /* COMMITMENT */

    .commitment-section {
        min-height: 560px !important;

        align-items: flex-end !important;
    }

    .commitment-image {
        background-position:
            62% center !important;
    }

    .commitment-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2,4,4,.15),
                rgba(2,4,4,.60) 45%,
                rgba(2,4,4,.97) 80%
            ) !important;
    }

    .commitment-content {
        width: 88% !important;

        margin:
            0 auto
            55px !important;

        padding: 0 !important;
    }

    .commitment-content h2 {
        font-size: 49px !important;
    }

    .commitment-content p {
        font-size: 11px !important;

        line-height: 1.75 !important;
    }


    /* FOOTER */

    .site-footer .footer-inner {
        width: 88% !important;

        padding:
            55px 0
            45px !important;

        grid-template-columns:
            1fr !important;

        gap: 38px !important;
    }

    .site-footer .footer-brand {
        grid-column: auto !important;
    }

    .site-footer .footer-brand > p {
        font-size: 11px !important;

        line-height: 1.75 !important;
    }

    .site-footer .footer-column > a {
        font-size: 11px !important;
    }

    .site-footer .contact-column p {
        font-size: 11px !important;
    }

    .site-footer .footer-bottom {
        width: 88% !important;

        flex-direction: column !important;

        align-items: flex-start !important;

        gap: 17px !important;
    }


    /* WhatsApp */

    .whatsapp-btn {
        right: 16px !important;

        bottom: 16px !important;

        width: 43px !important;
        height: 43px !important;
    }
}


/* =========================================================
   17 — VERY SMALL PHONES
========================================================= */

@media (max-width: 430px) {

    .why-hero {
        height: 800px !important;

        min-height: 800px !important;
    }

    .why-hero-content {
        padding-top: 98px !important;
    }

    .why-hero-content .eyebrow {
        font-size: 7px !important;

        gap: 5px !important;

        letter-spacing: .08em !important;
    }

    .why-hero-title span:first-child,
    .why-hero-title span:nth-child(2) {
        font-size: 3.25rem !important;
    }

    .why-hero-title strong {
        font-size: 2.05rem !important;
    }

    .why-hero-content > p {
        font-size: 9px !important;
    }

    .why-hero-content .hero-outline-btn {
        min-width: 180px !important;

        height: 48px !important;

        font-size: 7.5px !important;
    }


    /* Strengths */

    .strengths-grid {
        grid-template-columns: 1fr !important;
    }

    .strength-item {
        min-height: auto !important;

        padding:
            28px 20px !important;

        border-right: 0 !important;
    }

    .strength-item:not(:first-child) {
        border-top:
            1px solid rgba(0,0,0,.15) !important;
    }

    .strength-item h3 {
        font-size: 15px !important;
    }

    .strength-item p {
        max-width: 270px !important;

        font-size: 10px !important;
    }


    /* Benefits */

    .benefits-grid {
        grid-template-columns: 1fr !important;
    }

    .benefit-item {
        min-height: auto !important;

        padding:
            30px 20px !important;

        border-right: 0 !important;
    }

    .benefit-item:not(:first-child) {
        border-top:
            1px solid rgba(255,255,255,.14) !important;
    }

    .benefit-item h3 {
        max-width: 230px !important;

        font-size: 15px !important;
    }

    .benefit-item p {
        max-width: 260px !important;

        font-size: 10.5px !important;
    }


    /* Commitment */

    .commitment-content h2 {
        font-size: 45px !important;
    }

    .commitment-content p {
        font-size: 10.5px !important;
    }
}


/* =========================================================
   18 — REDUCE MOTION FOR USERS WHO REQUEST IT
========================================================= */

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

    .why-page *,
    .why-page *::before,
    .why-page *::after {
        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

        scroll-behavior: auto !important;
    }
}
/* =========================================================
   HERO — REFINED ENGINEERING HUD
   REPLACES THE HEAVY ORANGE CIRCLE
========================================================= */

/* Remove the previous heavy orbital circle */
.why-hero-overlay::before {
    content: "" !important;

    position: absolute;

    width: 430px !important;
    height: 430px !important;

    right: 45px !important;
    top: 145px !important;

    border: 1px solid rgba(255,121,0,.16) !important;

    border-radius: 50% !important;

    background:
        radial-gradient(
            circle,
            transparent 0 38%,
            rgba(255,121,0,.025) 38.2%,
            transparent 38.8%
        ),
        radial-gradient(
            circle,
            transparent 0 62%,
            rgba(255,121,0,.035) 62.2%,
            transparent 62.8%
        ) !important;

    box-shadow:
        0 0 0 18px rgba(255,121,0,.012),
        0 0 0 19px rgba(255,121,0,.07) !important;

    opacity: .65 !important;

    transform: none !important;

    animation: none !important;
}


/* =========================================================
   INNER PRECISION RING
========================================================= */

.why-hero-overlay::after {
    content: "" !important;

    position: absolute;

    width: 250px !important;
    height: 250px !important;

    right: 135px !important;
    top: 235px !important;

    border:
        1px solid rgba(255,121,0,.13) !important;

    border-radius: 50% !important;

    background:
        linear-gradient(
            90deg,
            transparent 49.8%,
            rgba(255,121,0,.10) 50%,
            transparent 50.2%
        ),
        linear-gradient(
            0deg,
            transparent 49.8%,
            rgba(255,121,0,.10) 50%,
            transparent 50.2%
        ) !important;

    opacity: .55 !important;

    box-shadow:
        inset 0 0 35px rgba(255,121,0,.025) !important;
}


/* =========================================================
   CENTRAL PRECISION POINT
========================================================= */

.why-hero::after {
    content: "" !important;

    position: absolute !important;

    width: 6px !important;
    height: 6px !important;

    right: 257px !important;
    top: 357px !important;

    border-radius: 50% !important;

    background: #ff7900 !important;

    box-shadow:
        0 0 0 5px rgba(255,121,0,.06),
        0 0 0 11px rgba(255,121,0,.025),
        0 0 14px rgba(255,121,0,.65) !important;

    z-index: 4 !important;
}


/* =========================================================
   DESKTOP — SMALL TECHNICAL TICKS
========================================================= */

.why-hero {
    --hud-tick:
        repeating-conic-gradient(
            from 0deg,
            rgba(255,121,0,.28) 0deg 1deg,
            transparent 1deg 12deg
        );
}

.why-hero-image {
    position: absolute !important;
}


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

@media (max-width: 900px) {

    .why-hero-overlay::before {
        width: 360px !important;
        height: 360px !important;

        right: -40px !important;
        top: 165px !important;
    }

    .why-hero-overlay::after {
        width: 215px !important;
        height: 215px !important;

        right: 35px !important;
        top: 240px !important;
    }

    .why-hero::after {
        right: 140px !important;
        top: 347px !important;
    }
}


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

@media (max-width: 600px) {

    .why-hero-overlay::before {
        width: 310px !important;
        height: 310px !important;

        right: -115px !important;
        top: 150px !important;

        opacity: .38 !important;
    }

    .why-hero-overlay::after {
        width: 190px !important;
        height: 190px !important;

        right: -35px !important;
        top: 210px !important;

        opacity: .30 !important;
    }

    .why-hero::after {
        width: 5px !important;
        height: 5px !important;

        right: 60px !important;
        top: 305px !important;
    }
}
/* =========================================================
   HOLS-FIELD — FINAL MOBILE RESPONSIVENESS
   PASTE AT THE VERY BOTTOM OF YOUR CSS
   DESKTOP DESIGN IS NOT CHANGED
========================================================= */


/* =========================================================
   TABLET — 901px TO 1100px
========================================================= */

@media (max-width: 1100px) and (min-width: 701px) {

    /* HERO */
    .why-hero {
        min-height: 760px !important;
        height: 760px !important;
    }

    .why-hero-content {
        width: 62% !important;
        margin-left: 6% !important;
        padding-top: 55px !important;
    }

    .why-hero-title span:first-child,
    .why-hero-title span:nth-child(2) {
        font-size: clamp(4.5rem, 7vw, 6.5rem) !important;
    }

    .why-hero-title strong {
        font-size: clamp(3rem, 4.5vw, 4.5rem) !important;
    }

    .why-hero-content > p {
        max-width: 570px !important;
        font-size: 11px !important;
    }

    /* HERO IMAGE */
    .why-hero-image {
        left: 30% !important;
        background-position: center center !important;
    }

    /* STATS */
    .hero-proof {
        left: 30% !important;
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .proof-item {
        padding: 14px 10px !important;
    }

    .proof-item strong {
        font-size: 20px !important;
    }

    .proof-icon {
        width: 34px !important;
        height: 34px !important;
        flex-basis: 34px !important;
    }

    /* SIX STRENGTHS */
    .strengths-section {
        grid-template-columns: 210px 1fr !important;
        gap: 30px !important;
        padding: 65px 6% !important;
    }

    .strengths-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .strength-item {
        min-height: 285px !important;
        padding: 18px 14px !important;
    }

    .strength-item h3 {
        font-size: 13px !important;
    }

    .strength-item p {
        font-size: 9.5px !important;
    }

    /* BENEFITS */
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .benefit-item {
        min-height: 190px !important;
    }

    /* COMMITMENT */
    .commitment-content {
        width: 55% !important;
        margin-left: 6% !important;
    }

    .commitment-content h2 {
        font-size: 4.5rem !important;
    }

    .commitment-content p {
        font-size: 11px !important;
    }
}


/* =========================================================
   MOBILE — UP TO 700px
========================================================= */

@media (max-width: 700px) {

    /* -----------------------------------------------------
       GLOBAL
    ----------------------------------------------------- */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    .why-page {
        width: 100%;
        overflow-x: hidden !important;
    }


    /* -----------------------------------------------------
       NAVIGATION
    ----------------------------------------------------- */

    .why-page .site-header {
        width: calc(100% - 24px) !important;
        margin: 10px 12px 0 !important;
        border-radius: 16px !important;
    }

    .why-page .nav-container {
        min-height: 62px !important;
        padding: 0 14px !important;
    }

    .why-page .nav-logo img {
        max-width: 145px !important;
        height: auto !important;
    }

    .why-page .nav-links {
        display: none !important;
    }

    .why-page .nav-cta {
        display: none !important;
    }

    .why-page .menu-toggle {
        display: flex !important;
        margin-left: auto !important;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .why-hero {
        width: 100% !important;

        min-height: 820px !important;
        height: 820px !important;

        margin-top: 0 !important;
    }

    /* IMAGE */
    .why-hero-image {
        left: 0 !important;
        right: 0 !important;

        opacity: .52 !important;

        background-size: cover !important;
        background-position: 63% center !important;
    }

    /* DARKER MOBILE OVERLAY */
    .why-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2,3,3,.88) 0%,
                rgba(2,3,3,.70) 35%,
                rgba(2,3,3,.78) 58%,
                rgba(2,3,3,.96) 84%,
                #020303 100%
            ) !important;
    }

    /* CONTENT */
    .why-hero-content {
        width: 88% !important;
        max-width: none !important;

        margin: 0 auto !important;

        padding-top: 105px !important;
        padding-bottom: 145px !important;

        align-items: flex-start !important;
    }


    /* -----------------------------------------------------
       HERO EYEBROW
    ----------------------------------------------------- */

    .why-hero-content .eyebrow {
        width: 100% !important;

        display: flex !important;
        align-items: center !important;

        gap: 7px !important;

        margin-bottom: 22px !important;

        white-space: nowrap !important;

        font-size: 7px !important;
        letter-spacing: .11em !important;
    }

    .why-hero-content .eyebrow::before,
    .why-hero-content .eyebrow::after {
        font-size: 16px !important;
        flex-shrink: 0 !important;
    }


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

    .why-hero-title {
        width: 100% !important;
        max-width: 100% !important;

        line-height: .88 !important;
    }

    .why-hero-title span:first-child,
    .why-hero-title span:nth-child(2) {
        font-size: clamp(
            3.5rem,
            14vw,
            5rem
        ) !important;

        line-height: .87 !important;
    }

    .why-hero-title strong {
        margin-top: 10px !important;

        font-size: clamp(
            2.2rem,
            9.5vw,
            3.5rem
        ) !important;

        line-height: .9 !important;
    }


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

    .why-hero-content > p {
        width: 100% !important;
        max-width: 520px !important;

        margin-top: 24px !important;

        font-size: 10px !important;

        line-height: 1.75 !important;
    }


    /* -----------------------------------------------------
       WATCH OUR STORY
    ----------------------------------------------------- */

    .why-hero-content .hero-outline-btn {
        min-width: 185px !important;

        height: 49px !important;

        margin-top: 24px !important;

        padding: 0 20px !important;

        font-size: 8px !important;

        letter-spacing: .12em !important;
    }


    /* -----------------------------------------------------
       HERO HUD / ORANGE ARC
    ----------------------------------------------------- */

    .why-hero-overlay::before {
        width: 310px !important;
        height: 310px !important;

        right: -125px !important;
        top: 155px !important;

        opacity: .32 !important;
    }

    .why-hero-overlay::after {
        width: 185px !important;
        height: 185px !important;

        right: -40px !important;
        top: 215px !important;

        opacity: .24 !important;
    }

    .why-hero::after {
        width: 5px !important;
        height: 5px !important;

        right: 55px !important;
        top: 305px !important;
    }


    /* -----------------------------------------------------
       HERO STATS
    ----------------------------------------------------- */

    .hero-proof {
        position: absolute !important;

        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;

        width: 100% !important;

        min-height: 132px !important;

        grid-template-columns:
            repeat(2, 1fr) !important;
    }

    .proof-item {
        min-width: 0 !important;

        min-height: 66px !important;

        padding: 10px 12px !important;

        gap: 8px !important;

        border-right:
            1px solid rgba(255,255,255,.10) !important;
    }

    .proof-item:nth-child(2n) {
        border-right: 0 !important;
    }

    .proof-item:nth-child(n+3) {
        border-top:
            1px solid rgba(255,255,255,.10) !important;
    }

    .proof-icon {
        width: 31px !important;
        height: 31px !important;

        flex: 0 0 31px !important;

        font-size: 10px !important;
    }

    .proof-item strong {
        font-size: 18px !important;
    }

    .proof-item span {
        margin-top: 3px !important;

        font-size: 5.5px !important;

        line-height: 1.2 !important;
    }


    /* -----------------------------------------------------
       SIX STRENGTHS
    ----------------------------------------------------- */

    .strengths-section {
        width: 100% !important;

        display: block !important;

        padding:
            62px 6% !important;
    }

    .strengths-intro {
        width: 100% !important;

        margin-bottom: 38px !important;
    }

    .strengths-intro h2 {
        font-size: 42px !important;

        line-height: .92 !important;
    }

    .strengths-intro p {
        width: 100% !important;
        max-width: 100% !important;

        margin-top: 20px !important;

        font-size: 11px !important;

        line-height: 1.8 !important;
    }

    .engineering-signature {
        margin-top: 28px !important;

        font-size: 17px !important;
    }


    /* STRENGTH GRID */

    .strengths-grid {
        width: 100% !important;

        display: grid !important;

        grid-template-columns:
            repeat(2, 1fr) !important;
    }

    .strength-item {
        min-width: 0 !important;

        min-height: 285px !important;

        padding:
            22px 14px !important;
    }

    .strength-item:nth-child(2n) {
        border-right: 0 !important;
    }

    .strength-item:nth-child(n+3) {
        border-top:
            1px solid #c8c4bd !important;
    }

    .strength-number {
        font-size: 9px !important;
    }

    .strength-icon {
        width: 46px !important;
        height: 46px !important;

        margin:
            23px 0
            17px !important;

        font-size: 15px !important;
    }

    .strength-item h3 {
        max-width: 170px !important;

        font-size: 13px !important;

        line-height: 1.25 !important;
    }

    .strength-item p {
        max-width: 180px !important;

        margin-top: 13px !important;

        font-size: 9.5px !important;

        line-height: 1.7 !important;
    }


    /* -----------------------------------------------------
       CLIENT BENEFITS
    ----------------------------------------------------- */

    .client-benefits {
        width: 100% !important;

        padding:
            65px 6%
            55px !important;
    }

    .benefits-heading {
        margin-bottom: 38px !important;
    }

    .benefits-heading > span {
        font-size: 8px !important;

        letter-spacing: .18em !important;
    }

    .benefits-heading h2 {
        font-size: 40px !important;

        line-height: .95 !important;
    }

    .benefits-grid {
        width: 100% !important;

        display: grid !important;

        grid-template-columns:
            repeat(2, 1fr) !important;
    }

    .benefit-item {
        min-width: 0 !important;

        min-height: 190px !important;

        padding:
            28px 13px !important;
    }

    .benefit-item:nth-child(2n) {
        border-right: 0 !important;
    }

    .benefit-item:nth-child(n+3) {
        border-top:
            1px solid rgba(255,255,255,.14) !important;
    }

    .benefit-item i {
        margin-bottom: 16px !important;

        font-size: 21px !important;
    }

    .benefit-item h3 {
        max-width: 160px !important;

        font-size: 13px !important;

        line-height: 1.25 !important;
    }

    .benefit-item p {
        max-width: 170px !important;

        margin-top: 12px !important;

        font-size: 9.5px !important;

        line-height: 1.65 !important;
    }


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

    .commitment-section {
        width: 100% !important;

        min-height: 570px !important;

        height: auto !important;

        display: flex !important;

        align-items: flex-end !important;
    }

    .commitment-image {
        background-position:
            63% center !important;
    }

    .commitment-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2,4,4,.08) 0%,
                rgba(2,4,4,.48) 42%,
                rgba(2,4,4,.92) 74%,
                rgba(2,4,4,.98) 100%
            ) !important;
    }

    .commitment-content {
        width: 88% !important;
        max-width: none !important;

        margin:
            0 auto
            55px !important;

        padding: 0 !important;
    }

    .commitment-content h2 {
        font-size:
            clamp(3.2rem, 13vw, 4.5rem) !important;

        line-height: .88 !important;
    }

    .commitment-content p {
        width: 100% !important;
        max-width: 100% !important;

        margin:
            22px 0 !important;

        font-size: 11px !important;

        line-height: 1.75 !important;
    }

    .commitment-btn {
        height: 48px !important;

        padding:
            0 19px !important;

        font-size: 8px !important;
    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .site-footer {
        width: 100% !important;
    }

    .site-footer .footer-inner {
        width: 88% !important;

        padding:
            55px 0
            45px !important;

        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 38px !important;
    }

    .site-footer .footer-brand {
        grid-column: auto !important;
    }

    .site-footer .footer-brand > p {
        max-width: 100% !important;

        font-size: 11px !important;

        line-height: 1.75 !important;
    }

    .site-footer .footer-column > h4 {
        margin-bottom: 17px !important;

        font-size: 9px !important;
    }

    .site-footer .footer-column > a {
        margin-bottom: 11px !important;

        font-size: 11px !important;
    }

    .site-footer .footer-contact-label {
        font-size: 8px !important;
    }

    .site-footer .contact-column p {
        font-size: 11px !important;

        line-height: 1.65 !important;
    }

    .site-footer .footer-bottom {
        width: 88% !important;

        padding:
            22px 0
            25px !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: flex-start !important;

        gap: 16px !important;
    }

    .site-footer .footer-bottom > span {
        font-size: 10px !important;

        line-height: 1.5 !important;
    }

    .site-footer .footer-bottom > div {
        justify-content: flex-start !important;

        gap: 7px !important;

        font-size: 8px !important;

        line-height: 1.6 !important;
    }


    /* -----------------------------------------------------
       WHATSAPP
    ----------------------------------------------------- */

    .whatsapp-btn {
        width: 43px !important;
        height: 43px !important;

        right: 15px !important;
        bottom: 15px !important;
    }
}


/* =========================================================
   SMALL PHONES — 430px AND BELOW
========================================================= */

@media (max-width: 430px) {

    /* HERO */

    .why-hero {
        min-height: 800px !important;
        height: 800px !important;
    }

    .why-hero-content {
        width: 88% !important;

        padding-top: 96px !important;
    }

    .why-hero-content .eyebrow {
        font-size: 6.5px !important;

        letter-spacing: .07em !important;

        gap: 4px !important;
    }

    .why-hero-content .eyebrow::before,
    .why-hero-content .eyebrow::after {
        font-size: 14px !important;
    }

    .why-hero-title span:first-child,
    .why-hero-title span:nth-child(2) {
        font-size: 3.2rem !important;
    }

    .why-hero-title strong {
        font-size: 2rem !important;
    }

    .why-hero-content > p {
        font-size: 9px !important;

        line-height: 1.7 !important;
    }

    .why-hero-content .hero-outline-btn {
        min-width: 175px !important;

        height: 47px !important;

        font-size: 7.5px !important;
    }


    /* STATS */

    .proof-item {
        padding:
            9px 10px !important;
    }

    .proof-icon {
        width: 28px !important;
        height: 28px !important;

        flex-basis: 28px !important;
    }

    .proof-item strong {
        font-size: 16px !important;
    }

    .proof-item span {
        font-size: 5px !important;
    }


    /* STRENGTHS */

    .strengths-grid {
        grid-template-columns: 1fr !important;
    }

    .strength-item {
        min-height: auto !important;

        padding:
            28px 20px !important;

        border-right: 0 !important;
    }

    .strength-item:nth-child(n+2) {
        border-top:
            1px solid rgba(0,0,0,.14) !important;
    }

    .strength-item h3 {
        max-width: 240px !important;

        font-size: 15px !important;
    }

    .strength-item p {
        max-width: 280px !important;

        font-size: 10px !important;
    }


    /* BENEFITS */

    .benefits-grid {
        grid-template-columns: 1fr !important;
    }

    .benefit-item {
        min-height: auto !important;

        padding:
            30px 20px !important;

        border-right: 0 !important;
    }

    .benefit-item:nth-child(n+2) {
        border-top:
            1px solid rgba(255,255,255,.14) !important;
    }

    .benefit-item h3 {
        max-width: 240px !important;

        font-size: 15px !important;
    }

    .benefit-item p {
        max-width: 270px !important;

        font-size: 10.5px !important;
    }


    /* COMMITMENT */

    .commitment-section {
        min-height: 540px !important;
    }

    .commitment-content {
        margin-bottom: 45px !important;
    }

    .commitment-content h2 {
        font-size: 43px !important;
    }

    .commitment-content p {
        font-size: 10.5px !important;
    }


    /* FOOTER */

    .site-footer .footer-inner {
        width: 88% !important;

        padding-top: 45px !important;
    }

    .site-footer .footer-bottom > div {
        flex-wrap: wrap !important;
    }
}


/* =========================================================
   EXTRA SMALL — 360px
========================================================= */

@media (max-width: 360px) {

    .why-hero {
        min-height: 770px !important;
        height: 770px !important;
    }

    .why-hero-content {
        padding-top: 90px !important;
    }

    .why-hero-title span:first-child,
    .why-hero-title span:nth-child(2) {
        font-size: 2.9rem !important;
    }

    .why-hero-title strong {
        font-size: 1.8rem !important;
    }

    .why-hero-content .eyebrow {
        font-size: 6px !important;
    }

    .why-hero-content > p {
        font-size: 8.5px !important;
    }

    .proof-item strong {
        font-size: 15px !important;
    }

    .proof-item span {
        font-size: 4.5px !important;
    }
}