/* ── SERVICES PAGE ── */

/* Overview grid */
.services-overview { background: var(--light); }
.svc-overview-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.svc-card:hover {
  border-color: var(--green-line); box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.svc-card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.5rem;
}
.svc-card h3 { font-size: 0.95rem; }
.svc-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.svc-card-link {
  font-family: 'Syne', sans-serif; font-size: 0.72rem;
  font-weight: 700; color: var(--green); margin-top: 0.25rem;
}

/* Detail blocks */
.svc-details { background: var(--white); }
.svc-block {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 3rem; padding: 4rem 0; align-items: start;
}
.svc-block-head {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem; padding-top: 0.25rem;
}
.svc-block-icon-lg {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.svc-block-label {
  font-family: 'Syne', sans-serif; font-size: 0.7rem;
  font-weight: 800; color: var(--text-muted); letter-spacing: 0.08em;
}
.svc-block-content h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.svc-block-content p { color: var(--text-muted); line-height: 1.85; font-size: 0.97rem; margin-bottom: 1rem; max-width: 620px; }
.svc-includes { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.svc-includes li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.9rem; color: var(--text); }
.svc-includes li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.divider { margin: 0; }

/* CTA */
.svc-cta-section { background: var(--dark); padding: 5rem 0; }
.svc-cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.svc-cta-inner h2 { color: var(--white); margin-bottom: 0.75rem; }
.svc-cta-inner p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 2rem; }

@media (max-width: 1024px) { .svc-overview-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) {
  .svc-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-block { grid-template-columns: 1fr; gap: 1rem; }
  .svc-block-head { flex-direction: row; align-items: center; }
}
@media (max-width: 460px) { .svc-overview-grid { grid-template-columns: 1fr; } }
