* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: #eef0f6;
  background:
    radial-gradient(80% 90% at 50% -12%, rgba(137, 113, 176, 0.18) 0%, rgba(9, 11, 16, 0) 55%),
    linear-gradient(180deg, #06070b 0%, #0a0b11 40%, #0f1017 100%);
}

.service-page {
  min-height: 100vh;
  padding: 28px 16px 40px;
}

.service-shell {
  max-width: 980px;
  margin: 0 auto;
}

.service-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.service-topline a {
  color: rgba(223, 216, 241, 0.9);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-badge {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201, 186, 230, 0.9);
}

.service-hero {
  border-radius: 20px;
  border: 1px solid rgba(174, 148, 215, 0.26);
  padding: 24px 20px;
  background:
    radial-gradient(140% 120% at 8% 0%, rgba(130, 103, 181, 0.22) 0%, rgba(130, 103, 181, 0) 56%),
    linear-gradient(160deg, rgba(18, 16, 25, 0.96) 0%, rgba(10, 10, 15, 0.94) 100%);
}

h1 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4.4vw, 54px);
  letter-spacing: 0.05em;
  line-height: 1.03;
}

.lead {
  margin: 0;
  color: rgba(225, 227, 235, 0.86);
  line-height: 1.55;
  font-size: clamp(16px, 1.45vw, 20px);
}

.service-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(174, 148, 215, 0.2);
  background: rgba(12, 12, 18, 0.78);
}

h2 {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(223, 225, 231, 0.86);
}

li + li {
  margin-top: 7px;
}

.service-card li strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(239, 239, 248, 0.98);
}

.service-card li p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(205, 208, 217, 0.84);
}

.service-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #f4f2fb;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid rgba(184, 160, 222, 0.42);
  background:
    radial-gradient(120% 180% at 12% 0%, rgba(164, 137, 204, 0.35) 0%, rgba(164, 137, 204, 0) 58%),
    linear-gradient(165deg, rgba(36, 30, 49, 0.94) 0%, rgba(18, 15, 26, 0.92) 100%);
}

.service-note {
  margin-top: 14px;
  color: rgba(200, 202, 210, 0.72);
  font-size: 14px;
}

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