/* ==========================================================================
   leistungen.css – Shared styles für alle 4 Leistungsseiten
   ========================================================================== */

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

.ls-hero {
    padding-top: calc(72px + var(--space-12));
    background: var(--color-black);
}

.ls-hero__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-12);
    align-items: center;
}

.ls-hero__h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    color: var(--color-white);
    margin-bottom: var(--space-6);
    margin-top: var(--space-4);
}

.ls-hero__lead {
    font-size: var(--text-lg);
    color: var(--color-gray-300);
    max-width: 58ch;
    line-height: var(--leading-normal);
    margin-bottom: var(--space-4);
}

.ls-hero__icon {
    flex-shrink: 0;
    opacity: 0.15;
}

/* ==========================================================================
   LISTEN
   ========================================================================== */

.ls-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.ls-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--color-gray-300);
    line-height: 1.5;
}

.ls-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   ABLAUF / STEPS
   ========================================================================== */

.ls-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    margin-top: var(--space-8);
    counter-reset: none;
}

.ls-step {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: var(--space-5);
    align-items: start;
    position: relative;
}

.ls-step + .ls-step::before {
    content: '';
    position: absolute;
    top: -var(--space-8);
    left: 1.4rem;
    width: 1px;
    height: var(--space-8);
    background: rgba(200, 168, 75, 0.2);
}

.ls-step__number {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    font-weight: 700;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 168, 75, 0.08);
    border: 1px solid rgba(200, 168, 75, 0.25);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.ls-step__content h3 {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.ls-step__content p {
    font-size: var(--text-sm);
    color: var(--color-gray-300);
    line-height: var(--leading-normal);
}

/* ==========================================================================
   VORTEILE
   ========================================================================== */

.ls-vorteile__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.ls-vorteil {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.ls-vorteil__icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 168, 75, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ls-vorteil h3 {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--color-white);
}

.ls-vorteil p {
    font-size: var(--text-sm);
    color: var(--color-gray-300);
    line-height: var(--leading-normal);
}

/* ==========================================================================
   PREIS-CARD
   ========================================================================== */

.ls-preis {
    text-align: left;
}

.ls-preis strong {
    color: var(--color-white);
    font-size: var(--text-sm);
}

.ls-preis span {
    font-size: var(--text-sm);
    color: var(--color-gray-300);
}

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

@media (max-width: 1024px) {
    .ls-hero__icon { display: none; }
}

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

    .ls-vorteile__grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
}
