/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #191919;
}


/* =========================
   HEADER
========================= */

.header {
    width: 100%;
    height: 90px;

    background: #ffffff;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 90%;
    max-width: 1400px;
    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 125px;
    height: 70px;

    object-fit: contain;
    display: block;
}


/* =========================
   NAVIGATION MENU
========================= */

.nav-menu {
    display: flex;
    align-items: center;

    gap: 42px;

    list-style: none;
}


/* =========================
   NAV LINKS
========================= */

.nav-link {
    position: relative;

    color: #222222;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.7px;

    padding: 34px 0;

    transition: color 0.3s ease;
}


/* Hover */

.nav-link:hover {
    color: #efa800;
}


/* Underline Effect */

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 24px;

    width: 0;
    height: 2px;

    background: #efa800;

    transition: width 0.3s ease;
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.nav-link.active {
    color: #efa800;
}


/* =========================
   GET A QUOTE
========================= */

.quote-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-width: 145px;
    height: 46px;

    padding: 0 25px;

    background: #efa800;
    color: #111111;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.5px;

    border: 2px solid #efa800;

    border-radius: 4px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.quote-btn:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.18);
}


/* =========================
   MOBILE BUTTON
========================= */

.menu-toggle {
    width: 35px;
    height: 28px;

    display: none;

    flex-direction: column;
    justify-content: space-between;

    background: transparent;

    border: none;

    cursor: pointer;

    padding: 0;
}


.menu-toggle span {
    width: 100%;
    height: 3px;

    background: #181818;

    border-radius: 3px;

    transition: all 0.3s ease;
}


/* Hamburger -> X */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}


.menu-toggle.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}


/* =========================
   DEMO SECTIONS
========================= */

.section {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    padding: 120px 30px 50px;
}


.section h2 {
    font-size: 42px;
}


.hero {
    background: #111111;

    color: #ffffff;

    text-align: center;
}


.hero h1 {
    font-size: clamp(50px, 8vw, 100px);
    color: #efa800;

    margin-bottom: 10px;
}


.hero p {
    font-size: 22px;
    letter-spacing: 4px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .navbar {
        width: 92%;
    }

    .nav-menu {
        gap: 25px;
    }

    .nav-link {
        font-size: 13px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .header {
        height: 75px;
    }


    .logo img {
        width: 100px;
        height: 60px;
    }


    .menu-toggle {
        display: flex;
    }


    .nav-menu {
        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        background: #ffffff;

        flex-direction: column;

        align-items: center;

        gap: 0;

        padding: 0;

        max-height: 0;

        overflow: hidden;

        opacity: 0;

        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);

        transition:
            max-height 0.4s ease,
            opacity 0.3s ease,
            padding 0.3s ease;
    }


    .nav-menu.active {
        max-height: 450px;

        opacity: 1;

        padding: 15px 0 30px;
    }


    .nav-menu li {
        width: 100%;

        text-align: center;
    }


    .nav-link {
        display: block;

        width: 100%;

        padding: 18px 20px;
    }


    .nav-link::after {
        display: none;
    }


    .quote-btn {
        margin-top: 12px;
    }

}
/* ========================================
   HERO SECTION
======================================== */

.hero-section {
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 140px 10% 70px;

    background-image: url("hero1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Dark cinematic overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 10, 0.90) 0%,
            rgba(10, 10, 10, 0.68) 42%,
            rgba(10, 10, 10, 0.35) 100%
        );

    z-index: 1;
}


/* Subtle vertical industrial grid */

.hero-grid {
    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    background-image:
        linear-gradient(
            to right,
            rgba(255,255,255,0.06) 1px,
            transparent 1px
        );

    background-size: 20% 100%;
}


/* ========================================
   HERO CONTENT
======================================== */

.hero-content {
    position: relative;

    z-index: 3;

    width: 100%;
    max-width: 1100px;
}


/* Small upper text */

.hero-eyebrow {
    margin-bottom: 6px;

    font-size: 12px;
    font-weight: 500;

    color: rgba(255,255,255,0.5);

    letter-spacing: 7px;
}


/* Main Heading */

.hero-title {
    margin: 0;

    display: flex;
    flex-direction: column;

    line-height: 0.90;
}


.hero-title span {
    display: block;
}


/* White heading */

.hero-white {
    color: #ffffff;

    font-size: clamp(70px, 8vw, 145px);

    font-weight: 900;

    letter-spacing: -4px;
}


/* Gold heading */

.hero-gold {
    color: #e5b522;

    font-size: clamp(70px, 8vw, 145px);

    font-weight: 900;

    letter-spacing: -4px;

    margin-top: 10px;
}


/* Outline heading */

.hero-outline {
    color: transparent;

    -webkit-text-stroke: 2px rgba(255,255,255,0.42);

    font-size: clamp(64px, 7vw, 130px);

    font-weight: 800;

    letter-spacing: -3px;

    margin-top: 15px;
}


/* ========================================
   DESCRIPTION
======================================== */

.hero-description {
    max-width: 720px;

    margin-top: 13px;
    margin-bottom: 13px;

    font-size: 21px;
    line-height: 1.8;

    color: rgba(255,255,255,0.82);
}


/* ========================================
   BUTTONS
======================================== */

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;
}


.hero-btn {
    min-height: 58px;

    padding: 0 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}


/* Gold button */

.hero-btn-primary {
    min-width: 325px;

    background: #e5b522;

    color: #111111;

    border: 1px solid #e5b522;
}


.hero-btn-primary span {
    font-size: 21px;

    transition: transform 0.3s ease;
}


.hero-btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;

    transform: translateY(-3px);
}


.hero-btn-primary:hover span {
    transform: translateX(7px);
}


/* Outline button */

.hero-btn-secondary {
    min-width: 175px;

    color: #ffffff;

    background: rgba(255,255,255,0.02);

    border: 1px solid rgba(255,255,255,0.38);

    backdrop-filter: blur(4px);
}


.hero-btn-secondary:hover {
    background: #ffffff;

    color: #111111;

    border-color: #ffffff;

    transform: translateY(-3px);
}


/* ========================================
   SIDE VERTICAL TEXT
======================================== */

.hero-side-text {
    position: absolute;

    z-index: 3;

    right: 5%;
    top: 50%;

    transform: translateY(-50%);

    writing-mode: vertical-rl;

    color: rgba(255,255,255,0.25);

    font-size: 10px;

    letter-spacing: 7px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1100px) {

    .hero-section {
        padding-left: 7%;
        padding-right: 7%;
    }

    .hero-description {
        font-size: 18px;

        max-width: 650px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .hero-section {
        min-height: 100vh;

        padding:
            130px
            25px
            60px;

        background-position: 60% center;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10,10,10,0.94),
                rgba(10,10,10,0.62)
            );
    }


    .hero-grid {
        background-size: 50% 100%;
    }


    .hero-eyebrow {
        font-size: 9px;

        letter-spacing: 4px;

        margin-bottom: 28px;
    }


    .hero-title {
        line-height: 0.95;
    }


    .hero-white,
    .hero-gold {
        font-size: clamp(50px, 16vw, 75px);

        letter-spacing: -2px;
    }


    .hero-outline {
        font-size: clamp(42px, 13vw, 65px);

        -webkit-text-stroke: 1px rgba(255,255,255,0.45);

        letter-spacing: -1px;
    }


    .hero-description {
        margin-top: 38px;

        font-size: 16px;

        line-height: 1.7;
    }


    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .hero-btn {
        width: 100%;

        min-width: 0;
    }


    .hero-side-text {
        display: none;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .hero-section {
        padding-left: 18px;
        padding-right: 18px;
    }


    .hero-white,
    .hero-gold {
        font-size: 48px;
    }


    .hero-outline {
        font-size: 40px;
    }


    .hero-description {
        font-size: 15px;
    }


    .hero-btn {
        padding: 0 20px;

        font-size: 10px;

        letter-spacing: 3px;
    }

}
/* ========================================
   SCROLLING TEXT SECTION
======================================== */

.marquee-section {
    width: 100%;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(15, 15, 15, 0.96),
            rgba(15, 15, 15, 0.96)
        );

    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);

    padding: 10px 0;
}


/* Moving container */

.marquee-track {
    width: max-content;

    display: flex;

    animation: marqueeScroll 28s linear infinite;
}


/* Each repeated group */

.marquee-group {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    gap: 60px;

    padding-right: 60px;
}


/* Text */

.marquee-group span {
    white-space: nowrap;

    font-size: clamp(55px, 5vw, 95px);

    font-weight: 500;

    letter-spacing: 5px;

    color: transparent;

    -webkit-text-stroke: 2px rgba(222, 173, 31, 0.65);

    text-transform: uppercase;
}


/* Diamond separators */

.marquee-group i {
    flex-shrink: 0;

    color: #e2b327;

    font-size: 25px;

    font-style: normal;
}


/* Infinite movement */

@keyframes marqueeScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* Pause on hover */

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .marquee-section {
        padding: 30px 0;
    }


    .marquee-group {
        gap: 40px;

        padding-right: 40px;
    }


    .marquee-group span {
        font-size: 60px;

        letter-spacing: 4px;

        -webkit-text-stroke: 1.5px rgba(222, 173, 31, 0.65);
    }


    .marquee-group i {
        font-size: 18px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

    .marquee-section {
        padding: 24px 0;
    }


    .marquee-group {
        gap: 28px;

        padding-right: 28px;
    }


    .marquee-group span {
        font-size: 42px;

        letter-spacing: 3px;

        -webkit-text-stroke: 1px rgba(222, 173, 31, 0.75);
    }


    .marquee-group i {
        font-size: 14px;
    }


    .marquee-track {
        animation-duration: 20s;
    }

}
/* ========================================
   ABOUT SECTION
======================================== */

.about-section {
    width: 100%;
    background: #111111;
    padding: 60px 8%;
}

.about-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 420px 1fr;

    gap: 90px;

    align-items: center;
}


/* ========================================
   LEFT IMAGE
======================================== */

.about-image-wrap {
    position: relative;

    width: 100%;
    height: 500px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.7s ease;
}

.about-image-wrap:hover .about-image {
    transform: scale(1.03);
}

.about-image-label {
    position: absolute;

    left: 0;
    bottom: 0;

    padding: 12px 18px;

    background: rgba(10, 10, 10, 0.95);

    color: #e2b327;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 3px;
}


/* ========================================
   RIGHT CONTENT
======================================== */

.about-content {
    max-width: 760px;
}


/* WHO WE ARE */

.about-kicker {
    display: flex;
    align-items: center;

    gap: 18px;

    /* reduced from the old large spacing */
    margin-bottom: 55px;

    color: #e2b327;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 5px;
}

.about-line {
    width: 55px;
    height: 1px;

    background: #e2b327;
}


/* ========================================
   TEXT
======================================== */

.about-text {
    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;
    line-height: 1.75;
}

.about-text p {
    margin: 0 0 26px;
}


/* ========================================
   LINK
======================================== */

.about-link {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-top: 4px;

    color: #e2b327;

    text-decoration: none;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;

    transition: 0.3s ease;
}

.about-link span {
    transition: transform 0.3s ease;
}

.about-link:hover span {
    transform: translate(4px, -4px);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1100px) {

    .about-section {
        padding: 55px 6%;
    }

    .about-container {
        grid-template-columns: 380px 1fr;

        gap: 60px;
    }

    .about-image-wrap {
        height: 450px;
    }

    .about-kicker {
        margin-bottom: 40px;
    }

    .about-text {
        font-size: 16px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 800px) {

    .about-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-image-wrap {
        max-width: 500px;

        height: 380px;

        margin: 0 auto;
    }

    .about-content {
        max-width: 100%;
    }

    .about-kicker {
        margin-bottom: 30px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 500px) {

    .about-section {
        padding: 45px 18px;
    }

    .about-image-wrap {
        height: 320px;
    }

    .about-kicker {
        margin-bottom: 25px;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.7;
    }

}
/* ========================================
   MANIFESTO SECTION
======================================== */

.manifesto-section {
    width: 100%;

    background:
        radial-gradient(
            circle at 20% 40%,
            rgba(255,255,255,0.02),
            transparent 35%
        ),
        #151515;

    padding: 70px 8% 80px;
}


.manifesto-container {
    width: 100%;
    max-width: 1140px;

    margin: 0 auto;
}


/* ========================================
   SECTION HEADING
======================================== */

.manifesto-heading {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-bottom: 45px;

    color: #e2b327;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;
}


.manifesto-line {
    width: 38px;
    height: 1px;

    background: #e2b327;
}


/* ========================================
   ROW
======================================== */

.manifesto-row {
    display: grid;

    grid-template-columns:
        130px
        230px
        1fr;

    align-items: start;

    min-height: 195px;

    padding: 55px 0;

    border-top:
        1px solid
        rgba(255,255,255,0.12);
}


/* Last row */

.manifesto-row:last-child {
    border-bottom:
        1px solid
        rgba(255,255,255,0.12);
}


/* ========================================
   NUMBER
======================================== */

.manifesto-number {
    color: transparent;

    -webkit-text-stroke:
        1.5px
        rgba(226,179,39,0.55);

    font-size: 70px;

    font-weight: 700;

    line-height: 1;
}


/* ========================================
   TITLE
======================================== */

.manifesto-title {
    color: #ffffff;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 6px;

    padding-top: 4px;
}


/* ========================================
   MAIN TEXT
======================================== */

.manifesto-content p {
    max-width: 620px;

    margin: 0;

    color: rgba(255,255,255,0.88);

    font-size: 28px;

    line-height: 1.45;
}


/* ========================================
   VALUES
======================================== */

.values-list {
    display: flex;

    flex-direction: column;

    gap: 24px;

    padding-top: 2px;
}


.value-item {
    display: flex;

    align-items: baseline;

    flex-wrap: wrap;

    gap: 12px;
}


.value-name {
    color: #e2b327;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;
}


.value-divider {
    color: rgba(255,255,255,0.3);
}


.value-text {
    color: rgba(255,255,255,0.82);

    font-size: 17px;

    line-height: 1.6;
}


/* ========================================
   SCROLL REVEAL
======================================== */

.manifesto-row {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.manifesto-row.show {
    opacity: 1;

    transform: translateY(0);
}


.manifesto-row:nth-child(3) {
    transition-delay: 0.1s;
}


.manifesto-row:nth-child(4) {
    transition-delay: 0.2s;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .manifesto-section {
        padding:
            60px
            6%;
    }


    .manifesto-row {
        grid-template-columns:
            100px
            180px
            1fr;

        padding: 45px 0;
    }


    .manifesto-number {
        font-size: 60px;
    }


    .manifesto-title {
        font-size: 16px;

        letter-spacing: 5px;
    }


    .manifesto-content p {
        font-size: 23px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {

    .manifesto-section {
        padding:
            50px
            22px;
    }


    .manifesto-heading {
        margin-bottom: 25px;
    }


    .manifesto-row {
        grid-template-columns:
            75px
            1fr;

        gap: 15px;

        padding: 35px 0;

        min-height: auto;
    }


    .manifesto-number {
        grid-row:
            1 / span 2;

        font-size: 48px;
    }


    .manifesto-title {
        font-size: 14px;

        letter-spacing: 4px;
    }


    .manifesto-content {
        grid-column: 2;
    }


    .manifesto-content p {
        font-size: 19px;

        line-height: 1.5;

        margin-top: 12px;
    }


    .values-list {
        margin-top: 12px;

        gap: 18px;
    }


    .value-item {
        gap: 7px;
    }


    .value-name {
        font-size: 12px;
    }


    .value-text {
        font-size: 15px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 420px) {

    .manifesto-section {
        padding:
            45px
            16px;
    }


    .manifesto-row {
        grid-template-columns:
            60px
            1fr;
    }


    .manifesto-number {
        font-size: 40px;
    }


    .manifesto-content p {
        font-size: 17px;
    }


    .value-text {
        font-size: 14px;
    }

}
/* ========================================
   WHY WITH US SECTION
======================================== */

.why-section {
    width: 100%;

    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(255,255,255,0.02),
            transparent 35%
        ),
        #141414;

    padding: 70px 8% 90px;
}


.why-container {
    width: 100%;
    max-width: 1140px;

    margin: 0 auto;
}


/* ========================================
   TOP AREA
======================================== */

.why-top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 55px;
}


.why-kicker {
    display: flex;
    align-items: center;

    gap: 16px;

    color: #e2b327;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;
}


.why-line {
    width: 38px;
    height: 1px;

    background: #e2b327;
}


.why-intro {
    max-width: 360px;

    margin: 0;

    color: rgba(255,255,255,0.4);

    font-size: 13px;

    line-height: 1.6;
}


/* ========================================
   GRID
======================================== */

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    border-top:
        1px solid
        rgba(255,255,255,0.16);

    border-left:
        1px solid
        rgba(255,255,255,0.16);
}


/* ========================================
   CARD
======================================== */

.why-card {
    grid-column: span 2;

    min-height: 200px;

    padding: 32px 30px;

    border-right:
        1px solid
        rgba(255,255,255,0.16);

    border-bottom:
        1px solid
        rgba(255,255,255,0.16);

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}


.why-card-wide {
    grid-column: span 3;
}


/* Hover effect */

.why-card:hover {
    background:
        rgba(226,179,39,0.035);
}


/* ========================================
   ICON
======================================== */

.why-icon {
    margin-bottom: 38px;

    color: #e2b327;

    font-size: 23px;

    line-height: 1;
}


/* ========================================
   TITLE
======================================== */

.why-card h3 {
    margin: 0 0 16px;

    color: #ffffff;

    font-size: 17px;

    font-weight: 700;

    letter-spacing: 4px;
}


/* ========================================
   TEXT
======================================== */

.why-card p {
    max-width: 500px;

    margin: 0;

    color: rgba(255,255,255,0.42);

    font-size: 13px;

    line-height: 1.7;
}


/* ========================================
   SCROLL ANIMATION
======================================== */

.why-card {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        background 0.35s ease;
}


.why-card.show {
    opacity: 1;

    transform: translateY(0);
}


.why-card:nth-child(2) {
    transition-delay: 0.08s;
}


.why-card:nth-child(3) {
    transition-delay: 0.16s;
}


.why-card:nth-child(4) {
    transition-delay: 0.24s;
}


.why-card:nth-child(5) {
    transition-delay: 0.32s;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .why-section {
        padding: 60px 6%;
    }


    .why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .why-card,
    .why-card-wide {
        grid-column: span 1;
    }


    .why-card {
        min-height: 190px;
    }


    .why-top {
        gap: 40px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

    .why-section {
        padding:
            50px
            20px
            65px;
    }


    .why-top {
        flex-direction: column;

        gap: 30px;

        margin-bottom: 35px;
    }


    .why-intro {
        max-width: 100%;
    }


    .why-grid {
        grid-template-columns: 1fr;
    }


    .why-card,
    .why-card-wide {
        grid-column: 1;
    }


    .why-card {
        min-height: auto;

        padding: 28px 24px;
    }


    .why-icon {
        margin-bottom: 25px;
    }

}
/* ========================================
   MACHINE PARK SECTION
======================================== */

.machine-park-section {
    width: 100%;

    background:
        radial-gradient(
            circle at 25% 30%,
            rgba(255,255,255,0.02),
            transparent 35%
        ),
        #141414;

    padding: 70px 8%;
}


.machine-park-container {
    width: 100%;
    max-width: 1380px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 130px;

    align-items: center;
}


/* ========================================
   LEFT SIDE
======================================== */

.machine-list-side {
    width: 100%;
}


.machine-kicker {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-bottom: 130px;

    color: #e2b327;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;
}


.machine-kicker-line {
    width: 45px;
    height: 1px;

    background: #e2b327;
}


/* ========================================
   MACHINE LIST
======================================== */

.machine-list {
    width: 100%;

    border-top:
        1px solid
        rgba(255,255,255,0.13);
}


.machine-row {
    min-height: 73px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 12px 0 8px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.13);

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}


.machine-row:hover {
    background:
        rgba(226,179,39,0.035);

    padding-left: 16px;
}


.machine-row h3 {
    margin: 0;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 4px;
}


.machine-row span {
    color: rgba(255,255,255,0.25);

    font-size: 10px;

    letter-spacing: 4px;
}


/* ========================================
   BOTTOM LINK
======================================== */

.machine-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 32px;

    color: #e2b327;

    text-decoration: none;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;
}


.machine-link span {
    font-size: 14px;

    transition: transform 0.3s ease;
}


.machine-link:hover span {
    transform: translate(4px, -4px);
}


/* ========================================
   RIGHT IMAGE
======================================== */

.machine-image-side {
    width: 100%;
}


.machine-image-wrap {
    position: relative;

    width: 100%;
    height: 650px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.08);
}


.machine-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transition: transform 0.8s ease;
}


.machine-image-wrap:hover .machine-image {
    transform: scale(1.035);
}


.machine-image-label {
    position: absolute;

    bottom: 0;
    left: 0;

    padding: 13px 18px;

    background: rgba(10,10,10,0.95);

    color: #e2b327;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 3px;
}


/* ========================================
   SCROLL REVEAL
======================================== */

.machine-list-side,
.machine-image-side {
    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.machine-list-side.show,
.machine-image-side.show {
    opacity: 1;

    transform: translateY(0);
}


.machine-image-side {
    transition-delay: 0.15s;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1100px) {

    .machine-park-section {
        padding: 60px 6%;
    }

    .machine-park-container {
        grid-template-columns: 1fr 1fr;

        gap: 70px;
    }

    .machine-kicker {
        margin-bottom: 80px;
    }

    .machine-image-wrap {
        height: 560px;
    }

    .machine-row h3 {
        font-size: 16px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 800px) {

    .machine-park-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .machine-kicker {
        margin-bottom: 45px;
    }

    .machine-image-wrap {
        height: 430px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 500px) {

    .machine-park-section {
        padding: 50px 18px;
    }

    .machine-row {
        min-height: 64px;
    }

    .machine-row h3 {
        font-size: 14px;

        letter-spacing: 2px;
    }

    .machine-row span {
        font-size: 9px;
    }

    .machine-image-wrap {
        height: 340px;
    }

    .machine-link {
        font-size: 9px;

        letter-spacing: 3px;
    }

}
/* ========================================
   TRUSTED BY SECTION
======================================== */

.trusted-section {
    width: 100%;

    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(255,255,255,0.02),
            transparent 38%
        ),
        #141414;

    padding: 70px 8% 90px;
}


.trusted-container {
    width: 100%;
    max-width: 1520px;

    margin: 0 auto;
}


/* ========================================
   HEADING
======================================== */

.trusted-kicker {
    display: flex;
    align-items: center;

    gap: 20px;

    margin-bottom: 65px;

    color: #e2b327;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 5px;
}


.trusted-line {
    width: 50px;
    height: 1px;

    background: #e2b327;
}


/* ========================================
   GRID
======================================== */

.trusted-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top:
        1px solid
        rgba(255,255,255,0.16);

    border-left:
        1px solid
        rgba(255,255,255,0.16);
}


/* ========================================
   ITEM
======================================== */

.trusted-item {
    min-height: 120px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 38px;

    border-right:
        1px solid
        rgba(255,255,255,0.16);

    border-bottom:
        1px solid
        rgba(255,255,255,0.16);

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}


.trusted-item:hover {
    background:
        rgba(226,179,39,0.035);

    padding-left: 44px;
}


/* Client name */

.trusted-name {
    color: #ffffff;

    font-size: 19px;
    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;
}


/* Small diamond */

.trusted-diamond {
    color: rgba(226,179,39,0.55);

    font-size: 12px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.trusted-item:hover .trusted-diamond {
    color: #e2b327;

    transform: rotate(45deg) scale(1.15);
}


/* ========================================
   SCROLL REVEAL
======================================== */

.trusted-item {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        background 0.3s ease,
        padding 0.3s ease;
}


.trusted-item.show {
    opacity: 1;

    transform: translateY(0);
}


.trusted-item:nth-child(2) {
    transition-delay: 0.06s;
}

.trusted-item:nth-child(3) {
    transition-delay: 0.12s;
}

.trusted-item:nth-child(4) {
    transition-delay: 0.18s;
}

.trusted-item:nth-child(5) {
    transition-delay: 0.24s;
}

.trusted-item:nth-child(6) {
    transition-delay: 0.30s;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1050px) {

    .trusted-section {
        padding: 60px 6%;
    }

    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trusted-item {
        min-height: 110px;
    }

    .trusted-name {
        font-size: 17px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

    .trusted-section {
        padding: 50px 20px 65px;
    }

    .trusted-kicker {
        margin-bottom: 40px;

        font-size: 9px;

        letter-spacing: 4px;
    }

    .trusted-line {
        width: 35px;
    }

    .trusted-grid {
        grid-template-columns: 1fr;
    }

    .trusted-item {
        min-height: 90px;

        padding: 0 24px;
    }

    .trusted-name {
        font-size: 15px;

        letter-spacing: 3px;
    }

}

































































































/* ========================================
   FOOTER
======================================== */

.site-footer {
    width: 100%;
    background: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* ========================================
   MAIN FOOTER CONTAINER
======================================== */

.footer-container {
    width: 100%;
    max-width: 1520px;

    margin: 0 auto;

    padding: 80px 8% 70px;

    display: grid;
    grid-template-columns: 1.3fr 0.6fr 1fr;

    gap: 100px;

    align-items: start;
}


/* ========================================
   BRAND AREA
======================================== */

.footer-brand {
    max-width: 430px;
}


/* Logo */

.footer-logo-image {
    display: inline-block;

    margin-bottom: 28px;

    text-decoration: none;
}


.footer-logo-image img {
    display: block;

    width: 180px;
    height: auto;

    object-fit: contain;
    object-position: left center;
}


/* Brand Description */

.footer-brand p {
    margin: 0;

    max-width: 420px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 15px;

    line-height: 1.8;
}


/* ========================================
   FOOTER HEADINGS
======================================== */

.footer-nav h4,
.footer-contact h4 {
    margin: 0 0 32px;

    color: #e2b327;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 5px;

    text-transform: uppercase;
}


/* ========================================
   NAVIGATION
======================================== */

.footer-nav {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
}


.footer-nav a {
    position: relative;

    width: fit-content;

    margin-bottom: 17px;

    color: rgba(255, 255, 255, 0.68);

    text-decoration: none;

    font-size: 15px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.footer-nav a:hover {
    color: #e2b327;

    transform: translateX(5px);
}


/* ========================================
   CONTACT
======================================== */

.footer-contact {
    max-width: 480px;
}


.footer-contact p {
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 15px;

    line-height: 1.7;
}


.footer-contact a {
    display: inline-block;

    color: rgba(255, 255, 255, 0.75);

    text-decoration: none;

    font-size: 15px;

    transition: color 0.3s ease;
}


.footer-contact a:hover {
    color: #e2b327;
}


/* ========================================
   FOOTER BOTTOM
======================================== */

.footer-bottom {
    width: 100%;

    padding: 28px 10%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}


.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.3);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* ========================================
   WEBSPIRELABS
======================================== */

.webspire-link {
    margin-left: 5px;

    color: #e2b327;

    text-decoration: none;

    transition: color 0.3s ease;
}


.webspire-link:hover {
    color: #ffffff;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .footer-container {
        padding: 70px 6% 60px;

        grid-template-columns: 1fr 1fr;

        gap: 55px 70px;
    }


    .footer-brand {
        grid-column: 1 / -1;

        max-width: 500px;
    }


    .footer-logo-image img {
        width: 170px;
    }


    .footer-bottom {
        padding: 26px 6%;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

    .footer-container {
        padding: 55px 20px;

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .footer-brand {
        grid-column: auto;
    }


    .footer-logo-image {
        margin-bottom: 22px;
    }


    .footer-logo-image img {
        width: 150px;
    }


    .footer-brand p {
        font-size: 14px;
    }


    .footer-nav h4,
    .footer-contact h4 {
        margin-bottom: 24px;

        font-size: 9px;

        letter-spacing: 4px;
    }


    .footer-nav a {
        margin-bottom: 14px;

        font-size: 14px;
    }


    .footer-contact p,
    .footer-contact a {
        font-size: 14px;
    }


    .footer-bottom {
        padding: 24px 20px;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }


    .footer-bottom p {
        font-size: 8px;

        line-height: 1.7;

        letter-spacing: 2px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 400px) {

    .footer-container {
        padding:
            45px
            16px;
    }


    .footer-logo-image img {
        width: 135px;
    }


    .footer-brand p {
        font-size: 13px;
    }


    .footer-bottom {
        padding:
            22px
            16px;
    }

}