.service-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(13, 91, 166, 0.58), transparent 32%),
    linear-gradient(135deg, #052d5c 0%, #063f78 58%, #05284e 100%);
}

.services-grid,
.delivery-section,
.service-image-row,
.hr-plan {
  padding: 88px clamp(20px, 7vw, 92px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background:
    linear-gradient(168deg, transparent 0 42%, rgba(246, 248, 251, 0.95) 42% 100%),
    var(--white);
}

.services-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(8, 44, 92, 0.06);
}

.services-grid article:nth-child(2),
.services-grid article:nth-child(6) {
  transform: translateY(-18px);
  box-shadow: 0 30px 70px rgba(8, 44, 92, 0.13);
}

.services-grid article:nth-child(2n) {
  background: var(--bg);
}

.services-grid article:nth-child(2n) span {
  background: var(--yellow-soft);
  border-color: rgba(247, 199, 47, 0.6);
}

.services-grid h2 {
  font-size: 1.15rem;
  line-height: 1.12;
}

.services-grid p,
.delivery-section p,
.hr-plan p {
  color: var(--muted);
}

.services-grid span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid rgba(10, 79, 159, 0.16);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.services-grid strong {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 7px 12px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.delivery-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  background: var(--bg);
}

.delivery-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.delivery-points article {
  min-height: 210px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 0;
  border-top: 3px solid var(--blue);
  box-shadow: 0 18px 42px rgba(8, 44, 92, 0.06);
}

.service-image-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 42px);
  background: var(--white);
}

.service-image-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(8, 44, 92, 0.14);
}

.service-image-row img:first-child {
  transform: rotate(-2deg);
}

.service-image-row img:last-child {
  transform: rotate(2deg);
}

.hr-plan {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  background:
    radial-gradient(circle at 12% 78%, rgba(247, 199, 47, 0.16), transparent 24%),
    #0b1f3a;
  color: var(--white);
}

.hr-plan .section-label {
  color: var(--yellow);
}

.hr-plan p {
  color: rgba(255, 255, 255, 0.76);
}

.roles-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.roles-list span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  border-left: 0;
  border-top: 3px solid var(--yellow);
}

@media (max-width: 1000px) {
  .services-grid,
  .delivery-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .services-grid,
  .delivery-section,
  .delivery-points,
  .service-image-row,
  .hr-plan,
  .roles-list {
    grid-template-columns: 1fr;
  }

  .services-grid article:nth-child(2),
  .services-grid article:nth-child(6),
  .service-image-row img:first-child,
  .service-image-row img:last-child {
    transform: none;
  }
}
