/* ── Services Listing Hero ── */
.hero--services {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1632759145354-b1796a20e217?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: calc(var(--navbar-height) + var(--space-3xl)) 0 var(--space-2xl);
}
.hero--services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.78) 0%, rgba(var(--color-primary-dark-rgb), 0.65) 60%, rgba(var(--color-primary-rgb), 0.52) 100%);
  z-index: 1;
}
.hero--services::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}
.hero--services .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.hero--services h1 {
  color: #fff;
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
}
.hero--services .hero-answer {
  color: rgba(255, 255, 255, 0.85);
  max-width: 55ch;
  margin: 0 auto var(--space-xl);
  font-size: var(--font-size-lg);
  line-height: 1.65;
}
.hero--services .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  background: rgba(var(--color-accent-rgb), 0.12);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
}
.hero--services .breadcrumb {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
}
.hero--services .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero--services .breadcrumb a:hover { color: var(--color-accent); }
.hero--services .breadcrumb-sep { margin: 0 var(--space-sm); }
.hero--services .hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ── Services Grid Section ── */
.services-listing { background: var(--color-bg-alt); }
.services-listing .section-title { position: relative; z-index: 1; }
.services-listing .services-grid { position: relative; z-index: 1; }

/* ── Intro paragraph ── */
.services-intro {
  max-width: 65ch;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  font-size: var(--font-size-lg);
  line-height: 1.65;
  color: var(--color-text-light);
}

/* ── SVG Dividers ── */
.divider-services svg { fill: var(--color-bg-alt); }

/* ── CTA Banner ── */
.cta-services {
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(var(--color-accent-rgb), 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-services .container { position: relative; z-index: 1; }
.cta-services h2 { color: #fff; margin-bottom: var(--space-md); }
.cta-services p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 50ch;
  margin: 0 auto var(--space-xl);
  font-size: var(--font-size-lg);
  line-height: 1.6;
}

/* ── Trust Row ── */
.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}
.trust-item i, .trust-item svg { width: 20px; height: 20px; color: var(--color-accent); }

@media (max-width: 767px) {
  .hero--services .hero-actions { flex-direction: column; }
  .hero--services .hero-actions .btn-primary,
  .hero--services .hero-actions .btn-secondary--white { width: 100%; text-align: center; }
}
