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

body{
    font-family:'Segoe UI', sans-serif;
    background:#f9fafb;
}

/* CONTAINER */
.container{
    max-width:1100px;
    margin:auto;
    padding:20px;
}

/* HERO */
.hero{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    background-size:cover;
    background-position:center;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:44px;
    font-weight:bold;
}

.hero p{
    margin-top:10px;
    font-size:18px;
}

/* BUTTON */
.cta{
    margin-top:25px;
}

.btn-primary,
.btn-wa{
    display:inline-block;
    padding:14px 22px;
    border-radius:12px;
    text-decoration:none;
    color:white;
    font-weight:600;
    margin:5px;
}

.btn-primary{
    background:#4f46e5;
}

.btn-wa{
    background:#16a34a;
}

/* TRUST */
.trust{
    background:#fff;
    text-align:center;
    padding:15px;
    font-size:14px;
}

/* FORM */
.form-section{
    padding:60px 20px;
}

.form-wrapper{
    display:flex;
    gap:30px;
    align-items:center;
}

.form-text{
    flex:1;
}

.form-text h2{
    font-size:30px;
}

.form-text ul{
    margin-top:15px;
}

.form-text li{
    margin-bottom:8px;
}

/* FORM BOX */
.form-box{
    flex:1;
    background:#fff;
    padding:25px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.form-box input{
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border-radius:10px;
    border:1px solid #ddd;
}

.form-box button{
    width:100%;
    padding:14px;
    border:none;
    background:#4f46e5;
    color:white;
    border-radius:10px;
    font-size:16px;
}

/* IMAGE */
.image-section img{
    width:100%;
    display:block;
}

/* CTA BOTTOM */
.cta-bottom{
    text-align:center;
    padding:40px;
}

/* STICKY WA */
.sticky-wa{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    padding:12px 18px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
}

/* MOBILE */
@media(max-width:768px){

.hero{
    height:70vh;
}

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

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

.form-wrapper{
    flex-direction:column;
}

.btn-primary,
.btn-wa{
    display:block;
    width:80%;
    margin:10px auto;
}

}