*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#05070b;
    color:white;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:92%;
    max-width:1300px;
    margin:auto;
}

/* NAVBAR */

nav{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    backdrop-filter:blur(18px);
    background:rgba(0,0,0,.28);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo img{
    width:54px;
    height:54px;
    border-radius:14px;
    object-fit:cover;
}

.logo-text h1{
    font-size:22px;
    font-weight:800;
}

.logo-text span{
    color:#4ddcff;
}

.menu{
    display:flex;
    gap:34px;
}

.menu a{
    color:#d4d4d4;
    transition:.3s;
}

.menu a:hover{
    color:#4ddcff;
}

/* HERO */

.hero-banner{
    width:100%;
    margin-top:86px;
    aspect-ratio:1904/473;

    background:
    linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.45)),
    url('img/banner.webp');

    background-repeat:no-repeat;
    background-position:center center;
    background-size:100% auto;

    background-color:#05070b;
}

.hero-text,
.hero{
    margin-top:-80px;
    position:relative;
    z-index:5;
}

.hero-single,
.hero-box{
    background:rgba(10,10,10,.88);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.06);
    border-radius:34px;
    padding:60px;
    max-width:1050px;
    margin:auto;
    text-align:center;
}

.badge{
    display:inline-block;
    padding:12px 18px;
    border-radius:999px;
    background:rgba(77,220,255,.12);
    border:1px solid rgba(77,220,255,.22);
    color:#4ddcff;
    margin-bottom:24px;
}

.hero-single h2,
.hero-box h2{
    font-size:48px;
    line-height:1.15;
    margin-bottom:20px;
    font-weight:800;
}

.hero-single h2 span,
.hero-box h2 span{
    display:block;
    color:#4ddcff;
}

.hero-single p,
.hero-box p{
    color:#cfcfcf;
    line-height:1.9;
    max-width:850px;
    margin:auto;
    margin-bottom:18px;
}

/* BUTTON */

.hero-buttons,
.marketplace-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
    margin-top:34px;
}

.btn{
    padding:14px 24px;
    border-radius:14px;
    font-weight:600;
    transition:.3s;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-width:200px;
}

.btn:hover{
    transform:translateY(-4px);
}

.btn img{
    width:36px;
    height:36px;
    border-radius:10px;
    object-fit:cover;
    background:white;
    padding:2px;
}

.btn-primary{
    background:#4ddcff;
    color:black;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.04);
}

/* SECTION */

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h3{
    font-size:42px;
    margin-bottom:12px;
}

.section-title p{
    color:#999;
}

/* REVIEW */

.review-wrapper{
    background:rgba(10,10,10,.88);
    border:1px solid rgba(255,255,255,.06);
    border-radius:30px;
    padding:20px;
    overflow:hidden;
}

/* CATEGORY GRID */

.categories-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}

.category-card{
    position:relative;
    overflow:hidden;
    border-radius:26px;
    height:260px;
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.category-card:hover{
    transform:translateY(-8px);
    border-color:#4ddcff55;
    box-shadow:0 15px 40px rgba(77,220,255,.12);
}

.category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.category-card:hover img{
    transform:scale(1.08);
}

.category-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.12));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:24px;
}

.category-overlay h4{
    font-size:24px;
    margin-bottom:8px;
}

.category-overlay p{
    color:#ddd;
    line-height:1.6;
    font-size:14px;
}

/* BUY BUTTON */

.buy-btn{
    margin-top:16px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:12px;
    background:#4ddcff;
    color:black;
    font-size:14px;
    font-weight:700;
    width:max-content;
}

.buy-btn img{
    width:22px;
    height:22px;
    border-radius:6px;
    background:white;
    padding:2px;
}

/* SERVICES */

.services,
.service-grid,
.procedure-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}

.service,
.service-card,
.procedure-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:34px;
    transition:.3s;
}

.service:hover,
.service-card:hover,
.procedure-card:hover{
    transform:translateY(-6px);
    border-color:#4ddcff;
}

.service-icon,
.procedure-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    background:rgba(77,220,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.service h4,
.service-card h4,
.procedure-card h4{
    font-size:22px;
    margin-bottom:14px;
}

.service p,
.service-card p,
.procedure-card p{
    color:#cfcfcf;
    line-height:1.8;
}

/* ABOUT */

.about-content{
    width:100%;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    padding:48px;
    border-radius:28px;
}

.about-content .badge{
    display:table;
    margin:0 auto 24px;
}

.about-content h2{
    text-align:center;
    font-size:52px;
    line-height:1.15;
    margin-bottom:30px;
}

.about-content h2 span{
    display:block;
    color:#4ddcff;
}

.about-content p{
    color:#d0d0d0;
    line-height:1.9;
    margin-bottom:18px;
    text-align:left;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

/* BRANDS */

.brands{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
    gap:18px;
}

.brand{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    padding:24px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    height:110px;
}

.brand img{
    max-width:120px;
    max-height:50px;
    object-fit:contain;
}

/* CONTACT */

.contact{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-card,
form{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    padding:30px;
    border-radius:24px;
}

.contact-card{
    margin-bottom:20px;
}

form input,
form textarea{
    width:100%;
    padding:18px;
    border:none;
    border-radius:14px;
    margin-bottom:18px;
    background:rgba(255,255,255,.06);
    color:white;
}

form button{
    width:100%;
    padding:18px;
    border:none;
    border-radius:14px;
    background:#4ddcff;
    color:black;
    font-weight:700;
}

/* FLOATING WA */

.floating-wa{
    position:fixed;
    bottom:24px;
    right:24px;
    width:64px;
    height:64px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    z-index:999;
}

/* FOOTER */

footer{
    padding:35px 0;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    color:#777;
}

/* MOBILE */

@media(max-width:768px){

    .menu{
        display:none;
    }

    .hero-banner{
        margin-top:74px;
        aspect-ratio:1904/473;
        background-size:contain;
        background-repeat:no-repeat;
        background-position:center top;
    }

    .hero-text,
    .hero{
        margin-top:-20px;
    }

    .hero-single,
    .hero-box{
        padding:34px 22px;
    }

    .hero-single h2,
    .hero-box h2,
    .about-content h2{
        font-size:32px;
    }

    .hero-buttons,
    .marketplace-buttons{
        flex-direction:column;
    }

    .btn,
    .marketplace-buttons .btn{
        width:100%;
    }

    .categories-grid,
    .services,
    .brands,
    .contact,
    .service-grid,
    .procedure-grid{
        grid-template-columns:1fr;
    }

    .service,
    .service-card,
    .procedure-card,
    .about-content{
        padding:26px;
    }

    .about-content p{
        font-size:14px;
        line-height:1.8;
    }

}