:root{
    --primary:#1677ff;
    --dark:#111827;
    --muted:#6b7280;
    --bg:#eef3f7;
}

body{
    background: var(--bg);
    font-family: 'Inter', sans-serif;
}

/* HERO */
.home-hero{
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(rgba(5,10,35,.65), rgba(5,10,35,.65)),
        url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.home-hero h1{
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.home-hero p{
    color: rgba(255,255,255,.85);
}

.hero-domain{
    max-width: 700px;
    margin: auto;
    margin-top: 35px;
}

.hero-domain .form-control{
    height: 58px;
    border: 0;
    border-radius: 8px 0 0 8px;
    padding-left: 20px;
}

.hero-domain .btn{
    height: 58px;
    border-radius: 0 8px 8px 0;
    padding: 0 35px;
    font-weight: 600;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-weight:800;
    color:#1f2937;
    margin-bottom:10px;
}

.section-title p{
    color:#6b7280;
}

/* FEATURE TOP */
.feature-card{
    background:#fff;
    padding:40px 25px;
    border-radius:16px;
    text-align:center;
    transition:.3s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card i{
    font-size:42px;
    margin-bottom:18px;
}

.feature-card h5{
    font-weight:700;
    margin-bottom:10px;
}

.feature-card p{
    color:var(--muted);
    font-size:14px;
}

/* PRICING */
.pricing-card{
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    position:relative;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    height:100%;
}

.pricing-card:hover{
    transform:translateY(-8px);
}

.pricing-card.featured{
    border:2px solid #facc15;
}

.best-seller{
    position:absolute;
    top:15px;
    left:15px;
    background:#facc15;
    color:#111;
    font-size:11px;
    font-weight:700;
    padding:4px 10px;
    border-radius:20px;
}

.pricing-card h4{
    font-weight:700;
    margin-bottom:20px;
}

.price{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin-bottom:0;
}

.price small{
    font-size:14px;
    color:#6b7280;
}

.pricing-list{
    margin:25px 0;
    padding:0;
    list-style:none;
}

.pricing-list li{
    margin-bottom:10px;
    color:#4b5563;
    font-size:14px;
}

.pricing-list i{
    color:#22c55e;
    margin-right:8px;
}

/* CATEGORY */
.category-card{
    background:#fff;
    border-radius:16px;
    padding:35px 25px;
    text-align:center;
    transition:.3s;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.04);
}

.category-card:hover{
    transform:translateY(-8px);
}

.category-card img{
    width:70px;
    margin-bottom:20px;
}

.category-card h5{
    font-weight:700;
}

.category-card p{
    color:#6b7280;
    font-size:14px;
    min-height:50px;
}

/* CLIENT */
.client-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
    height:100%;
}

.client-card img{
    max-width:110px;
    margin-bottom:20px;
}

.client-card h5{
    font-weight:700;
}

.client-card p{
    color:#6b7280;
    font-size:14px;
}

/* TESTIMONIAL */
.testi-card{
    background:#fff;
    border-radius:16px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
    height:100%;
}

.testi-card h6{
    font-weight:700;
}

.testi-card p{
    font-size:14px;
    color:#6b7280;
}

.stars{
    color:#facc15;
}

/* TECHNOLOGY */
.tech-logo img{
    max-width:140px;
    opacity:.7;
    transition:.3s;
}

.tech-logo img:hover{
    opacity:1;
}

/* PAYMENT */
.payment-box{
    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.payment-box img{
    max-width:100%;
}

.btn-primary{
    background:var(--primary);
    border-color:var(--primary);
}

.btn-primary:hover{
    background:#0f67df;
    border-color:#0f67df;
}

@media(max-width:768px){

    .home-hero{
        padding:90px 0;
    }

    .home-hero h1{
        font-size:34px;
    }

    .hero-domain .form-control{
        border-radius:8px;
        margin-bottom:10px;
    }

    .hero-domain .btn{
        width:100%;
        border-radius:8px;
    }

}