/* Leistungen (services.html) – Page-Hero + Detail-Layout */

.page-hero--services {
    --page-hero-bg: url("../img/services-hero-bg.avif");
}

.services-band {
    scroll-margin-top: 5rem;
}

.services-band--tight {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

.services-container {
    max-width: 960px;
}

.services-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(230, 241, 255, 0.92);
    text-align: center;
    max-width: 72ch;
    margin: 0 auto 2rem;
}

.services-lead--narrow {
    max-width: 58ch;
}

.services-strong {
    color: var(--cyber-cyan);
    font-weight: 700;
}

.services-eyebrow {
    font-family: var(--font-main);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: rgba(0, 240, 255, 0.85);
    text-align: center;
    margin-bottom: 0.35rem;
}

.services-band h2 {
    margin-bottom: 1rem;
}

.services-principles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
    margin-top: 0.5rem;
}

.services-principle {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.35rem;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.services-principle:hover {
    border-color: rgba(0, 240, 255, 0.38);
    background-color: rgba(0, 240, 255, 0.04);
}

.services-principle > .icon {
    flex-shrink: 0;
    font-size: 1.45rem;
    color: var(--cyber-cyan);
    margin-top: 0.15rem;
}

.services-principle__title {
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.4rem;
}

.services-principle p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(230, 241, 255, 0.88);
    line-height: 1.55;
}

.services-process {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.services-process__step {
    position: relative;
    padding: 1.35rem 1.35rem 1.35rem 1.25rem;
    border-radius: 10px;
    background:
      linear-gradient(135deg, rgba(0, 240, 255, 0.07), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 240, 255, 0.22);
    padding-left: 4.25rem;
}

.services-process__num {
    position: absolute;
    left: 1.1rem;
    top: 1.2rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--navy-blue);
    background: var(--cyber-cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.2);
}

.services-process__title {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.5rem;
}

.services-process__step p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(230, 241, 255, 0.88);
    line-height: 1.55;
}

.services-pillar-grid {
    margin-top: 0.5rem;
}

.services-cta-band {
    padding-bottom: 4.5rem;
}

.services-cta {
    text-align: center;
}

.services-cta .cta-button {
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .services-principles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .services-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.35rem;
    }
}

@media (min-width: 1024px) {
    .services-process {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .services-process__step {
        padding: 1.5rem 1rem 1.5rem;
        padding-top: 3.75rem;
        text-align: center;
    }

    .services-process__num {
        left: 50%;
        top: 1.25rem;
        transform: translateX(-50%);
    }
}
