/* =========================================================
   IPCServ Marketplace - style.css
========================================================= */

/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',Arial,sans-serif;
    background:#0f172a;
    color:#ffffff;
    line-height:1.7;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* =========================================================
   HEADER
========================================================= */

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#0f172a;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:78px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#ffffff;
    font-size:30px;
    font-weight:800;
}

.logo span:first-of-type{
    color:#6366f1;
}

.divider{
    color:#6366f1;
}

.author-name{
    color:#cbd5e1;
    font-size:18px;
    font-weight:500;
}

/* NAVIGATION */

nav{
    display:flex;
    align-items:center;
    gap:10px;
}

nav a{
    color:#cbd5e1;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    padding:10px 18px;
    border-radius:8px;
    transition:all .25s ease;
}

nav a:hover{
    color:#ffffff;
    background:rgba(99,102,241,.18);
}

/* BUTTON */

.btn{
    display:inline-block;
    background:#6366f1;
    color:#ffffff !important;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    padding:10px 18px;
    border-radius:8px;
    transition:.25s;
}

.btn:hover{
    background:#4f46e5;
}

/* MOBILE MENU */

.menu-toggle{
    display:none;
    cursor:pointer;
    font-size:30px;
}

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

.hero{
    padding:80px 0;
}

.hero-grid{
    display:flex;
    align-items:center;
    gap:70px;
}

.hero-image{
    flex:0 0 420px;
}

.hero-image img{
    width:100%;
    display:block;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.hero-grid > div:last-child{
    flex:1;
}

.hero h1{
    font-size:50px;
    margin-bottom:20px;
}

.hero ul{
    margin:30px 0;
    padding-left:24px;
}

.hero li{
    margin-bottom:12px;
}

/* =========================================================
   TITLES
========================================================= */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:36px;
    margin-bottom:10px;
}

.section-title p{
    color:#cbd5e1;
}

/* =========================================================
   FEATURES
========================================================= */

.features{
    padding:80px 0;
}

.feature-grid{
    display:flex;
    justify-content:center;
}

/* =========================================================
   PRICING
========================================================= */

.pricing{
    padding:80px 0;
}

.pricing-card{
    max-width:620px;
    margin:auto;
    background:#111827;
    border-radius:16px;
    padding:45px;
    text-align:center;
}

.price{
    font-size:54px;
    font-weight:800;
    color:#6366f1;
    margin:25px 0;
}

.price span{
    font-size:18px;
    color:#cbd5e1;
}

.pricing-card ul{
    list-style:none;
    margin:30px 0;
}

.pricing-card li{
    margin-bottom:12px;
}

/* =========================================================
   REVIEWS
========================================================= */

.reviews{
    padding:80px 0;
}

.review-grid{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.review-card{
    flex:1;
    min-width:260px;
    background:#111827;
    padding:25px;
    border-radius:16px;
}

.stars{
    color:#FFD700;
    font-size:22px;
    margin-bottom:12px;
}

/* =========================================================
   CTA
========================================================= */

.cta{
    padding:80px 0;
}

.cta-box{
    background:#111827;
    border-radius:16px;
    text-align:center;
    padding:60px;
}

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

footer{
    margin-top:80px;
    padding:40px 0;
    background:#0b1220;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
}

footer p{
    color:#cbd5e1;
    margin:8px 0;
}

footer a{
    color:#6366f1;
    text-decoration:none;
}

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

@media (max-width:900px){

    .menu-toggle{
        display:block;
    }

    nav{
        display:none;
        position:absolute;
        top:78px;
        left:0;
        width:100%;
        background:#111827;
        flex-direction:column;
        padding:20px;
        gap:8px;
    }

    nav.show{
        display:flex;
    }

    .hero-grid{
        flex-direction:column;
        text-align:center;
    }

    .hero-image{
        flex:none;
        max-width:360px;
        width:100%;
    }

    .hero ul{
        text-align:left;
        display:inline-block;
    }

    .review-grid{
        flex-direction:column;
    }

    .cta-box{
        padding:35px;
    }

    .hero h1{
        font-size:38px;
    }

    .section-title h2{
        font-size:30px;
    }
}

