/* diagonal clip for hero split */
.hero-panel {
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

/* hatched overlay for CTA */
.hatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 12px);
  pointer-events: none;
}

/* left-border eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  border-left: 3px solid #e60022;
  background: rgba(230, 0, 34, 0.06);
  color: #e60022;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.38rem 0.85rem 0.38rem 0.75rem;
  border-radius: 0.125rem;
}

/* ruled service grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(26, 31, 46, 0.1);
  border-radius: 0.25rem;
  overflow: hidden;
  gap: 1px;
  background: rgba(26, 31, 46, 0.1);
}

.svc-cell {
  background: #fff;
  padding: 2rem 1.8rem;
  transition: background 0.18s;
}

.svc-cell:hover {
  background: #f8f9fa;
}

.svc-cell:hover .svc-num {
  color: #e60022;
}

@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-panel {
    clip-path: none;
  }
}
@media (max-width: 560px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=main.css.map */