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

a {
  color: inherit;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.hero {
  background: linear-gradient(135deg, #ff8a00, #ff4d8d);
  color: white;
  padding: 88px 0 72px;
}

.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.95;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  background: white;
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: #fff4f7;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 14px;
}

.section p {
  font-size: 17px;
  margin: 0 0 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.card {
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.checklist {
  margin: 20px 0 0;
  padding-left: 20px;
}

.checklist li {
  margin-bottom: 12px;
  font-size: 17px;
}

.contact-section {
  background: #111827;
  color: white;
}

.contact-section a {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 72px 0 60px;
  }

  .section {
    padding: 56px 0;
  }
}