.leistungen-cards {
      container-type: inline-size;
      container-name: leistungen-cards;
    }

    /* Header */
    .leistungen-cards__header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto var(--space-4xl);
    }

    .leistungen-cards__label {
      display: inline-block;
      font-family: var(--font-primary);
      font-size: var(--text-xs);
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: var(--space-s);
    }

    .leistungen-cards__title {
      font-family: var(--font-primary);
      font-size: var(--text-3xl);
      font-weight: 300;
      line-height: 1.1;
      color: var(--text-title);
      margin: 0 0 var(--space-m);
    }

    .leistungen-cards__intro {
      font-family: var(--font-secondary);
      font-size: var(--text-m);
      line-height: 1.7;
      color: var(--text-body);
      margin: 0;
    }

    /* Grid */
    .leistungen-cards__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-xl);
    }

    /* Card */
    .leistungen-cards__card {
      padding: var(--space-2xl);
      background: var(--bg-surface);
      border: 1px solid var(--border-primary);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .leistungen-cards__card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-l);
    }

    .leistungen-cards__card--featured {
      background: var(--primary);
      border-color: var(--primary);
    }

    .leistungen-cards__card--featured .leistungen-cards__icon {
      background: var(--light-20);
      color: var(--light);
    }

    .leistungen-cards__card--featured .leistungen-cards__card-title,
    .leistungen-cards__card--featured .leistungen-cards__card-text,
    .leistungen-cards__card--featured .leistungen-cards__list li {
      color: var(--light);
    }

    .leistungen-cards__card--featured .leistungen-cards__list li::before {
      background: var(--light);
    }

    /* Icon */
    .leistungen-cards__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--primary-10);
      color: var(--primary);
      margin-bottom: var(--space-l);
    }

    .leistungen-cards__icon i {
      width: 28px;
      height: 28px;
    }

    /* Card Content */
    .leistungen-cards__card-title {
      font-family: var(--font-primary);
      font-size: var(--text-xl);
      font-weight: 500;
      color: var(--text-title);
      margin: 0 0 var(--space-m);
    }

    .leistungen-cards__card-text {
      font-family: var(--font-secondary);
      font-size: var(--text-s);
      line-height: 1.7;
      color: var(--text-body);
      margin: 0 0 var(--space-l);
    }

    /* List */
    .leistungen-cards__list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .leistungen-cards__list li {
      position: relative;
      font-family: var(--font-secondary);
      font-size: var(--text-s);
      color: var(--text-body);
      padding-left: var(--space-m);
      margin-bottom: var(--space-xs);
    }

    .leistungen-cards__list li:last-child {
      margin-bottom: 0;
    }

    .leistungen-cards__list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.6em;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--primary);
    }

    /* CTA */
    .leistungen-cards__cta {
      display: flex;
      justify-content: center;
      margin-top: var(--space-4xl);
    }

    .leistungen-cards__cta-link {
      display: inline-flex;
      align-items: center;
      gap: var(--space-s);
      font-family: var(--font-primary);
      font-size: var(--text-s);
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-title);
      text-decoration: none;
      padding: var(--space-m) var(--space-xl);
      background: transparent;
      border: 1px solid var(--primary);
      transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease;
    }

    .leistungen-cards__cta-link:hover {
      background: var(--primary);
      color: var(--text-light);
      gap: var(--space-m);
    }

    .leistungen-cards__cta-link i {
      width: 18px;
      height: 18px;
    }

    /* Container Queries */
    @container leistungen-cards (max-width: 968px) {
      .leistungen-cards__grid {
        gap: var(--space-l);
      }

      .leistungen-cards__card {
        padding: var(--space-xl);
      }
    }

    @container leistungen-cards (max-width: 768px) {
      .leistungen-cards__header {
        margin-bottom: var(--space-3xl);
      }

      .leistungen-cards__title {
        font-size: var(--text-2xl);
      }

      .leistungen-cards__grid {
        grid-template-columns: 1fr;
        gap: var(--space-m);
      }

      .leistungen-cards__card--featured {
        order: -1;
      }

      .leistungen-cards__cta {
        margin-top: var(--space-3xl);
      }
    }

    @container leistungen-cards (max-width: 480px) {
      .leistungen-cards__title {
        font-size: var(--text-xl);
      }

      .leistungen-cards__card {
        padding: var(--space-l);
      }

      .leistungen-cards__icon {
        width: 48px;
        height: 48px;
      }

      .leistungen-cards__icon i {
        width: 24px;
        height: 24px;
      }

      .leistungen-cards__card-title {
        font-size: var(--text-l);
      }

      .leistungen-cards__cta-link {
        width: 100%;
        justify-content: center;
      }
    }
