:root {
  --bg1: #070a12;
  --bg2: #0f1630;
  --card: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f7ff;
  --muted: rgba(245, 247, 255, 0.72);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #7c3aed33 0%, transparent 28%),
    radial-gradient(circle at top right, #06b6d433 0%, transparent 24%),
    radial-gradient(circle at bottom center, #ec489933 0%, transparent 30%),
    linear-gradient(135deg, var(--bg1), var(--bg2));
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  position: relative;
}

.service-card {
  width: min(92vw, 720px);
  padding: 34px;
  border-radius: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  text-align: center;
  position: relative;
  z-index: 2;
}

.service-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 28px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}

.service-card h2,
.service-card h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-card p {
  max-width: 52ch;
  margin: 16px auto 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
}

.tags {
  margin: 20px 0 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary,
.btn-secondary {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 12px auto 0;
  padding: 16px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.btn-primary {
  color: #0b1020;
  background: linear-gradient(135deg, #ffffff, #dbeafe);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.12);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-primary.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.5;
  animation: drift 12s ease-in-out infinite;
}

.blob1 {
  width: 260px;
  height: 260px;
  background: #7c3aed;
  top: 10%;
  left: 10%;
}

.blob2 {
  width: 220px;
  height: 220px;
  background: #06b6d4;
  right: 8%;
  bottom: 12%;
  animation-delay: -4s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(0, -18px) scale(1.05);
  }
}
