/* Interlocking-circle service pattern based on the supplied reference. */
.features {
  position: relative;
  padding: 16px 0;
  overflow: hidden;
  color: #26313a;
  border-top: 1px solid #d2d8dd;
  border-bottom: 1px solid #d2d8dd;
  background-color: #f1f2f3;
  background-image: url("../images/features-pattern.png");
  background-repeat: repeat;
  background-position: center top;
  background-size: 389px 125px;
}

.features::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(241, 242, 243, 0.38), transparent 16%, transparent 84%, rgba(241, 242, 243, 0.38));
}

.features::after {
  display: none;
}

.features .features-grid {
  position: relative;
  z-index: 1;
  gap: 12px;
}

.features .feature,
.features .feature:last-child {
  position: relative;
  min-height: 98px;
  padding: 18px 20px;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(188, 196, 203, 0.88);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(232, 236, 239, 0.9));
  box-shadow: 0 8px 24px rgba(42, 55, 66, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.features .feature::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, #9ba5ad, #d8dde1);
}

.features .feature:hover {
  z-index: 2;
  border-color: #aeb7be;
  box-shadow: 0 12px 28px rgba(42, 55, 66, 0.13), inset 0 1px 0 #fff;
  transform: translateY(-2px);
}

.features .fi {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: #35424c;
  border: 1px solid #c1c9cf;
  border-radius: 11px;
  background: linear-gradient(145deg, #f9fafb, #d9dee2);
  box-shadow: 0 6px 15px rgba(40, 52, 62, 0.1), inset 0 1px 0 #fff;
  font-size: 17px;
}

.features .feature strong {
  color: #222d35;
  font-size: 11px;
  letter-spacing: 0.035em;
}

.features .feature span {
  margin-top: 6px;
  color: #687680;
  font-size: 10px;
  line-height: 1.45;
}

.features .phone-number {
  color: inherit;
}

@media (max-width: 1050px) {
  .features {
    padding: 14px 0;
  }

  .features .feature,
  .features .feature:last-child {
    min-height: 88px;
  }
}

@media (max-width: 600px) {
  .features .features-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .features .feature,
  .features .feature:last-child {
    min-height: 78px;
    padding: 14px 16px;
  }

  .features .fi {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .features .feature {
    transition: none;
  }
}
