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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(#ffffff 0, #ffffff 60%, #eef4ff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #1f2933;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.artwork {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-illustration {
  width: 100%;
  height: 100%;
  display: block;
}

.wrapper {
  width: 100%;
  max-width: 960px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.card {
  background: transparent;
  border-radius: 0;
  padding: 32px 20px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.85);
  color: #111827;
  border: 1px solid rgba(255, 255, 255, 0.28);
  margin-bottom: 18px;
}

h1 {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #111827;
}

.lead {
  font-size: 15px;
  line-height: 1.6;
  color: #111827;
  margin-bottom: 20px;
}

.info p {
  font-size: 14px;
  color: #111827;
  margin-bottom: 10px;
}

.phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(120deg, #22d3ee, #60a5fa);
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 14px 30px rgba(34, 211, 238, 0.35);
}

.phone:hover {
  background: linear-gradient(120deg, #06b6d4, #3b82f6);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(59, 130, 246, 0.38);
}

.footer {
  margin-top: 24px;
  font-size: 13px;
  color: #111827;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 480px) {
  .card {
    padding: 24px 14px;
    border-radius: 0;
  }

  h1 {
    font-size: 24px;
  }

  .lead {
    font-size: 14px;
  }

  .phone {
    width: 100%;
  }
}
