* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111827;
  background: #f9fafb;
  line-height: 1.6;
}

a {
  color: inherit;
}

.hero {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: white;
  padding: 24px;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 20px;
}

.nav-call {
  background: white;
  color: #111827;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.hero-content {
  max-width: 900px;
  margin: 90px auto 80px;
  text-align: center;
}

.eyebrow {
  color: #fbbf24;
  font-weight: 700;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1;
  margin: 0 0 24px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 16px;
}

h3 {
  margin-bottom: 8px;
}

.subtext {
  font-size: 20px;
  max-width: 760px;
  margin: 0 auto 32px;
  color: #e5e7eb;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
}

.primary {
  background: #fbbf24;
  color: #111827;
}

.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.small-note {
  margin-top: 18px;
  color: #d1d5db;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 24px;
}

.problem {
  text-align: center;
  max-width: 850px;
}

.problem p {
  font-size: 19px;
  color: #4b5563;
}

.cards h2,
.process h2 {
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card p,
.steps p,
.form-copy p {
  color: #4b5563;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.steps div {
  background: #111827;
  color: white;
  border-radius: 16px;
  padding: 26px;
}

.steps span {
  display: inline-flex;
  height: 36px;
  width: 36px;
  align-items: center;
  justify-content: center;
  background: #fbbf24;
  color: #111827;
  border-radius: 50%;
  font-weight: 900;
}

.steps p {
  color: #d1d5db;
}

.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.lead-form {
  background: white;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 16px;
}

input {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 16px;
}

button {
  width: 100%;
  background: #111827;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

button:hover {
  background: #374151;
}

.form-message {
  margin-top: 14px;
  font-weight: 700;
}

.final-cta {
  text-align: center;
  background: #111827;
  color: white;
  max-width: none;
}

.final-cta p {
  color: #d1d5db;
}

.center {
  justify-content: center;
}

.footer {
  text-align: center;
  padding: 24px;
  color: #6b7280;
}

@media (max-width: 800px) {
  .card-grid,
  .steps,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin: 70px auto 60px;
  }

  .nav {
    gap: 12px;
  }
}