.services-hero {
  min-height: 100vh !important;
  height: 100vh;
  padding: var(--nav-h) 24px 0 !important;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services-hero__inner,
.services-hero .page-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.services-hero .page-hero__title {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.services-hero .page-hero__sub {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

#servicesParticles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  padding-bottom: 72px;
  background: #000;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero__parallax {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(0, 196, 255, .09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 75% 40%, rgba(106, 92, 255, .07) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px) 0 0/60px 60px,
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px) 0 0/60px 60px;
  will-change: transform;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.page-hero__label {
  margin-bottom: 20px;
}

.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.page-hero__title .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero__sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-style: italic;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.services-list {
  background: #000;
  padding: 80px 0;
}

.service-block {
  border-bottom: 1px solid #1a1a1a;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-block:first-child {
  padding-top: 0;
}

.service-block:last-child {
  border-bottom: none;
}

.service-block:nth-child(even) {
  direction: rtl;
}

.service-block:nth-child(even) > * {
  direction: ltr;
}

.service-block__num {
  font-family: var(--font-head);
  font-size: 80px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 24px;
  opacity: .22;
}

.service-block__title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.2;
}

.service-block__desc {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-list li::before {
  content: '✓';
  font-size: 11px;
  font-weight: 700;
  color: #000;
  background: var(--grad-btn);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-visual {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #0a0a0a;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.service-visual::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .3;
}

.service-visual--web::before {
  background: #00C4FF;
}

.service-visual--seo::before {
  background: #6A5CFF;
}

.service-visual--gbp::before {
  background: #00C4FF;
}

.service-visual--ecom::before {
  background: #FF00B4;
}

.service-visual--meta::before {
  background: #00C4FF;
}

.service-visual--gbp {
  background:
    radial-gradient(circle at top left, rgba(0, 212, 255, 0.14), transparent 45%),
    radial-gradient(circle at bottom right, rgba(124, 60, 255, 0.16), transparent 45%),
    #0a0a0a;
}

.service-visual__icon {
  font-size: 52px;
  margin-bottom: 24px;
  display: block;
}

.service-visual__tagline {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.service-visual__note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media(max-width:900px) {
  .service-block {
    grid-template-columns: 1fr;
    direction: ltr !important;
    gap: 40px;
    padding: 56px 0;
  }
}