:root{

    --primary:#071B63;
    --secondary:#1B75FF;
    --accent:#49A6FF;

    --white:#ffffff;
    --light:#F7FAFF;

    --text:#1E293B;

    --shadow:0 20px 60px rgba(0,0,0,.12);

    --radius:24px;

}

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:var(--light);
    color:var(--text);
    overflow-x:hidden;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

section{

    padding:100px 8%;

}

.section-header{

    text-align:center;
    margin-bottom:60px;

}

.section-header span{

    color:var(--secondary);
    font-weight:700;
    letter-spacing:2px;
    font-size:.85rem;

}

.section-header h2{

    margin-top:15px;
    font-size:3rem;
    color:var(--primary);
    line-height:1.15;

}

/* ======================
NAVBAR
====================== */

.navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:999;

    padding:18px 8%;

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

    backdrop-filter:blur(14px);

    background:rgba(255,255,255,.85);

    border-bottom:1px solid rgba(0,0,0,.05);

}

.logo img{

    height:60px;

}

.navbar nav{

    display:flex;
    gap:30px;

}

.navbar nav a{

    color:var(--primary);
    font-weight:600;

}

/* ======================
BUTTONS
====================== */

.btn-primary{

    display:inline-flex;

    padding:15px 28px;

    background:var(--primary);

    color:white;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    display:inline-flex;

    padding:15px 28px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:50px;

    font-weight:700;

}

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

.hero{

    min-height:100vh;

    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

    background:
    linear-gradient(
    135deg,
    #f8fbff 0%,
    #e8f2ff 100%
    );

}

.hero-tag{

    color:var(--secondary);

    font-weight:700;

    letter-spacing:2px;

}

.hero h1{

    font-size:5rem;
    color:var(--primary);
    margin-top:20px;

}

.hero h2{

    font-size:2rem;
    margin-top:10px;
    color:var(--secondary);

}

.hero p{

    margin-top:25px;

    max-width:550px;

    font-size:1.1rem;

    line-height:1.8;

}
.hero-features{

    display:flex;
    flex-wrap:wrap;
    gap:20px;

    margin-top:25px;

}

.hero-features span{

    background:white;

    padding:12px 18px;

    border-radius:30px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    font-weight:600;

    color:var(--primary);

}

.brand-line{

    margin-top:35px;

    font-size:1.4rem;

    font-weight:700;

    color:var(--secondary);

    letter-spacing:2px;

    text-transform:uppercase;

}
.hero-buttons{

    margin-top:35px;

    display:flex;

    gap:15px;

}

.hero-image{

    display:flex;
    justify-content:center;

}

.hero-image img{

    max-height:720px;

    filter:drop-shadow(0 30px 60px rgba(0,0,0,.15));

}

/* ======================
ABOUT
====================== */

.about{

    background:white;

}

.about-content{

    max-width:900px;
    margin:auto;

    text-align:center;

    font-size:1.15rem;

    line-height:2;

}

.stats{

    margin-top:60px;

    display:grid;

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

    gap:25px;

}

.stat-card{

    padding:35px;

    background:white;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    text-align:center;

}

/* ======================
PRODUCTS
====================== */

.products{

    background:#f8fbff;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}

.product-card{

    background:white;

    padding:40px;

    border-radius:var(--radius);

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-card img{

    height:320px;
    object-fit:contain;
    margin:auto;

}

.product-card h3{

    margin-top:25px;

    color:var(--primary);

}

/* ======================
PROCESS
====================== */

.process{

    background:white;

}

.timeline{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.timeline div{

    padding:25px;

    background:var(--primary);

    color:white;

    border-radius:18px;

    text-align:center;

    font-weight:700;

}

/* ======================
WHY CLEO
====================== */

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.why-card{

    padding:40px;

    border-radius:var(--radius);

    background:white;

    box-shadow:var(--shadow);

    text-align:center;

    font-weight:700;

}

/* ======================
B2B
====================== */

.b2b{

    background:var(--primary);

    color:white;

}

.b2b .section-header h2{

    color:white;

}

.b2b-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.b2b-grid div{

    background:rgba(255,255,255,.08);

    padding:40px;

    border-radius:20px;

    text-align:center;

    font-weight:700;

}

/* ======================
PRIVATE LABEL
====================== */

.private-label{

    text-align:center;

    background:white;

}

.private-label p{

    max-width:900px;

    margin:auto;

    line-height:2;

    font-size:1.15rem;

}

/* ======================
FACILITY
====================== */

.facility{

    background:#f8fbff;

}

.facility img{

    width:100%;

    border-radius:30px;

    box-shadow:var(--shadow);

}

/* ======================
DEALERSHIP
====================== */

.dealership{

    text-align:center;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    #0c298f
    );

    color:white;

}

.dealership h2{

    font-size:3rem;

}

.dealership p{

    max-width:800px;

    margin:25px auto;

    line-height:2;

}

.dealership .btn-primary{

    background:white;

    color:var(--primary);

}

/* ======================
CONTACT
====================== */

.contact{

    background:white;

}

.contact-grid{

    display:grid;

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

    gap:30px;

}

.contact-grid div{

    padding:35px;

    border-radius:20px;

    background:#f8fbff;

}

.contact-grid h3{

    color:var(--primary);

    margin-bottom:10px;

}

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

footer{

    background:#04154b;

    color:white;

    text-align:center;

    padding:60px 20px;

}

footer h3{

    font-size:2rem;

}

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

@media(max-width:992px){

   .hero{

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

    background:
    radial-gradient(
        circle at top right,
        rgba(73,166,255,.15),
        transparent 40%
    ),
    linear-gradient(
        135deg,
        #ffffff 0%,
        #eef6ff 100%
    );

}

    .hero-buttons{

        justify-content:center;

    }

    .stats,
    .product-grid,
    .why-grid,
    .b2b-grid,
    .contact-grid{

        grid-template-columns:1fr;

    }

    .timeline{

        grid-template-columns:1fr;

    }

    .hero h1{

        font-size:3.2rem;

    }

    .section-header h2{

        font-size:2.3rem;

    }

    .navbar nav{

        display:none;

    }

}
