```css
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #e30613;
    --dark-red: #b8000b;
    --black: #111111;
    --dark: #181818;
    --gray: #f5f5f5;
    --text: #666;
    --white: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--black);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* TOP */

.top-header {
    background: #090909;
    color: #fff;
    font-size: 13px;
}

.top-content {
    min-height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-content a:hover {
    color: var(--red);
}


/* NAV */

.navbar {
    background: #fff;
    box-shadow: 0 3px 20px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 20px;
    font-weight: 800;
}

.logo span {
    color: var(--red);
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-menu > li > a {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-menu > li > a:hover {
    color: var(--red);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 30px;
    left: -15px;
    background: #fff;
    min-width: 210px;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
}

.dropdown-menu a:hover {
    background: var(--gray);
    color: var(--red);
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 30px;
}


/* HERO */

.hero {
    min-height: 690px;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.90),
            rgba(0,0,0,.55),
            rgba(0,0,0,.30)
        ),
        linear-gradient(
            135deg,
            #151515,
            #343434
        );

    z-index: -1;
}

.hero-background::after {
    content: "🚛";
    position: absolute;
    right: 8%;
    bottom: 5%;
    font-size: 300px;
    opacity: .12;
}

.hero-content {
    padding: 100px 0;
}

.hero-text {
    max-width: 720px;
}

.red-label,
.section-label {
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.08;
    margin: 20px 0;
    font-weight: 800;
}

.hero p {
    color: #ddd;
    font-size: 18px;
    max-width: 650px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}


/* BUTTONS */

.btn {
    display: inline-block;
    padding: 15px 28px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    border: 2px solid transparent;
    transition: .25s;
}

.btn-red {
    background: var(--red);
    color: #fff;
}

.btn-red:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #111;
}

.btn-dark {
    background: #111;
    color: #fff;
}


/* STATS */

.stats {
    background: var(--red);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.stat {
    padding: 30px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.25);
}

.stat:last-child {
    border: 0;
}

.stat strong {
    display: block;
    font-size: 35px;
}

.stat span {
    font-size: 12px;
    text-transform: uppercase;
}


/* PROVIDERS */

.providers {
    padding: 100px 0;
}

.provider-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.provider-grid h2,
.about h2,
.contact h2,
.catalog h2 {
    font-size: 48px;
    line-height: 1.15;
    margin: 15px 0 25px;
}

.provider-grid p,
.about-text p,
.contact-info > p,
.catalog p {
    color: var(--text);
    margin-bottom: 20px;
}

.provider-card {
    background: var(--gray);
    padding: 60px;
    border-left: 5px solid var(--red);
}

.card-icon {
    font-size: 55px;
    margin-bottom: 15px;
}

.provider-card h3 {
    font-size: 25px;
}


/* ABOUT */

.about {
    background: var(--gray);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-box {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 190px;
    background:
        linear-gradient(
            135deg,
            #222,
            #555
        );
    filter: grayscale(20%);
}

.about-text p {
    max-width: 600px;
}


/* SECTION HEADING */

.section-heading {
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 45px;
    margin-top: 10px;
}

.section-heading p {
    color: var(--text);
}

.center {
    text-align: center;
}


/* PRODUCTS */

.products {
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-bottom: 50px;
}

.product-card {
    padding: 35px;
    background: #fff;
    border: 1px solid #eee;
    transition: .3s;
}

.product-card:hover {
    border-color: var(--red);
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.product-icon {
    font-size: 45px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.product-card p {
    color: var(--text);
    margin-bottom: 20px;
}

.product-card a,
.news-content a {
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
}


/* BRANDS */

.brands {
    background: #111;
    color: #fff;
    padding: 90px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 10px;
}

.brands-grid div {
    border: 1px solid #444;
    padding: 25px 10px;
    text-align: center;
    font-weight: 800;
    font-size: 13px;
    color: #aaa;
}

.brands-grid div:hover {
    border-color: var(--red);
    color: #fff;
}


/* NEWS */

.news {
    padding: 100px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.news-grid article {
    border: 1px solid #eee;
    background: #fff;
}

.news-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
    font-size: 45px;
    font-weight: 900;
}

.dark-image {
    background: #222;
}

.news-content {
    padding: 28px;
}

.news-content span {
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
}

.news-content h3 {
    margin: 10px 0;
    font-size: 20px;
}

.news-content p {
    color: var(--text);
    margin-bottom: 18px;
}


/* TESTIMONIALS */

.testimonials {
    background: var(--gray);
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.testimonial {
    background: #fff;
    padding: 35px;
}

.stars {
    color: #f3b400;
    margin-bottom: 20px;
}

.testimonial p {
    color: var(--text);
    margin-bottom: 20px;
}


/* CATALOG */

.catalog {
    padding: 80px 0;
    background: var(--red);
    color: #fff;
}

.catalog .section-label {
    color: #fff;
}

.catalog-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.catalog h2 {
    margin-bottom: 15px;
}

.catalog p {
    color: #fff;
}

.catalog .btn {
    background: #fff;
    color: #111;
    flex-shrink: 0;
}


/* BRANCHES */

.branches {
    padding: 100px 0;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.branch {
    padding: 35px;
    border: 1px solid #ddd;
    transition: .25s;
}

.branch:hover {
    border-color: var(--red);
}

.branch > span {
    color: var(--red);
    font-weight: 800;
}

.branch h3 {
    margin: 10px 0;
}

.branch p {
    color: var(--text);
    font-size: 14px;
}


/* CONTACT */

.contact {
    background: var(--gray);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-item {
    margin: 25px 0;
}

.contact-item strong,
.contact-item span {
    display: block;
}

.contact-item strong {
    font-size: 11px;
    color: var(--red);
}

.whatsapp-button {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 14px 22px;
    font-size: 12px;
    font-weight: 800;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 16px;
    font-family: inherit;
    outline: none;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--red);
}

.contact-form button {
    cursor: pointer;
}


/* FOOTER */

footer {
    background: #0b0b0b;
    color: #fff;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--red);
    font-size: 35px;
}

.footer-grid p,
.footer-grid a {
    color: #999;
}

.footer-grid a {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-grid h3 {
    margin-bottom: 20px;
    font-size: 14px;
}

.copyright {
    border-top: 1px solid #292929;
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 12px;
}


/* WHATSAPP */

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,.25);
    z-index: 1000;
}


/* MOBILE */

@media(max-width: 950px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 5%;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        display: block;
        padding: 13px 0;
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .provider-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .news-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(4,1fr);
    }

    .branches-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }

}


@media(max-width: 600px) {

    .top-content {
        flex-direction: column;
        padding: 8px 0;
        gap: 3px;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .provider-grid h2,
    .about h2,
    .contact h2,
    .catalog h2,
    .section-heading h2 {
        font-size: 35px;
    }

    .products-grid,
    .news-grid,
    .testimonial-grid,
    .branches-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .catalog-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .image-box {
        min-height: 300px;
        font-size: 120px;
    }

}
```
