/* ============================================================
   Services Overview Page
   ============================================================ */

/* ===== HERO ===== */
.services-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--purple-deeper) 0%, var(--purple) 40%, var(--purple-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
    color: var(--white);
}

.services-hero .hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.services-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
}
.services-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.services-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.services-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    max-width: 660px;
    margin: 0 auto;
}

/* ===== GRID ===== */
.services-overview-section {
    background: var(--gray-50);
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.services-overview-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition);
    position: relative;
    grid-column: span 2;
}

.services-overview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

/* Featured Card (Frag-Maria) , doppelte Breite */
.services-card-featured {
    grid-column: span 6;
    background: linear-gradient(135deg, var(--white) 0%, #FEFBF1 100%);
    border-color: rgba(255, 195, 0, 0.4);
    padding: 48px 44px;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}
.services-card-featured:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(255, 195, 0, 0.15);
}
.services-card-featured h2 {
    flex: 1 1 100%;
    font-size: 1.8rem;
}
.services-card-featured p {
    flex: 1 1 100%;
    font-size: 1.05rem;
}
.services-card-featured .services-card-icon {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
}
.services-card-featured .services-card-icon img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}
.services-card-featured .services-card-badge {
    flex: 1 1 auto;
    align-self: center;
}

/* Coming Soon Cards , halbe Breite */
.services-card-soon {
    grid-column: span 3;
    cursor: default;
    opacity: 0.92;
}
.services-card-soon:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--gray-200);
}

/* Card-Internal */
.services-card-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--purple);
    background: rgba(55, 12, 123, 0.08);
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    align-self: flex-start;
}
.services-card-featured .services-card-badge {
    color: var(--gold-dark);
    background: rgba(255, 195, 0, 0.18);
}
.services-card-soon .services-card-badge {
    color: var(--gray-500);
    background: var(--gray-100);
}

.services-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services-card-icon-svg {
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(55, 12, 123, 0.08), rgba(55, 12, 123, 0.02));
    color: var(--purple);
}
.services-card-icon-svg svg {
    width: 28px;
    height: 28px;
}

.services-overview-card h2 {
    font-size: 1.3rem;
    color: var(--purple-dark);
    line-height: 1.3;
}

.services-overview-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0;
}

.services-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin-top: auto;
}
.services-card-tags li {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--purple);
    background: rgba(55, 12, 123, 0.06);
    padding: 5px 12px;
    border-radius: 999px;
}

.services-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--purple);
    margin-top: 8px;
}
.services-card-featured .services-card-link {
    color: var(--gold-dark);
    flex: 1 1 100%;
}
.services-overview-card:hover .services-card-link svg {
    transform: translateX(4px);
}
.services-card-link svg {
    transition: transform 0.3s ease;
}

/* ===== CTA ===== */
.services-cta-section {
    background: var(--white);
}
.services-cta-card {
    background: linear-gradient(135deg, var(--purple-deeper) 0%, var(--purple) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.services-cta-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 195, 0, 0.18), transparent 70%);
    pointer-events: none;
}
.services-cta-card h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.services-cta-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.services-cta-card .hero-cta-group {
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* ===== NAV ACTIVE ===== */
.nav-active {
    color: var(--gold) !important;
}
.navbar.scrolled .nav-active {
    color: var(--purple) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-overview-card {
        grid-column: span 1;
    }
    .services-card-featured {
        grid-column: span 2;
        flex-direction: column;
    }
    .services-card-featured .services-card-badge {
        align-self: flex-start;
    }
    .services-card-soon {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .services-overview-grid {
        grid-template-columns: 1fr;
    }
    .services-overview-card,
    .services-card-featured,
    .services-card-soon {
        grid-column: span 1;
    }
    .services-cta-card {
        padding: 48px 28px;
    }
}
