/* pages/home.css */
.services-teaser { background: var(--bg); }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none;
  margin-top: var(--sp-2); transition: gap var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.service-card-link:hover { gap: 10px; color: var(--navy-light); }
.process-section { background: var(--bg-white); }
.why-section { background: var(--bg); }
.testimonials-section { background: var(--bg-white); }
.placeholder-testimonial {
  padding: var(--sp-7); background: var(--bg); border: 1px dashed var(--border);
  border-radius: var(--r-md); text-align: center; color: var(--text-3);
  font-size: var(--text-sm); font-style: italic; line-height: 1.6;
}
