.services-section {
  background: #f7f7f7;
  padding: 52px 0 72px;
}
.services-inner {
  width: min(100% - 40px, 1260px);
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.service-card {
  min-height: 252px;
  padding: 68px 56px 52px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  transition:
    transform 0.54s cubic-bezier(.2,.7,.2,1),
    box-shadow 0.54s ease,
    border-color 0.42s ease,
    background-color 0.42s ease;
}
.service-card:hover {
  transform: translateY(-11px) scale(1.018);
  box-shadow: 0 24px 48px rgba(34, 28, 16, 0.18);
  border-color: rgba(159, 116, 29, 0.5);
  background-color: rgba(255, 255, 255, 0.5);
  transition-duration: 0.28s;
}
.service-card.reveal-card {
  opacity: 0;
  transform: translateY(44px) scale(0.98);
  transition-delay: calc(var(--card-index, 0) * 180ms);
}
.service-card.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.service-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: #9f741d;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  margin: 0 0 12px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(30px, 1.5vw, 42px);
  line-height: 1.16;
  font-weight: 500;
  color: #4d4d4d;
}
.service-card p {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(20px, 0.75vw, 21px);
  line-height: 1.62;
  font-weight: 400;
  color: #757575;
}
