.services-hero {
  padding: var(--space-32) 0 var(--space-24);
  background: radial-gradient(circle at top left, var(--color-primary-soft), transparent 55%),
              radial-gradient(circle at bottom right, var(--color-accent-blue-soft), transparent 55%);
}

.services-hero__grid {
  display: grid;
  gap: var(--space-24);
  align-items: center;
}

@media (min-width: 768px) {
  .services-hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.services-hero__content {
  max-width: 34rem;
}

.services-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.75rem;
  border-radius: var(--radius-pill);
  background-color: var(--color-accent-green-soft);
  color: var(--color-accent-green);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
}

.services-hero__text {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-16);
}

.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.services-hero__media {
  max-width: 30rem;
  margin-inline: auto;
}

.services-hero__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.services-hero__figure img {
  width: 100%;
  height: auto;
}

.services-hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-8);
}

.services-meta-item {
  padding: var(--space-10);
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-xs);
}

.services-meta-label {
  display: block;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.services-meta-value {
  font-weight: 700;
}

.services-breadcrumb {
  padding: var(--space-8) 0;
}

.services-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.services-breadcrumb__list li + li::before {
  content: "/";
  margin: 0 var(--space-4);
  color: var(--color-gray-300);
}

.services-overview {
  padding: var(--space-24) 0 var(--space-32);
}

.services-section-header {
  max-width: 40rem;
  margin: 0 auto var(--space-24);
  text-align: center;
}

.services-section-subtitle {
  color: var(--color-text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
  gap: var(--space-16);
}

.service-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-16);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.service-card__header h3 {
  margin-bottom: 0;
  font-size: var(--font-size-xl);
}

.service-card__figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-8);
}

.service-card__figure img {
  width: 100%;
  height: auto;
}

.service-card__bullets {
  margin: 0 0 var(--space-12);
  padding-left: var(--space-16);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.service-card__bullets li + li {
  margin-top: var(--space-4);
}

.service-card__footer {
  margin-top: auto;
}

.service-card__footer .btn-ghost {
  padding-inline: 0;
}

.services-cta {
  background-color: var(--color-bg-alt);
  padding: var(--space-24) 0;
}

.services-cta__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .services-cta__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.services-cta__content {
  max-width: 34rem;
}

.services-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.services-meta-links {
  padding: var(--space-16) 0 var(--space-24);
}

.services-meta-links__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  justify-content: center;
  font-size: var(--font-size-sm);
}

.services-meta-link {
  color: var(--color-text-muted);
  font-weight: 600;
}

.services-meta-link:hover {
  color: var(--color-primary-strong);
}

@media (max-width: 599px) {
  .services-hero {
    padding-top: var(--space-24);
  }

  .service-card {
    padding: var(--space-12);
  }
}
