/* ================= HERO ================= */
.wp-hero{
    background: radial-gradient(circle at top, rgba(111, 0, 255, .25), transparent 40%);
    padding-top: 180px;.0
}
   

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.hero-left{
    width:50%;
}

.hero-right{
    width:50%;
}

.wp-heroImg img{
	width: 100%;
	max-width: 600px;
}

.hero-btns{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.btn-outline{
    padding:14px 28px;
    border:1px solid #d1d5db;
    color:#111827;
    border-radius:10px;
    font-weight:600;
}

.hero-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}


.hero-stats p{
    font-size:14px;
}

/* ================= COMMON TITLE ================= */

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


/* ================= WHY SECTION ================= */

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-box{
    background:#f9fafb;
    padding:35px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
}

.why-box:hover{
    transform:translateY(-8px);
}

.why-box i{
    font-size:28px;
    color:#4f46e5;
    margin-bottom:20px;
}

.why-box h3{
    margin-bottom:15px;
}
.why-grid .card{
	text-align: center;
	border: none;
	background: none;
}
/* ================= WEBSITE TYPES ================= */

.types-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
}
.types-grid .card{
	padding: 18px;
}

.type-box:hover{
    transform:translateY(-8px);
}

.type-box i{
    font-size:30px;
    color:#4f46e5;
    margin-bottom:15px;
}

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

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-box{
    background:#f9fafb;
    padding:30px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box i{
    font-size:28px;
    color:#4f46e5;
    margin-bottom:15px;
}

/* ================= BUILDER SECTION ================= */

.builder-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.builder-img{
    width:60%;
}
.builder-content{
    width:40%;
}


.builder-content ul{
    list-style:none;
	margin-top: 25px;
}

.builder-content ul li{
    margin-bottom:18px;
    font-size:18px;
}

.builder-content ul li i{
    color:#4f46e5;
    margin-right:10px;
}


.icon-before {
    position: relative;
    padding-left: 30px;
}

.icon-before::before {
    content: attr(data-icon);
    position: absolute;
    left: 0;
    top: 14px;
    font-size: 16px;
}

/* ================= SEO SECTION ================= */

.seo-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}



.seo-left,
.seo-right{
    width:50%;
}
.seo-right{
background: radial-gradient(circle at 464px 180px, rgba(123, 0, 323, 0.5) 1%, transparent 47%);
}

.seo-left ul{
    list-style:none;
}

.seo-left ul li{
    margin-bottom:18px;
    font-size:18px;
}

.seo-left ul li i{
    color:#4f46e5;
    margin-right:10px;
}


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

@media(max-width:992px){

    .hero-content,
    .builder-wrap,
    .seo-wrap,
    .cta-box{
        flex-direction:column;
    }

    .hero-left,
    .hero-right,
    .builder-img,
    .builder-content,
    .seo-left,
    .seo-right{
        width:100%;
    }

    .hero-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .why-grid,
    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .types-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-left h1{
        font-size:48px;
    }

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

    .builder-content h2,
    .seo-left h2{
        font-size:36px;
    }
}

@media(max-width:768px){

    .hero-stats,
    .why-grid,
    .features-grid,
    .types-grid{
        grid-template-columns:1fr;
    }

    .hero-btns,
    .cta-buttons{
        flex-direction:column;
    }

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

    .cta-box h2{
        font-size:28px;
    }
}