body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.hero {
  position: relative;
  background: white;
  border-bottom: 1px solid #e2e8f0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fef3c7, white, #d1fae5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fef3c7;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #fde68a;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.logo img {
  width: 100%;
}

h1 {
  font-size: 42px;
  margin-top: 20px;
}

.subtitle {
  margin-top: 15px;
  color: #475569;
}

.buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.primary {
  background: black;
  color: white;
}

.secondary {
  border: 1px solid #cbd5f5;
  color: #334155;
}

.section {
  padding-top: 20px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #fde68a;
}

.steps {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.step {
  background: #fffbeb;
  padding: 15px;
  border-radius: 15px;
}

.step-small {
  font-size: 12px;
  color: gray;
}

.step-title {
  font-weight: bold;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service {
  background: white;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #fde68a;
  transition: 0.2s;
}

.service:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 30px;
  background: #fef3c7;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.cta {
  background: white;
  border-top: 1px solid #e2e8f0;
}

.cta-box {
  background: linear-gradient(to right, #064e3b, #065f46);
  color: white;
  padding: 30px;
  border-radius: 20px;
}

.white {
  background: white;
  color: black;
}

.outline {
  border: 1px solid white;
  color: white;
}