/* Services-Abschnitt – dunkler, seriöser Block mit Glasmorphismus-Karten */

.services-section {
    /* statt fixem Verlauf jetzt der globale Gradient wie in base.css / section-1 */
    background: linear-gradient(180deg,
            var(--color-gradient-start, #000000) 0%,
            var(--color-gradient-end, #333333) 100%);
    color: #ffffff;
    padding: 60px 0;
    font-family: var(--font-base);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.services-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.services-subtitle {
    font-size: 0.95rem;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

/* Service-Karte mit Glasmorphismus */
.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0.9rem;
    padding: 1.4rem 1.6rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
    overflow: hidden;
}

/* Hover-Effekte */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.32);
}

/* Inhalt innerhalb der Karte – Einzug zurücksetzen, da kein Streifen mehr nötig ist */
.service-card-inner {
    position: relative;
    padding-left: 0;
}

/* Icon, Titel, Beschreibung */
.service-icon {
    font-size: 1.7rem;
    margin-bottom: 0.6rem;
}

.service-title {
    font-size: clamp(0.95rem, 0.85rem + 0.45vw, 1.1rem);
    font-weight: 600;
    margin-bottom: 0.45rem;
    letter-spacing: 0.02em;
    overflow-wrap: break-word;
    word-break: normal;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive: max. 2 Spalten auf Tablet, 1 Spalte mobil */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.3rem 1.4rem 1.4rem;
    }

    .service-card-inner {
        padding-left: 0;
    }
}