/* RESET */
* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  color: #222;
  background:#f7f7f7;
}

/* Utils */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HERO ================= */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  opacity: .95;
  margin-bottom: 25px;
}

/* Form */
.lead-form {
  display: flex;
  max-width: 450px;
  margin: 0 auto;
  gap: 10px;
}

.lead-form input {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  border: none;
  outline: none;
}

.lead-form button {
  background: #16a34a;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.hero-sub {
  margin-top: 15px;
  font-size: .95rem;
  opacity: .9;
}

/* ================= FEATURES ================= */
.features {
  padding: 70px 0;
  background:white;
}

.features h2, .how h2, .cta h2 {
  text-align:center;
  margin-bottom: 40px;
  font-size:2rem;
}

.features-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature {
  background: #f2f4ff;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}

/* ================= HOW ================= */
.how {
  padding: 60px 0;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.step {
  background: white;
  padding: 22px;
  width: 280px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #ddd;
}

.step-number {
  font-size: 1.8rem;
  font-weight:700;
  color:#3b82f6;
}

/* ================= CTA ================= */
.cta {
  padding: 70px 0;
  background: #1d4ed8;
  color:white;
  text-align: center;
}

.cta p {
  margin-bottom: 25px;
  opacity:.9;
}

/* ================= FOOTER ================= */
.footer {
  padding:25px 0;
  background:#111827;
  color:white;
}

.footer-content {
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:15px;
  align-items:center;
}

.footer-links a {
  color:#93c5fd;
  margin-left:15px;
  text-decoration:none;
  font-size:.9rem;
}

/* RESPONSIVE MOBILES */
@media (max-width:600px){
  .lead-form { flex-direction:column; }
  .lead-form button { width:100%; }
  .hero h1 { font-size:2rem; }
  .hero p { font-size:1rem; }
}
