/* ─── SERVICES CTA ─── */
.services-cta {
  padding: 60px 0;
  background: var(--off-white);
  border-top: 1px solid rgba(10, 22, 40, 0.08);
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.services-intro {
  text-align: center;
  padding-bottom: 4rem;
}

.services-copy {
  font-size: 0.95rem;
  color: #6a7a90;
  margin-bottom: 1.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.services-process-title {
  margin-bottom: 0.5rem;
}

.services-cta .section-title {
  color: var(--navy);
  margin-bottom: 1rem;
}

/* ─── LEGAL PROCESS ─── */
.legal-process {
  padding: 80px 0;
  background: var(--white);
}

.process-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.07);
  transition: all var(--transition);
}

.process-card:hover {
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.14);
  transform: translateY(-5px);
}

.process-img {
  height: 200px;
  background: linear-gradient(135deg, #c8d8e8, #a0b8cc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7090a8;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.process-body {
  padding: 1.5rem;
}

.process-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.process-body p {
  font-size: 0.85rem;
  color: #6a7a90;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.learn-more {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.learn-more:hover {
  gap: 0.7rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .services-cta,
  .legal-process {
    padding: 60px 0;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .process-img {
    height: 150px;
  }
}
