* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: #153447;
  background:
    radial-gradient(circle at top right, rgba(80, 190, 220, 0.28), transparent 35%),
    linear-gradient(135deg, #eefaff 0%, #f8fcff 55%, #e8f7ff 100%);
}

.hero {
  min-height: 100vh;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.badge {
  margin-bottom: 24px;
  padding: 10px 18px;
  border: 1px solid rgba(21, 52, 71, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 96px);
  letter-spacing: -0.06em;
}

h2 {
  margin: 18px 0 0;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 600;
  color: #1b6f90;
}

p {
  max-width: 720px;
  margin: 28px auto 0;
  font-size: 20px;
  line-height: 1.6;
}

.services {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.services span {
  padding: 12px 16px;
  border-radius: 14px;
  background: white;
  box-shadow: 0 10px 30px rgba(21, 52, 71, 0.08);
  font-weight: 600;
}

footer {
  margin-top: 48px;
  font-size: 15px;
  opacity: 0.75;
}