/* style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#f5f8ff;
  color:#222;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* Header */

.site-header{
  background:#fff;
  border-bottom:1px solid #ececec;
  padding:18px 0;
}

.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  height:38px;
}

.trust-bar{
  background:#6001d2;
  color:#fff;
  text-align:center;
  padding:12px;
  font-size:14px;
  font-weight:600;
}

/* Hero */

.hero{
  padding:70px 0;
  background:linear-gradient(to right,#ffffff,#f4ecff);
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:40px;
}

.top-badge{
  display:inline-block;
  background:#efe5ff;
  color:#6001d2;
  padding:8px 14px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  margin-bottom:20px;
}

.hero-text h1{
  font-size:52px;
  line-height:1.1;
  margin-bottom:20px;
  color:#111;
}

.hero-text p{
  font-size:19px;
  color:#444;
  margin-bottom:24px;
}

.alert-box{
  background:#fff7e6;
  border-left:4px solid #ffb300;
  padding:18px;
  border-radius:8px;
  margin-bottom:28px;
  color:#444;
}

.cta-btn{
  display:inline-block;
  background:#6001d2;
  color:#fff;
  text-decoration:none;
  padding:16px 34px;
  border-radius:40px;
  font-size:16px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(96,1,210,.25);
  transition:.3s;
}

.cta-btn:hover{
  transform:translateY(-2px);
}

.hero-image img{
  width:100%;
}

/* Steps */

.steps{
  padding:80px 0;
}

.steps h2{
  text-align:center;
  font-size:38px;
  margin-bottom:10px;
}

.subtitle{
  text-align:center;
  color:#666;
  margin-bottom:50px;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.step-card{
  background:#fff;
  padding:35px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  transition:.3s;
}

.step-card:hover{
  transform:translateY(-5px);
}

.active-card{
  border:2px solid #6001d2;
}

.step-number{
  width:42px;
  height:42px;
  background:#6001d2;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  margin-bottom:18px;
}

.step-card h3{
  margin-bottom:12px;
  font-size:22px;
}

.step-card p{
  color:#555;
  margin-bottom:18px;
}

.small-btn{
  display:inline-block;
  background:#6001d2;
  color:#fff;
  text-decoration:none;
  padding:12px 20px;
  border-radius:30px;
  font-size:14px;
  font-weight:600;
}

/* FAQ */

.faq{
  background:#fff;
  padding:80px 0;
}

.faq h2{
  text-align:center;
  font-size:38px;
  margin-bottom:45px;
}

.faq-box{
  background:#f8f8ff;
  border-radius:16px;
  padding:28px;
  margin-bottom:22px;
}

.faq-box h3{
  margin-bottom:10px;
  color:#6001d2;
}

/* Footer */

.site-footer{
  background:#111827;
  color:#fff;
  text-align:center;
  padding:26px 0;
  font-size:14px;
}

/* Responsive */

@media(max-width:768px){

  .hero-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-text h1{
    font-size:38px;
  }

  .hero-text p{
    font-size:17px;
  }

  .cta-btn{
    width:100%;
  }

  .steps h2,
  .faq h2{
    font-size:30px;
  }

}