/* ============================================
   LEGAL NEXUS — Services Page Premium v2.0
   ============================================ */

/* ===== HERO ===== */
.services-hero {
  padding: calc(var(--navbar-height) + var(--space-4xl)) 0 var(--space-3xl);
  background: linear-gradient(160deg,
    rgba(10, 10, 10, 0.96) 0%,
    rgba(17, 17, 17, 0.9) 50%,
    rgba(26, 26, 26, 0.85) 100%),
    url('../images/hero-home.png') center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, var(--clr-accent-glow) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

.services-hero h1 {
  font-size: var(--fs-display-sm);
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.services-hero p {
  font-size: var(--fs-body-lg);
  color: var(--clr-text-on-dark);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.services-grid .card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.services-grid .card__icon {
  margin: 0 auto var(--space-md);
}

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

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


/* ===== DETAILED SERVICE SECTIONS ===== */
.service-detail {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--clr-border);
}

.service-detail:last-child {
  border-bottom: none;
}

.case-section {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--clr-border);
}

.case-section:last-child {
  border-bottom: none;
}

.case-section__approach {
  font-family: var(--ff-heading);
  font-style: italic;
  color: var(--clr-accent);
  font-size: var(--fs-body-lg);
  margin-top: var(--space-sm);
}
