/* ===========================
   LEISTUNGEN HERO
=========================== */

.leistungen-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  padding: 160px 0 100px;
}

.leistungen-hero-bg {
  position: absolute;
  left: -200px;
  top: 50px;
  width: 600px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.leistungen-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.leistungen-hero h1 {
  font-size: var(--size-h1);
}

.leistungen-hero p {
  max-width: 700px;
}

.leistungen-hero-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   LEISTUNGEN SYSTEM
=========================== */

.leistungen-system {
  background: var(--color-bg-light);
  padding: 100px 0;
}

.leistungen-system .section-header {
  text-align: center;
  margin-bottom: 0;
}

.leistungen-system .section-header p {
  max-width: 700px;
  margin: 0 auto;
}

.leistungen-system-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.leistungen-system-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.leistungen-system-step h3 {
  font-size: var(--size-h6);
}

.system-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 227, 165, 0.81);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===========================
   LEISTUNGEN BEREICHE
=========================== */

.leistungen-bereiche {
  background: var(--color-white);
  padding: 100px 0;
}

.leistungen-bereiche .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.leistungen-bereiche .section-header p {
  max-width: 700px;
  margin: 0 auto;
}

.leistungen-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-grey-border);
  padding: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.leistungen-card-img img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: 10px;
}

.leistungen-card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.leistungen-card-content h3 {
  font-size: var(--size-h3);
}

.leistungen-card-content .btn-gold-small{
  width: fit-content;
}

.leistungen-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.leistungen-card-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-grey-text);
  font-size: var(--size-p);
}

.leistungen-card-list svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

/* ===========================
   LEISTUNGEN FINDER
=========================== */

.leistungen-finder {
  background: var(--color-bg-light);
  padding: 100px 0;
}

.leistungen-finder .section-header {
  text-align: center;
  margin-bottom: 0;
}

.leistungen-finder .section-header p {
  max-width: 700px;
  margin: 0 auto;
}

.leistungen-finder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.finder-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-grey-border);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.finder-card h3 {
  font-size: var(--size-h6);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) {
  .leistungen-system-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .leistungen-system-step {
    max-width: calc(33% - 20px);
  }

  .leistungen-card {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .leistungen-card-img img {
    max-width: 500px;
    margin: 0 auto;
  }

  .leistungen-finder-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .leistungen-hero {
    padding: 120px 0 80px;
  }

  .leistungen-system-step {
    max-width: calc(50% - 20px);
  }

  .leistungen-finder-grid {
    grid-template-columns: 1fr;
  }

  .leistungen-system-step h3 {
    font-size: 25px;
  }

  .finder-card h3 {
    font-size: 25px;
  }
}
