/* Services section — matches nav dropdown items */
.component--services-home {
  background: #fff;
  color: #111;
  padding: 6vw 0 7vw;
}

.services-home {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.4fr;
  gap: 4vw 5vw;
  align-items: start;
}

.services-home__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}

.services-home__title {
  margin: 0 0 24px;
  font-family: var(--font-primary, Diagramm, sans-serif);
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.services-home__title .shape {
  display: inline-block;
  width: 1.2em;
  height: 0.38em;
  margin-right: 0.15em;
  margin-bottom: 0.1em;
  border: 0;
  border-radius: 999px;
  background: #111;
  vertical-align: middle;
}

.services-home__lead {
  margin: 0;
  max-width: 34ch;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.72;
}

.services-home__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.services-home__item {
  display: grid;
  grid-template-columns: 56px 1fr 44px;
  gap: 16px;
  align-items: center;
  padding: 22px 8px 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.services-home__metric {
  margin-top: 8px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  opacity: 0.9 !important;
  color: #111;
}

.services-home__item:hover {
  background: rgba(0, 0, 0, 0.03);
  padding-left: 10px;
}

.services-home__num {
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.4;
}

.services-home__body h3 {
  margin: 0 0 6px;
  font-family: var(--font-primary, Diagramm, sans-serif);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.services-home__body p {
  margin: 0;
  max-width: 48ch;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 15px;
  line-height: 1.45;
  opacity: 0.68;
}

.services-home__arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.services-home__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #111;
  border-top: 1.5px solid #111;
  transform: translate(-60%, -50%) rotate(45deg);
}

.services-home__item:hover .services-home__arrow {
  background: #111;
  border-color: #111;
  transform: translateX(4px);
}

.services-home__item:hover .services-home__arrow::before {
  border-color: #fff;
}

@media (max-width: 900px) {
  .component--services-home {
    padding: 16vw 0 18vw;
  }

  .services-home {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .services-home__item {
    grid-template-columns: 40px 1fr 36px;
    gap: 12px;
    padding: 20px 0;
  }

  .services-home__body p {
    max-width: 100%;
  }
}
