/* LocaTroc Patch 041 - page Services */

.lt-services-page {
  max-width: 1320px;
  margin: 0 auto;
}

.lt-services-hero {
  background:
    radial-gradient(circle at 12% 15%, rgba(22, 163, 74, .14), transparent 32%),
    radial-gradient(circle at 88% 20%, rgba(13, 110, 253, .12), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #eef8f2 100%);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 30px;
  padding: clamp(26px, 5vw, 54px);
  box-shadow: 0 20px 55px rgba(15, 23, 42, .08);
}

.lt-services-eyebrow {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(22, 163, 74, .10);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, .18);
  font-weight: 900;
  margin-bottom: 16px;
}

.lt-services-hero h1 {
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 950;
  letter-spacing: -.05em;
  line-height: 1.02;
  margin: 0 0 18px;
}

.lt-services-hero p {
  color: #64748b;
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 720px;
  margin: 0;
}

.lt-services-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.lt-services-card-highlight {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .10);
}

.lt-services-card-icon {
  font-size: 3rem;
  margin-bottom: 14px;
}

.lt-services-card-highlight h2 {
  color: #0f172a;
  font-weight: 900;
  margin-bottom: 10px;
}

.lt-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.lt-service-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .07);
  transition: transform .18s ease, box-shadow .18s ease;
}

.lt-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, .12);
}

.lt-service-icon {
  font-size: 2.35rem;
  margin-bottom: 12px;
}

.lt-service-card h2 {
  color: #0f172a;
  font-size: 1.18rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.lt-service-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 14px;
}

.lt-service-card a {
  color: #16a34a;
  font-weight: 900;
  text-decoration: none;
}

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

@media (max-width: 575px) {
  .lt-services-grid {
    grid-template-columns: 1fr;
  }

  .lt-services-hero {
    border-radius: 22px;
  }
}
