/* ==========================================================================
   SERVICES.CSS — page services
   ========================================================================== */

.services-overview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.services-overview__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  height: 180px;
}

.services-overview__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-overview__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-overview__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-overview__num {
  font-family: var(--font-heading);
  font-size: 13px;
  opacity: 0.65;
}

.services-overview__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  align-items: center;
}

.service-detail__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.service-detail__eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.service-detail__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: var(--space-sm);
}

.service-detail__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.service-detail__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-md);
}

.service-detail__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(11, 11, 14, 0.8);
}

.service-detail__list-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.service-detail__item--reverse .service-detail__image { order: 2; }
.service-detail__item--reverse .service-detail__text { order: 1; }

.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.process__step {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.process__num {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.process__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.process__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}
