/* =============================================
   BEQIRI CLEAN – LEISTUNGEN.CSS
   Unterseiten-Styles (Leistungsseiten)
   Aufgebaut auf Basis von style.css
   ============================================= */

/* ---- LEISTUNGS-HERO (l-hero) ---- */
.l-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    margin-top: 32px;
}

.l-hero-content {
    flex: 1;
    min-width: 0;
}

.l-breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.l-breadcrumb a {
    color: var(--blue);
}

.l-breadcrumb a:hover {
    text-decoration: underline;
}

.l-hero-content h1 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.l-hero-content p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.l-hero-btn {
    font-size: 15px;
}

.l-hero-img {
    flex: 1;
    min-width: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.l-hero-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* ---- SITUATION PROBLEME ---- */
.l-situation-problems {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.l-sit-prob {
    flex: 1;
    min-width: 240px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border);
}

.l-sit-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
}

.l-sit-prob p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- SITUATION SPALTEN ---- */
.l-situation-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.l-sit-col {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
}

.l-sit-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}

.l-sit-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.l-sit-col ul li {
    font-size: 14px;
    color: var(--text-muted);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.l-sit-col ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #e05050;
    font-size: 12px;
    top: 1px;
}

/* ---- ZIEL SECTION ---- */
.l-ziel-section {
    background: var(--blue);
    padding: 70px 0;
}

.l-ziel-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.l-ziel-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.l-ziel-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
    margin-bottom: 32px;
}

/* ---- LÖSUNG GRID ---- */
.l-loesung-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.l-loesung-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

.l-loesung-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.l-loesung-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--blue-light);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 16px;
}

.l-loesung-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.l-loesung-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- TESTIMONIALS ---- */
.l-testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.l-testimonial-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.l-testimonial-stars {
    font-size: 16px;
    color: #f5a623;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.l-testimonial-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.l-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.l-testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.l-testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.l-testimonial-role {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

/* ---- CTA BANNER (wiederverwendet aus Homepage) ---- */
.cta-banner {
    background: var(--blue);
    padding: 60px 24px;
}

/* ---- ERWARTEN GRID ---- */
.l-erwarten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 0 auto 8px;
}

.l-erwarten-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

.l-erwarten-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.l-erwarten-icon {
    font-size: 24px;
    flex-shrink: 0;
}

/* ---- FAQ ---- */
.l-faq {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.l-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
}

.l-faq-q {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background var(--transition);
    user-select: none;
}

.l-faq-q:hover {
    background: var(--bg-light);
}

.l-faq-arrow {
    font-size: 18px;
    color: var(--blue);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.l-faq-item.open .l-faq-arrow {
    transform: rotate(180deg);
}

.l-faq-a {
    display: none;
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}

.l-faq-item.open .l-faq-a {
    display: block;
}

/* ---- FINALER CTA ---- */
.l-final-cta {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    padding: 80px 24px;
}

.l-final-cta-inner {
    max-width: 760px;
}

.l-final-cta h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.25;
}

.l-final-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 620px;
}

/* ---- ANDERE LEISTUNGEN ---- */
.l-other-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.l-other-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    color: var(--text);
}

.l-other-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--blue);
}

.l-other-icon {
    font-size: 32px;
    margin-bottom: 4px;
}

.l-other-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.l-other-sub {
    font-size: 13px;
    color: var(--blue);
    font-weight: 500;
}

/* =============================================
   RESPONSIVE – MOBILE
   ============================================= */
@media (max-width: 900px) {
    .l-loesung-grid {
        grid-template-columns: 1fr;
    }

    .l-other-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hero */
    .l-hero {
        flex-direction: column;
        padding: 90px 20px 60px;
        gap: 32px;
        margin-top: 0;
    }

    .l-hero-img {
        width: 100%;
    }

    .l-hero-img img {
        height: 240px;
    }

    .l-hero-content h1 {
        font-size: 26px;
    }

    .l-hero-content p {
        font-size: 16px;
    }

    /* Situation */
    .l-situation-problems {
        flex-direction: column;
    }

    .l-sit-prob {
        min-width: unset;
    }

    .l-situation-cols {
        grid-template-columns: 1fr;
    }

    /* Lösung */
    .l-loesung-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .l-testimonials {
        grid-template-columns: 1fr;
    }

    /* Erwarten */
    .l-erwarten-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Andere Leistungen */
    .l-other-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Final CTA */
    .l-final-cta {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .l-erwarten-grid {
        grid-template-columns: 1fr;
    }

    .l-other-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .l-ziel-text {
        font-size: 16px;
    }
}
