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

.hero{
    padding:20px 0 90px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:60px;
    align-items:center;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    border-radius:50px;
    padding:14px 22px;
    font-size:15px;
    font-weight:700;
    margin-bottom:28px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.hero-title{
    font-size:76px;
    line-height:1.05;
    font-weight:800;
    margin-bottom:28px;
}

.hero-subtext{
    font-size:22px;
    line-height:1.8;
    color:#6b7280;
    margin-bottom:40px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-card{
    background:#fff;
    border-radius:40px;
    padding:45px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.hero-card-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:40px;
}

.hero-card-top div{
    background:#f5f7ff;
    border-radius:20px;
    padding:18px 22px;
    text-align:center;
    width:48%;
}

.hero-card-top strong{
    display:block;
    font-size:32px;
    margin-bottom:8px;
}

.hero-iq-circle{
    width:240px;
    height:240px;
    margin:auto;
    border-radius:50%;
    background:conic-gradient(
        #8b5cf6,
        #ec4899,
        #8b5cf6
    );
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.hero-iq-circle::before{
    content:'';
    position:absolute;
    width:190px;
    height:190px;
    background:#fff;
    border-radius:50%;
}

.hero-iq-number{
    position:relative;
    z-index:2;
    font-size:74px;
    font-weight:800;
}

.hero-iq-text{
    margin-top:30px;
    text-align:center;
    font-size:22px;
    font-weight:700;
}

/* =========================
   TRUST STATS
========================= */

.stats{
    padding:20px 0 100px;
}

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

.stat-card{
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(12px);
    border-radius:30px;
    padding:35px;
    text-align:center;
}

.stat-card h3{
    font-size:42px;
    margin-bottom:12px;
}

.stat-card p{
    font-size:18px;
    color:#6b7280;
}

/* =========================
   HOW IT WORKS
========================= */

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

.step-card{
    background:#fff;
    border-radius:35px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.step-number{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899
    );
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px auto;
    font-size:28px;
    font-weight:800;
}

.step-card h3{
    font-size:28px;
    margin-bottom:18px;
}

.step-card p{
    font-size:18px;
    line-height:1.7;
    color:#6b7280;
}

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

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

.feature-card{
    background:#fff;
    border-radius:35px;
    padding:40px;
}

.feature-card h3{
    font-size:28px;
    margin-bottom:18px;
}

.feature-card p{
    font-size:18px;
    line-height:1.8;
    color:#6b7280;
}

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

.pricing-card{
    max-width:650px;
    margin:auto;
    background:#fff;
    border-radius:40px;
    padding:55px;
    text-align:center;
    box-shadow:0 25px 60px rgba(0,0,0,0.07);
}

.price-tag{
    font-size:90px;
    font-weight:800;
    margin:25px 0;
    background:linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.pricing-list{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:40px;
}

.pricing-list div{
    background:#f5f7ff;
    padding:20px;
    border-radius:18px;
    font-size:18px;
}

/* =========================
   TESTIMONIALS
========================= */

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

.testimonial-card{
    background:#fff;
    border-radius:35px;
    padding:40px;
}

.testimonial-card p{
    font-size:20px;
    line-height:1.8;
    color:#374151;
    margin-bottom:25px;
}

.testimonial-user{
    font-size:18px;
    font-weight:700;
}

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

.contact-box{
    background:#fff;
    border-radius:40px;
    padding:50px;
    max-width:850px;
    margin:auto;
}

.contact-box input,
.contact-box textarea{
    width:100%;
    border:none;
    background:#f5f7ff;
    border-radius:20px;
    padding:22px;
    font-size:18px;
    margin-bottom:20px;
}

.contact-box textarea{
    min-height:180px;
    resize:none;
}

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

.final-cta{
    text-align:center;
    padding:120px 0;
}

.final-cta h2{
    font-size:70px;
    margin-bottom:25px;
}

.final-cta p{
    font-size:24px;
    color:#6b7280;
    margin-bottom:40px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

    .hero-grid,
    .steps-grid,
    .features-grid,
    .stats-grid,
    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .hero-title{
        font-size:52px;
    }

    .final-cta h2{
        font-size:44px;
    }

}

@media(max-width:768px){

    .hero{
        padding:20px 0 50px;
    }

    .hero-title{
        font-size:42px;
    }

    .hero-subtext{
        font-size:18px;
    }

    .hero-card{
        padding:28px;
    }

    .hero-iq-circle{
        width:190px;
        height:190px;
    }

    .hero-iq-circle::before{
        width:145px;
        height:145px;
    }

    .hero-iq-number{
        font-size:56px;
    }

    .pricing-card,
    .contact-box{
        padding:30px 22px;
    }

    .price-tag{
        font-size:58px;
    }

}