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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #111827;
  background: #ffffff;
}

/* GENERAL LAYOUT */
section {
  padding: 60px 5%;
}

.problem,
.solution,
.steps,
.pricing {
  max-width: 900px;
  margin: 0 auto;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 5%;
  background: #eef2ff;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #111827;
}

.hero-image {
  width: 380px;
  height: 260px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, #a5b4fc, #4f46e5);
}

/* CTA BUTTON */
.cta {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 999px;
  background: #4f46e5;
  color: #ffffff;
  font-weight: 600;
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.4);
  opacity: 0.96;
}

.cta-white {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  border-radius: 999px;
  background: #ffffff;
  color: #4f46e5;
  font-weight: 600;
  border: none;
  text-decoration: none;
  margin-top: 24px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.35);
}

/* SECTIONS */
.problem h2,
.solution h2,
.steps h2,
.pricing h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.problem ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.problem li {
  font-size: 18px;
  margin-bottom: 14px;
  line-height: 1.6;
  color: #1f2937;
}

.solution p,
.pricing p {
  font-size: 16px;
  color: #374151;
}

/* STEPS */
.step-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 200px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

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

/* CTA BANNER */
.cta-banner {
  padding: 60px 5%;
  background: #111827;
  color: #ffffff;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-form {
  width: 100%;
  max-width: 100%;
  display: grid;
  gap: 16px;
  justify-content: stretch;
}

.cta-form .cta-white {
  display: inline-block;
  margin: 0;
  padding: 12px 32px;
  font-size: 15px;
  border-radius: 999px;
  align-self: flex-start;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row label {
  font-size: 14px;
  margin-bottom: 4px;
  color: #e5e7eb;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #4b5563;
  background: #111827;
  color: #f9fafb;
  font-size: 14px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px 0;
  background: #f9fafb;
  font-size: 14px;
  color: #6b7280;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 6%;
  }

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

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

  .hero-image {
    width: 100%;
    height: 200px;
    margin-top: 20px;
  }

  section {
    padding: 40px 6%;
  }

  /* -------------- */
  /* MOBILE STEPS   */
  /* -------------- */
  .step-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .step {
    width: 90%;
    max-width: 360px;
    padding: 16px;
    margin-bottom: 12px;
  }

  .step h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .step p {
    font-size: 14px;
    line-height: 1.45;
  }

  .cta-banner {
    padding: 40px 6%;
  }
}