.service-page {
  --service-accent: #22c55e;
  --service-accent-soft: rgba(34, 197, 94, .14);
  background: #09090b;
}

.service-page.climate-page {
  --service-accent: #38bdf8;
  --service-accent-soft: rgba(56, 189, 248, .14);
}

.service-page.network-page {
  --service-accent: #22d3ee;
  --service-accent-soft: rgba(34, 211, 238, .14);
}

.service-split-hero {
  position: relative;
  min-height: calc(100svh - 5rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, var(--service-accent-soft), transparent 30rem),
    linear-gradient(135deg, #111316, #09090b 62%);
}

.service-split-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  background: linear-gradient(0deg, #09090b, transparent);
  pointer-events: none;
}

.service-split-inner {
  position: relative;
  z-index: 1;
  width: min(80rem, 100%);
  margin: 0 auto;
  padding: 5rem 1rem;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.service-split-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 5.8vw, 5rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.service-split-copy > p {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: #d4d4d8;
  font-size: 1.125rem;
  line-height: 1.75;
}

.service-split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.service-split-actions a {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 1px solid color-mix(in srgb, var(--service-accent) 65%, transparent);
  color: #fff;
  font-weight: 800;
}

.service-split-actions a:first-child {
  border-color: var(--service-accent);
  background: var(--service-accent);
  color: #07100b;
}

.service-split-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--service-accent-soft);
}

.service-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: transparent;
}

.service-visual::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 14% 8%;
  background: var(--service-accent-soft);
  filter: blur(60px);
}

.service-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, .22));
}

.service-feature-visual {
  margin-top: 3rem;
  overflow: hidden;
  background: transparent;
}

.service-feature-visual img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .service-split-hero { min-height: auto; }
  .service-split-inner {
    grid-template-columns: 1fr;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  .service-visual { order: -1; }
  .service-visual img { max-height: 46svh; margin: 0 auto; }
}

@media (max-width: 640px) {
  .service-split-inner { gap: 2rem; }
  .service-split-copy h1 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
  .service-split-actions { flex-direction: column; }
  .service-split-actions a { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .service-split-actions a { transition: none; }
}
