/* ==========================================================================
   twenty seconds – Einzelleistungen
   ========================================================================== */

/* ── Hero ── */
.leistungen-hero {
  padding-top: calc(72px + var(--space-4xl));
  padding-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.leistungen-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(109, 58, 199, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 160, 222, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.leistungen-hero-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.leistungen-hero h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: var(--space-lg);
}


/* ── Leistungen-Liste ── */
.leistungen-list {
  background: var(--color-surface);
}

.leistung-item {
  max-width: 720px;
  margin: 0 auto var(--space-2xl);
  padding: var(--space-2xl);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.leistung-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-violet-subtle);
}

.leistung-item:last-child {
  margin-bottom: 0;
}

.leistung-item h3 {
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

.leistung-item p {
  color: var(--color-text-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin-bottom: var(--space-lg);
}

.leistungen-divider {
  max-width: 720px;
  margin: var(--space-3xl) auto;
  height: 1px;
  background: var(--color-border);
  position: relative;
}

.leistungen-divider::after {
  content: 'Webnahe Leistungen';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-surface);
  padding: 0 var(--space-lg);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  white-space: nowrap;
}


/* ── Bridge ── */
.leistungen-bridge {
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.leistungen-bridge::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(109, 58, 199, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.leistungen-bridge .bridge-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.bridge-quote {
  font-size: var(--fs-h3);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-2xl);
  line-height: var(--lh-heading);
}

.bridge-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}


/* ── Responsive ── */
@media (max-width: 768px) {
  .leistungen-hero {
    padding-top: calc(72px + var(--space-3xl));
    padding-bottom: var(--space-2xl);
  }

  .leistung-item {
    padding: var(--space-xl);
  }

  .bridge-buttons {
    flex-direction: column;
    align-items: center;
  }

  .bridge-buttons .btn {
    width: 100%;
    max-width: 340px;
  }
}
