.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:14px;
    font-weight:600;
    transition:var(--transition);
    cursor:pointer;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
}

.btn-outline{
    border:1px solid var(--border);
    background:#fff;
}

.btn:hover{
    transform:translateY(-2px);
}

.card{
    background:#fff;
    border-radius:var(--radius);
    padding:30px;
    box-shadow:var(--shadow);
}

.card-title{
    font-size:22px;
    margin-bottom:10px;
}

.card-text{
    color:var(--muted);
}

.input{
    width:100%;
    padding:14px;
    border-radius:14px;
    border:1px solid var(--border);
}

.section-heading{
    margin-bottom:50px;
}

.section-tag{
    color:var(--accent);
    font-weight:700;
    letter-spacing:1px;
}

.section-title{
    font-size:42px;
    margin-top:10px;
}

.hero-badge{
    display:inline-block;
    background:#fff;
    padding:10px 18px;
    border-radius:999px;
    margin-bottom:20px;
    box-shadow:var(--shadow);
}

.hero-buttons{
    display:flex;
    gap:16px;
    margin-top:30px;
}

.hero-image{
    border-radius:24px;
    box-shadow:var(--shadow);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.stat-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    text-align:center;
    box-shadow:var(--shadow);
}

.stat-card h3{
    font-size:42px;
}

.stat-card p{
    color:var(--muted);
}

.faq-wrapper{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.faq-item{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.cta-box{
    background:var(--primary);
    color:#fff;
    padding:80px;
    border-radius:32px;
    text-align:center;
}

@media(max-width:900px){

    .stats-grid{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .section-title{
        font-size:32px;
    }

    .cta-box{
        padding:40px;
    }
}