.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--hit-space-md);
  margin-top: var(--hit-space-lg);
}

/* Nur im 2-Spalten-Band: dritte Card sonst allein links stehend */
@media (min-width: 720px) and (max-width: 1019px) {
  .services-grid > .hit-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

.home-services__intro {
  max-width: 540px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  margin-top: var(--hit-space-lg);
}

.why-item {
  background: var(--hit-white);
  padding: var(--hit-space-md);
}

.why-item__number {
  font-family: var(--hit-font-display);
  font-size: 44px;
  font-weight: 300;
  color: rgba(224, 78, 10, 0.35);
  line-height: 1;
  margin-bottom: 10px;
}

.why-item__title {
  font-family: var(--hit-font-body);
  font-size: var(--hit-text-base);
  font-weight: 500;
  color: var(--hit-ink);
  margin-bottom: 8px;
}

.why-item__body {
  font-size: var(--hit-text-sm);
  font-weight: 300;
  color: var(--hit-slate);
  line-height: var(--hit-lh-loose);
}

.home-approach__intro {
  max-width: 580px;
  margin-bottom: var(--hit-space-md);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hit-space-2xl);
  align-items: center;
}

.home-about__eyebrow {
  color: var(--hit-ember-2);
}

.home-about__title {
  margin-top: 12px;
}

.about-split__text p {
  font-size: var(--hit-text-base);
  font-weight: 300;
  color: var(--hit-steel);
  line-height: var(--hit-lh-loose);
  margin-bottom: var(--hit-space-md);
}

.about-split__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.cta-banner {
  background: var(--hit-ember);
  color: var(--hit-white);
  padding: var(--hit-space-2xl) 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--hit-font-display);
  font-size: var(--hit-text-xl);
  font-weight: 300;
  color: var(--hit-white);
  margin-bottom: var(--hit-space-sm);
}

.cta-banner p {
  font-size: var(--hit-text-md);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--hit-space-md);
}

.home-cta__btn {
  background: rgba(255, 255, 255, 0.12);
  color: var(--hit-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.home-cta__btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--hit-white);
}

.home-cta__btn--solid {
  background: var(--hit-white);
  color: var(--hit-ember);
  border-color: var(--hit-white);
}

.home-cta__btn--solid:hover {
  background: var(--hit-parch);
  border-color: var(--hit-parch);
  color: var(--hit-ember);
}

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
  }
}
