* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #050607;
    color: #ffffff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}


/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    height: 90px;

    background: #050607;

    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    width: 92%;
    height: 100%;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;
}


/* LOGO */

.logo {
    justify-self: start;
    line-height: .78;
}

.logo-main {
    display: block;

    color: #ed1c24;

    font-size: 43px;
    font-weight: 900;

    letter-spacing: -2.3px;
}

.logo-sub {
    display: block;

    margin-top: 10px;
    padding-left: 39px;

    color: #ffffff;

    font-size: 15px;
}


/* DESKTOP NAV */

.nav {
    justify-self: center;

    display: flex;
    align-items: center;

    gap: clamp(38px, 2.8vw, 58px);
}

.nav a {
    position: relative;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -16px;

    width: 0;
    height: 2px;

    background: #ed1c24;

    transition: .2s;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}


/* HEADER ACTIONS */

.header-actions {
    justify-self: end;

    display: flex;
    gap: 14px;
}

.phone-btn,
.offer-btn {
    height: 50px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;
}

.phone-btn {
    border: 1px solid #34383c;

    background: #08090a;
}

.offer-btn {
    background: #ed1c24;
}


/* MOBILE MENU BUTTON */

.mobile-menu-btn {
    display: none;

    width: 46px;
    height: 46px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 5px;

    background: #0a0c0e;

    color: #fff;

    font-size: 21px;

    cursor: pointer;
}


/* MOBILE MENU */

.mobile-nav {
    display: none;
}


/* HERO */

.hero {
    position: relative;

    width: 100%;

    height: calc(100dvh - 90px);

    min-height: 620px;
    max-height: 920px;

    margin-top: 90px;

    background-image: url("hero.png");

    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.hero-shade {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(3,5,7,.86) 0%,
            rgba(3,5,7,.70) 24%,
            rgba(3,5,7,.38) 42%,
            rgba(3,5,7,.10) 60%,
            rgba(3,5,7,0) 78%
        );
}

.hero-container {
    position: relative;

    z-index: 2;

    width: 92%;
    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;
}

.hero-text {
    width: 610px;

    max-width: 46vw;

    margin-left: 70px;
}

.hero-label,
.section-label {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 24px;

    color: #b7babd;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.6px;
}

.hero-label span,
.section-label span {
    width: 38px;
    height: 2px;

    background: #ed1c24;
}

.hero-text h1 {
    font-size: clamp(50px,3.6vw,68px);

    line-height: 1.06;

    letter-spacing: -2px;
}

.hero-text p {
    max-width: 530px;

    margin-top: 26px;

    color: #d0d3d5;

    font-size: clamp(16px,1vw,19px);

    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 14px;

    margin-top: 32px;
}

.hero-primary,
.hero-secondary {
    height: 54px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;
}

.hero-primary {
    background: #ed1c24;
}

.hero-secondary {
    border: 1px solid rgba(255,255,255,.65);

    background: rgba(5,7,9,.45);
}


/* CATEGORIES */

.categories {
    background: #090b0d;

    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.categories-container {
    width: 92%;
    max-width: 1500px;

    min-height: 135px;

    margin: auto;

    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.category-item {
    position: relative;

    padding: 30px 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;
}

.category-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;

    width: 1px;
    height: 44%;

    background: rgba(255,255,255,.1);
}

.category-icon {
    width: 54px;
    height: 54px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(237,28,36,.45);

    border-radius: 50%;

    color: #ed1c24;
}

.category-text span {
    color: #777c81;

    font-size: 11px;
}

.category-text h3 {
    margin-top: 5px;

    font-size: clamp(16px,1.1vw,20px);
}


/* SERVICES */

.services {
    padding: clamp(90px,8vw,135px) 0;

    background: #060708;

    scroll-margin-top: 90px;
}

.services-container {
    width: 86%;
    max-width: 1450px;

    margin: auto;
}

.services-heading {
    margin-bottom: 55px;
}

.services-heading-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;

    gap: 80px;

    align-items: end;
}

.services-heading h2,
.contact h2 {
    font-size: clamp(40px,3.4vw,60px);

    line-height: 1.08;
}

.services-heading h2 strong,
.contact h2 strong,
.about-content h2 strong,
.brands-heading h2 strong {
    display: block;

    color: #ed1c24;
}

.services-heading p {
    color: #8f9499;

    font-size: 16px;

    line-height: 1.75;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid rgba(255,255,255,.09);
    border-left: 1px solid rgba(255,255,255,.09);
}

.service-card {
    min-height: 470px;

    padding: 38px 30px;

    display: flex;
    flex-direction: column;

    background: #090b0d;

    border-right: 1px solid rgba(255,255,255,.09);
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 40px;
}

.service-number {
    color: #4f5458;

    font-size: 12px;
}

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(237,28,36,.08);

    color: #ed1c24;
}

.service-card h3 {
    font-size: 24px;
}

.service-card > p {
    min-height: 90px;

    margin-top: 18px;

    color: #8f9499;

    font-size: 14px;

    line-height: 1.7;
}

.service-features {
    margin-top: 25px;

    display: flex;
    flex-direction: column;

    gap: 11px;
}

.service-features span {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #c0c4c7;

    font-size: 13px;
}

.service-features i,
.service-link i {
    color: #ed1c24;
}

.service-link {
    margin-top: auto;
    padding-top: 28px;

    display: inline-flex;

    gap: 13px;

    font-size: 13px;
}


/* SUPPLY */

.supply-box {
    margin-top: 45px;

    padding: 35px 40px;

    display: grid;
    grid-template-columns: auto 1fr auto;

    gap: 28px;

    align-items: center;

    border: 1px solid rgba(237,28,36,.20);

    background: rgba(237,28,36,.05);
}

.supply-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ed1c24;
}

.supply-content span {
    color: #ed1c24;

    font-size: 10px;
    font-weight: 800;
}

.supply-content h3 {
    margin-top: 7px;
}

.supply-content p {
    margin-top: 9px;

    color: #8f9499;

    font-size: 13px;

    line-height: 1.6;
}

.supply-btn {
    height: 50px;

    padding: 0 22px;

    display: flex;
    align-items: center;

    gap: 12px;

    border-radius: 5px;

    background: #ed1c24;

    font-size: 12px;
}


/* ABOUT */

.about {
    position: relative;

    padding: clamp(100px,8vw,150px) 0;

    background-image: url("about-bg.png");

    background-size: cover;
    background-position: center;

    scroll-margin-top: 90px;
}

.about-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,5,7,.96),
            rgba(3,5,7,.75),
            rgba(3,5,7,.50)
        );
}

.about-container {
    position: relative;

    z-index: 2;

    width: 84%;
    max-width: 1450px;

    margin: auto;

    display: grid;
    grid-template-columns: .9fr 1.35fr;

    gap: clamp(70px,7vw,130px);

    align-items: center;
}

.about-content h2 {
    font-size: clamp(40px,3.3vw,60px);

    line-height: 1.08;
}

.about-content p {
    max-width: 580px;

    margin-top: 24px;

    color: #b5b9bd;

    line-height: 1.75;
}

.about-link {
    margin-top: 32px;

    display: inline-flex;

    gap: 16px;

    padding-bottom: 7px;

    border-bottom: 1px solid #ed1c24;
}


/* STATS */

.stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    border: 1px solid rgba(255,255,255,.14);

    background: rgba(5,7,9,.56);
}

.stat-item {
    min-height: 320px;

    padding: 45px 34px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,.10);
}

.stat-icon {
    width: 46px;
    height: 46px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ed1c24;

    background: rgba(237,28,36,.12);
}

.stat-number {
    font-size: clamp(45px,3.3vw,64px);

    font-weight: 800;
}

.stat-number span {
    color: #ed1c24;

    font-size: .65em;
}

.stat-title {
    margin-top: 13px;

    font-weight: 700;
}

.stat-item p {
    margin-top: 15px;

    color: #a4a9ad;

    font-size: 13px;

    line-height: 1.6;
}


/* BRANDS */

.brands {
    padding: 80px 0 90px;

    background: #07090b;
}

.brands-container {
    width: 84%;
    max-width: 1450px;

    margin: auto;
}

.brands-heading {
    max-width: 700px;

    margin: 0 auto 50px;

    text-align: center;
}

.brands-label {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    color: #9da1a5;

    font-size: 11px;
}

.brands-label span {
    width: 32px;
    height: 1px;

    background: #ed1c24;
}

.brands-heading h2 {
    margin-top: 18px;

    font-size: clamp(30px,2.4vw,42px);
}

.brands-heading p {
    margin-top: 17px;

    color: #858a8f;

    line-height: 1.7;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);

    border-top: 1px solid rgba(255,255,255,.09);
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.brand-item {
    min-height: 115px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,.08);
}

.brand-item span {
    color: #73787d;

    font-weight: 800;
}


/* CONTACT */

.contact {
    padding: clamp(95px,8vw,140px) 0;

    background: #07090b;

    scroll-margin-top: 90px;
}

.contact-container {
    width: 84%;
    max-width: 1450px;

    margin: auto;

    display: grid;
    grid-template-columns: 1.15fr .85fr;

    gap: clamp(70px,8vw,140px);

    align-items: center;
}

.contact-intro {
    margin-top: 25px;

    max-width: 650px;

    color: #969ba0;

    line-height: 1.75;
}

.contact-actions {
    display: flex;

    gap: 15px;

    margin-top: 38px;
}

.contact-primary,
.contact-secondary {
    min-width: 235px;
    min-height: 72px;

    padding: 0 22px;

    display: flex;
    align-items: center;

    gap: 16px;

    border-radius: 6px;
}

.contact-primary {
    background: #ed1c24;
}

.contact-secondary {
    border: 1px solid rgba(255,255,255,.17);

    background: #0b0d0f;
}

.contact-actions span {
    display: block;

    margin-bottom: 5px;

    font-size: 10px;
}

.contact-info {
    border: 1px solid rgba(255,255,255,.10);

    background: #0a0c0e;
}

.contact-info-item {
    min-height: 105px;

    padding: 22px 28px;

    display: flex;
    align-items: center;

    gap: 20px;
}

.contact-info-item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-info-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #ed1c24;

    background: rgba(237,28,36,.09);
}

.contact-info-item span {
    display: block;

    margin-bottom: 6px;

    color: #767b80;

    font-size: 10px;
}


/* RED STRIP */

.final-strip {
    padding: 35px 0;

    background: #ed1c24;
}

.final-strip-container {
    width: 84%;
    max-width: 1450px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.final-strip span {
    font-size: 10px;
}

.final-strip h3 {
    margin-top: 7px;

    font-size: clamp(20px,2vw,30px);
}

.final-strip a {
    min-height: 52px;

    padding: 0 23px;

    display: flex;
    align-items: center;

    gap: 15px;

    border: 1px solid rgba(255,255,255,.55);

    border-radius: 5px;
}


/* FOOTER */

.footer {
    background: #050607;
}

.footer-container {
    width: 84%;
    max-width: 1450px;

    margin: auto;

    padding: 75px 0 65px;

    display: grid;
    grid-template-columns: 1.4fr .7fr .9fr 1.1fr;

    gap: clamp(45px,5vw,90px);
}

.footer-logo-main {
    display: block;

    color: #ed1c24;

    font-size: 39px;
    font-weight: 900;
}

.footer-logo-sub {
    display: block;

    padding-left: 35px;

    color: #fff;
}

.footer-company p {
    max-width: 330px;

    margin-top: 27px;

    color: #858a8f;

    font-size: 13px;

    line-height: 1.75;
}

.footer-socials {
    display: flex;

    gap: 10px;

    margin-top: 28px;
}

.footer-socials a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 50%;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.footer-column h4 {
    margin-bottom: 10px;
}

.footer-column > a,
.footer-contact > div {
    color: #8d9297;

    font-size: 13px;
}

.footer-contact > a,
.footer-contact > div {
    display: flex;

    gap: 12px;
}

.footer-contact i {
    color: #ed1c24;
}


/* COPYRIGHT */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);

    background: #030405;
}

.footer-bottom-container {
    width: 84%;
    max-width: 1450px;

    min-height: 72px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p,
.back-to-top {
    color: #666b70;

    font-size: 11px;
}

.back-to-top i {
    color: #ed1c24;
}


/* =========================================
   TABLET / PHONE MENU
========================================= */

@media (max-width: 1050px) {

    .header {
        height: 74px;
    }

    .header-inner {
        width: 90%;

        display: flex;
    }

    .nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;

        margin-left: auto;
    }


    /* MOBILE NAV */

    .mobile-nav {
        position: fixed;

        top: 74px;
        left: 0;

        width: 100%;
        height: calc(100dvh - 74px);

        display: block;

        background: rgba(4,5,6,.98);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity .25s ease,
            visibility .25s ease,
            transform .25s ease;
    }

    .mobile-nav.open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .mobile-nav-inner {
        width: 90%;

        margin: auto;

        padding: 35px 0;

        display: flex;
        flex-direction: column;
    }

    .mobile-nav-inner > a {
        min-height: 68px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        border-bottom: 1px solid rgba(255,255,255,.08);

        color: #fff;

        font-size: 20px;
        font-weight: 700;
    }

    .mobile-nav-inner > a i {
        color: #ed1c24;

        font-size: 13px;
    }

    .mobile-nav-contact {
        margin-top: 32px;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }

    .mobile-call,
    .mobile-whatsapp {
        min-height: 70px;

        padding: 0 18px;

        display: flex;
        align-items: center;

        gap: 14px;

        border-radius: 6px;
    }

    .mobile-call {
        background: #ed1c24;
    }

    .mobile-whatsapp {
        justify-content: center;

        border: 1px solid rgba(255,255,255,.15);

        background: #0b0d0f;
    }

    .mobile-call small {
        display: block;

        margin-bottom: 3px;

        font-size: 9px;

        opacity: .7;
    }

    .mobile-call strong {
        font-size: 13px;
    }


    /* HERO */

    .hero {
        height: calc(100dvh - 74px);

        margin-top: 74px;

        background-position: 64% center;
    }

    .hero-text {
        max-width: 65%;

        margin-left: 20px;
    }


    /* CONTENT */

    .categories-container {
        width: 90%;

        grid-template-columns: repeat(2,1fr);
    }

    .services-container,
    .about-container,
    .brands-container,
    .contact-container,
    .footer-container {
        width: 88%;
    }

    .services-heading-grid,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .supply-box {
        grid-template-columns: auto 1fr;
    }

    .supply-btn {
        grid-column: 1 / -1;
    }

    .about-container {
        gap: 60px;
    }

    .brands-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .footer-container {
        grid-template-columns: 1.2fr .8fr .8fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom-container {
        width: 88%;
    }

}


/* =========================================
   PHONE
========================================= */

@media (max-width: 600px) {

    .logo-main {
        font-size: 31px;
    }

    .logo-sub {
        margin-top: 7px;

        padding-left: 27px;

        font-size: 11px;
    }


    /* MOBILE MENU */

    .mobile-nav-inner {
        padding-top: 20px;
    }

    .mobile-nav-inner > a {
        min-height: 62px;

        font-size: 18px;
    }

    .mobile-nav-contact {
        grid-template-columns: 1fr;
    }


    /* HERO */

    .hero {
        min-height: 600px;

        background-position: 70% center;
    }

    .hero-shade {
        background:
            linear-gradient(
                90deg,
                rgba(3,5,7,.96) 0%,
                rgba(3,5,7,.78) 58%,
                rgba(3,5,7,.34) 100%
            );
    }

    .hero-container {
        width: 88%;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;

        margin-left: 0;
    }

    .hero-label {
        margin-bottom: 18px;

        font-size: 10px;
    }

    .hero-text h1 {
        max-width: 95%;

        font-size: clamp(37px,10vw,46px);

        line-height: 1.05;

        letter-spacing: -1.3px;
    }

    .hero-text p {
        max-width: 94%;

        margin-top: 20px;

        font-size: 14px;

        line-height: 1.6;
    }

    .hero-buttons {
        width: 100%;

        margin-top: 26px;

        flex-direction: column;
    }

    .hero-primary,
    .hero-secondary {
        width: 100%;

        height: 52px;
    }


    /* CATEGORIES */

    .categories-container {
        width: 100%;

        grid-template-columns: 1fr;
    }

    .category-item {
        min-height: 92px;

        padding: 20px 7%;

        justify-content: flex-start;

        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .category-item::after {
        display: none;
    }


    /* SERVICES */

    .services,
    .about,
    .contact {
        padding: 70px 0;
    }

    .services-container,
    .about-container,
    .brands-container,
    .contact-container,
    .footer-container {
        width: 88%;
    }

    .services-heading {
        margin-bottom: 35px;
    }

    .services-heading h2,
    .contact h2 {
        font-size: clamp(35px,9.5vw,46px);
    }

    .services-heading p {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;

        padding: 30px 25px;
    }

    .service-card > p {
        min-height: auto;
    }

    .service-top {
        margin-bottom: 28px;
    }

    .service-icon {
        width: 52px;
        height: 52px;
    }

    .service-card h3 {
        font-size: 21px;
    }

    .service-link {
        margin-top: 28px;
    }

    .supply-box {
        padding: 26px 22px;

        grid-template-columns: 1fr;
    }

    .supply-btn {
        grid-column: auto;

        justify-content: center;
    }


    /* ABOUT */

    .about {
        background-position: 70% center;
    }

    .about-overlay {
        background: rgba(3,5,7,.84);
    }

    .about-content h2 {
        font-size: clamp(35px,9.5vw,46px);
    }

    .about-content p {
        font-size: 14px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        min-height: auto;

        padding: 32px 27px;
    }

    .stat-item:not(:last-child) {
        border-right: 0;

        border-bottom: 1px solid rgba(255,255,255,.1);
    }


    /* BRANDS */

    .brands {
        padding: 60px 0;
    }

    .brands-heading {
        margin-bottom: 35px;
    }

    .brands-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .brand-item {
        min-height: 92px;

        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .brand-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,.08);
    }

    .brand-item:nth-child(even) {
        border-right: 0;
    }


    /* CONTACT */

    .contact-actions {
        flex-direction: column;
    }

    .contact-primary,
    .contact-secondary {
        width: 100%;

        min-width: 0;
    }

    .contact-info-item {
        min-height: 90px;

        padding: 18px;
    }

    .contact-info-icon {
        width: 44px;
        height: 44px;
    }

    .contact-info-item strong,
    .contact-info-item a {
        font-size: 13px;
    }


    /* RED STRIP */

    .final-strip {
        padding: 30px 0;
    }

    .final-strip-container {
        width: 88%;

        flex-direction: column;

        align-items: flex-start;

        gap: 22px;
    }

    .final-strip a {
        width: 100%;

        justify-content: center;
    }


    /* FOOTER */

    .footer-container {
        padding: 55px 0 45px;

        grid-template-columns: 1fr;

        gap: 42px;
    }

    .footer-company {
        max-width: 100%;
    }

    .footer-bottom-container {
        width: 88%;

        min-height: 95px;

        padding: 18px 0;

        flex-direction: column;

        align-items: flex-start;
        justify-content: center;

        gap: 12px;
    }

}/* =========================================
   PAJISJET / PRODUCT SHOWCASE
========================================= */

.products-showcase {
    width: 100%;
    background: #07090b;
    padding: 90px 6%;
}

.products-showcase-header {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 45px;
}

.products-showcase-header span {
    display: block;
    color: #f21d2f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.products-showcase-header h2 {
    color: #ffffff;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.1;
    margin: 0 0 15px;
    max-width: 700px;
}

.products-showcase-header p {
    color: #8f949b;
    font-size: 15px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0;
}


/* GRID */

.products-grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* CARD */

.product-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;

    overflow: hidden;
    border-radius: 6px;

    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.07);
}


/* IMAGE */

.product-card img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition:
        transform 0.55s ease,
        filter 0.55s ease;
}


/* DARK GRADIENT */

.product-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.90) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(0, 0, 0, 0.02) 70%
        );

    pointer-events: none;
}


/* TEXT */

.product-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 25px;

    z-index: 2;
}

.product-overlay span {
    display: block;

    color: #f21d2f;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;

    margin-bottom: 6px;
}

.product-overlay h3 {
    margin: 0;

    color: #ffffff;

    font-size: 24px;
    font-weight: 700;
}


/* HOVER */

.product-card:hover img {
    transform: scale(1.045);
    filter: brightness(1.08);
}

.product-card::before {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #f21d2f;

    z-index: 3;

    transition: width 0.4s ease;
}

.product-card:hover::before {
    width: 100%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .products-showcase {
        padding: 70px 5%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .products-showcase {
        padding: 55px 18px;
    }

    .products-showcase-header {
        margin-bottom: 30px;
    }

    .products-showcase-header h2 {
        font-size: 29px;
    }

    .products-showcase-header p {
        font-size: 14px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-overlay {
        left: 20px;
        bottom: 18px;
    }

    .product-overlay h3 {
        font-size: 21px;
    }

}