/* ============================================
   SERVICES PAGE - CLEAN STYLING
   Nach dem Muster der About-Seite
   ============================================ */

/* ============================================
   HERO SECTION (mit Hintergrundbild)
   ============================================ */

#services-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
    min-height: 60svh;
    display: flex;
    align-items: center;
}

#services-hero .bg-overlay {
    /* Overlay wie auf Home-Seite - 92% deckend */
    background: linear-gradient(
        180deg,
        rgba(36, 36, 36, 0.92) 0%,
        rgba(36, 36, 36, 0.92) 100%
    );
}

.section-inner {
    width: min(1200px, 90vw);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: center;
}

/* Entferne die glow Effekte - halten wir clean */
.hero-glow {
    display: none;
}

.hero-copy h1 {
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.accent {
    color: var(--red);
}

.kicker {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.8rem;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 36rem;
}

/* Pills */
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.8rem 0 2rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.pill::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 8px rgba(227, 30, 36, 0.5);
}

.pill.muted {
    background: rgba(227, 30, 36, 0.1);
    border-color: rgba(227, 30, 36, 0.25);
    color: white;
}

.pill.muted::before {
    display: none;
}

.hero-actions button {
    padding: 0.9rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.25);
    transition: all 0.3s ease;
}

.hero-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 60px rgba(227, 30, 36, 0.35);
}

/* Hero Panel */
.hero-panel {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: clamp(1.6rem, 4vw, 2.5rem);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.hero-panel h3 {
    margin: 0.5rem 0 0.8rem;
    font-size: 1.4rem;
}

.hero-panel .small {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.panel-list {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.9rem;
}

.panel-bullet {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.75rem;
}

.panel-bullet .dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(227, 30, 36, 0.12),
                0 0 12px rgba(227, 30, 36, 0.4);
    /* Vertikal mittig zur ersten Textzeile */
    margin-top: 0.55em;
}

.panel-bullet .small {
    font-size: 0.95rem;
}

/* ============================================
   SERVICES OFFERS SECTION (ohne Bild)
   Schließt an Hero an: #323232 -> #2a2a2a
   ============================================ */

#services-offers {
    padding: clamp(5rem, 10vw, 7rem) 0;
    /* Gradient schließt an Hero-Ende (#323232) an und geht zu #2a2a2a */
    background: linear-gradient(180deg, #323232 0%, #2d2d2d 50%, #2a2a2a 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header.align-left {
    text-align: left;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 48rem;
    margin: 0 auto;
}

/* Service Cards Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.service-card {
    padding: 2.2rem;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 30, 36, 0.2);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(227, 30, 36, 0.1);
}

.service-card:hover::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.3), transparent);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card .tag {
    display: inline-flex;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(227, 30, 36, 0.1);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(227, 30, 36, 0.3);
    margin-bottom: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-card h3 {
    margin: 0 0 0.9rem;
    font-size: 1.4rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--red);
}

.service-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-card .small {
    font-size: 1.02rem;
    line-height: 1.7;
}

/* ============================================
   PROCESS SECTION (ohne Bild)
   Schließt an Offers an: #2a2a2a -> #252525
   ============================================ */

#services-process {
    position: relative;
    padding: clamp(5rem, 10vw, 7rem) 0;
    /* Gradient schließt nahtlos an Offers-Ende (#2a2a2a) an */
    background: linear-gradient(180deg, #2a2a2a 0%, #272727 50%, #252525 100%);
    overflow: hidden;
}

/* Entferne den glow - clean halten */
.process-glow {
    display: none;
}

#services-process .section-inner {
    position: relative;
    z-index: 1;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.9rem;
    margin-top: 2.5rem;
}

.process-card {
    padding: 1.8rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    transition: width 0.4s ease;
}

.process-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    transform: translateY(-4px);
}

.process-card:hover::before {
    width: 80%;
}

.step-number {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.2), rgba(227, 30, 36, 0.1));
    color: white;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(227, 30, 36, 0.35);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.process-card h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.process-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    font-size: 0.95rem;
    margin: 0;
}

.process-card .small {
    font-size: 0.95rem;
}

/* ============================================
   CTA SECTION (mit Hintergrundbild)
   Overlay startet bei #252525 (Process-Ende)
   ============================================ */

#services-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 10vw, 7rem) 0;
    min-height: 50svh;
    display: flex;
    align-items: center;
}

#services-cta .bg-overlay {
    /* Overlay wie auf Home-Seite - 92% deckend */
    background: linear-gradient(
        180deg,
        rgba(37, 37, 37, 0.92) 0%,
        rgba(26, 26, 26, 0.92) 100%
    );
}

/* Entferne den glow - clean halten */
.cta-glow {
    display: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 0.8rem;
}

.cta-content .kicker {
    margin-bottom: 0.6rem;
}

.cta-content .section-text {
    margin-top: 0;
    max-width: 36rem;
}

.cta-content .btn-container {
    justify-content: center;
    margin-top: 1.8rem;
}

.cta-content .border-btn {
    padding: 0.95rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid var(--red);
    background: rgba(227, 30, 36, 0.1);
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.25);
    transition: all 0.3s ease;
}

.cta-content .border-btn:hover {
    background: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 25px 60px rgba(227, 30, 36, 0.4);
}

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

@media (max-width: 1100px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-panel {
        max-width: 500px;
        margin: 0 auto;
    }

    .lead {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .section-text {
        margin: 0 auto;
        font-size: 1.05rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Generelle Schriftgrößen für Mobile - GROSS und gut lesbar! */
    .section-inner {
        width: 92vw;
    }

    .kicker {
        font-size: 0.9rem;
        letter-spacing: 0.1rem;
    }

    .lead {
        font-size: 1.15rem;
        line-height: 1.8;
    }

    .section-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    /* Hero Panel */
    .hero-panel {
        padding: 1.5rem;
    }

    .hero-panel h3 {
        font-size: 1.5rem;
    }

    .hero-panel .small {
        font-size: 1.1rem;
        line-height: 1.75;
    }

    .panel-bullet .small {
        font-size: 1.1rem;
    }

    /* Pills */
    .pill-row {
        gap: 0.6rem;
    }
    
    .pill {
        padding: 0.7rem 1.1rem;
        font-size: 1rem;
    }

    /* Service Cards */
    .service-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 auto;
        gap: 1.2rem;
    }
    
    .service-card {
        padding: 1.6rem;
    }

    .service-card .tag {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .service-card p,
    .service-card .small {
        font-size: 1.1rem;
        line-height: 1.75;
    }
    
    /* Process Cards */
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 2rem auto 0;
        gap: 1rem;
    }
    
    .process-card {
        flex-direction: row;
        align-items: flex-start;
        padding: 1.4rem;
        gap: 1.2rem;
    }

    .step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .process-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .process-card p,
    .process-card .small {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }

    .cta-content .section-text {
        font-size: 1.1rem;
    }

    .cta-content .border-btn {
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .section-inner {
        width: 92vw;
    }

    #services-hero,
    #services-offers,
    #services-process,
    #services-cta {
        padding: clamp(3rem, 8vw, 5rem) 0;
    }
    
    .hero-copy h1 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
        line-height: 1.15;
    }

    .kicker {
        font-size: 0.85rem;
        letter-spacing: 0.08rem;
    }

    .lead {
        font-size: 1.1rem;
    }
    
    .pill {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
    }

    .hero-panel {
        padding: 1.3rem;
    }

    .hero-panel h3 {
        font-size: 1.35rem;
    }

    .hero-panel .small,
    .panel-bullet .small {
        font-size: 1.02rem;
    }

    .section-header h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .section-text {
        font-size: 1.05rem;
    }

    .service-card {
        padding: 1.4rem;
    }
    
    .service-card h3 {
        font-size: 1.35rem;
    }
    
    .service-card p,
    .service-card .small {
        font-size: 1.02rem;
    }

    .process-card {
        padding: 1.2rem;
    }

    .step-number {
        width: 2.6rem;
        height: 2.6rem;
        font-size: 0.95rem;
    }

    .process-card h4 {
        font-size: 1.15rem;
    }

    .process-card p,
    .process-card .small {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content .section-text {
        font-size: 1.02rem;
    }
}
