/* Extracted from mitarbeiterhandbuch.php. Edit here, not in PHP. */

/* ============================================
   MHB, Mitarbeiterhandbuch (CI-konform)
   Prefix: mhb-
   ============================================ */

/* ---- Box Sizing Reset ---- */
.mhb-hero,
.mhb-stats-bar,
.mhb-warum,
.mhb-inhalte,
.mhb-leistungen,
.mhb-prozess,
.mhb-hinweis,
.mhb-faq,
.mhb-cta-section,
.mhb-internal-links {
    box-sizing: border-box;
}

/* ==============================
   1. HERO (Light Blue BG)
   ============================== */
.mhb-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 6rem 2rem 5rem;
}
.mhb-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.mhb-badge {
    display: inline-block;
    background: #dbeafe;
    border: 1px solid #bfdbfe;
    color: #1e40af;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.mhb-hero h1 {
    font-size: clamp(1.9rem, 3.8vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1.25rem 0;
    color: #1f2937;
}
.mhb-hero-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 1.75rem;
    max-width: 560px;
}
.mhb-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.mhb-chip {
    background: #ffffff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    box-shadow: 0 1px 4px rgba(37, 99, 235, 0.08);
}
.mhb-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}
.mhb-hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.9rem 2.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
    cursor: pointer;
    border: none;
}
.mhb-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}
.mhb-hero-tel {
    color: #2563eb;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.mhb-hero-tel:hover {
    text-decoration: underline;
}

/* Hero SVG Visual */
.mhb-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mhb-hero-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(37, 99, 235, 0.15));
}

/* ==============================
   2. STATS-BAR (Navy)
   ============================== */
.mhb-stats-bar {
    background: #1e3a5f;
    padding: 2.5rem 2rem;
}
.mhb-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.mhb-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}
.mhb-stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* ==============================
   3. WARUM KMU (2-spaltig)
   ============================== */
.mhb-warum {
    background: #ffffff;
    padding: 5.5rem 2rem;
}
.mhb-warum-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.mhb-warum-text h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 1.25rem 0;
}
.mhb-warum-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.1rem;
    font-size: 0.97rem;
}
.mhb-warum-text p:last-child {
    margin-bottom: 0;
}
.mhb-problem-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 1rem;
}
.mhb-problem-cards {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.mhb-problem-card {
    background: #fff8f8;
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}
.mhb-problem-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.mhb-problem-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.2rem;
}
.mhb-problem-desc {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.5;
}

/* ==============================
   4. INHALTE (6 Karten, blauer BG)
   ============================== */
.mhb-inhalte {
    background: #f0f9ff;
    padding: 5.5rem 2rem;
}
.mhb-inhalte-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.mhb-section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.mhb-section-header h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
}
.mhb-section-header p {
    color: #4b5563;
    font-size: 0.97rem;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}
.mhb-inhalte-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.mhb-inhalt-card {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.mhb-inhalt-card:hover {
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.12);
    transform: translateY(-2px);
}
.mhb-inhalt-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    font-size: 1.25rem;
}
.mhb-inhalt-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.6rem;
}
.mhb-inhalt-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.65;
}
.mhb-inhalt-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    margin-top: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ==============================
   5. LEISTUNGEN (Navy, 3 Säulen)
   ============================== */
.mhb-leistungen {
    background: #1e3a5f;
    padding: 5.5rem 2rem;
}
.mhb-leistungen-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.mhb-leistungen-header {
    text-align: center;
    margin-bottom: 3rem;
}
.mhb-leistungen-header h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
}
.mhb-leistungen-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.97rem;
    line-height: 1.6;
}
.mhb-leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.mhb-leistung-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 2rem 1.75rem;
}
.mhb-leistung-step {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}
.mhb-leistung-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}
.mhb-leistung-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.mhb-leistung-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mhb-leistung-list li {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.mhb-leistung-list li:last-child {
    border-bottom: none;
}
.mhb-leistung-list li::before {
    content: '✓';
    color: #10b981;
    flex-shrink: 0;
    font-weight: 700;
    margin-top: 0.05rem;
}

/* ==============================
   6. PROZESS (4 Schritte)
   ============================== */
.mhb-prozess {
    background: #f8fafc;
    padding: 5.5rem 2rem;
}
.mhb-prozess-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.mhb-prozess-header {
    text-align: center;
    margin-bottom: 3rem;
}
.mhb-prozess-header h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 0.6rem 0;
}
.mhb-prozess-header p {
    color: #6b7280;
    font-size: 0.97rem;
}
.mhb-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}
.mhb-step {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    position: relative;
}
.mhb-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1.1rem;
}
.mhb-step-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.mhb-step-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.65;
}
.mhb-step-duration {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    margin-top: 0.85rem;
}

/* ==============================
   7. HINWEIS-BOX (Blau)
   ============================== */
.mhb-hinweis {
    background: #eff6ff;
    padding: 4rem 2rem;
    border-top: 1px solid #dbeafe;
    border-bottom: 1px solid #dbeafe;
}
.mhb-hinweis-inner {
    max-width: 900px;
    margin: 0 auto;
}
.mhb-hinweis-box {
    background: #ffffff;
    border: 1px solid #bfdbfe;
    border-left: 5px solid #2563eb;
    border-radius: 0 12px 12px 0;
    padding: 2rem 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.mhb-hinweis-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.mhb-hinweis-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 0.75rem 0;
}
.mhb-hinweis-content p {
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}
.mhb-hinweis-content a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}
.mhb-hinweis-content a:hover {
    text-decoration: underline;
}

/* ==============================
   8. FAQ
   ============================== */
.mhb-faq {
    background: #ffffff;
    padding: 5.5rem 2rem;
}
.mhb-faq-inner {
    max-width: 820px;
    margin: 0 auto;
}
.mhb-faq-inner > h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #1f2937;
    text-align: center;
    margin: 0 0 0.5rem 0;
}
.mhb-faq-intro {
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}
.mhb-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.mhb-faq-item.open {
    border-color: #2563eb;
}
.mhb-faq-question {
    padding: 1.1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.15s ease;
}
.mhb-faq-question:hover {
    background: #fafafa;
}
.mhb-faq-plus {
    font-size: 1.4rem;
    color: #2563eb;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s ease;
    line-height: 1;
}
.mhb-faq-item.open .mhb-faq-plus {
    transform: rotate(45deg);
}
.mhb-faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.75;
}
.mhb-faq-item.open .mhb-faq-answer {
    display: block;
}
.mhb-faq-answer a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}
.mhb-faq-answer a:hover {
    text-decoration: underline;
}

/* ==============================
   9. CTA-SECTION (Emerald-Gradient)
   ============================== */
.mhb-cta-section {
    background: linear-gradient(135deg, #059669, #10b981);
    padding: 5.5rem 2rem;
    text-align: center;
}
.mhb-cta-section h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.85rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.mhb-cta-section p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    margin: 0.85rem auto 2.25rem;
    max-width: 560px;
}
.mhb-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.mhb-cta-btn-white {
    display: inline-block;
    background: #ffffff;
    color: #059669;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2.4rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
    border: none;
}
.mhb-cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.mhb-cta-tel-link {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 2px;
}
.mhb-cta-tel-link:hover {
    border-color: rgba(255, 255, 255, 0.8);
}
.mhb-cta-sub {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ==============================
   10. INTERNE LINKS
   ============================== */
.mhb-internal-links {
    background: #f8fafc;
    padding: 4.5rem 2rem;
    border-top: 1px solid #e5e7eb;
}
.mhb-internal-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.mhb-internal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.mhb-internal-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.4rem 0;
}
.mhb-internal-header p {
    color: #6b7280;
    font-size: 0.9rem;
}
.mhb-internal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.mhb-internal-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    display: block;
}
.mhb-internal-card:hover {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
    border-color: #bfdbfe;
}
.mhb-internal-card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.mhb-internal-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.35rem;
}
.mhb-internal-card-desc {
    font-size: 0.78rem;
    color: #6b7280;
    line-height: 1.5;
}
.mhb-internal-card-arrow {
    color: #2563eb;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.75rem;
    display: block;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
    .mhb-hero-inner {
        gap: 2.5rem;
    }
    .mhb-stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .mhb-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mhb-internal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mhb-hero {
        padding: 4rem 1.5rem 3.5rem;
    }
    .mhb-hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .mhb-hero-visual {
        order: -1;
    }
    .mhb-hero-visual svg {
        max-width: 300px;
    }
    .mhb-warum-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .mhb-inhalte-grid {
        grid-template-columns: 1fr 1fr;
    }
    .mhb-leistungen-grid {
        grid-template-columns: 1fr;
    }
    .mhb-steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    .mhb-hinweis-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    .mhb-cta-btns {
        flex-direction: column;
        align-items: center;
    }
    .mhb-internal-grid {
        grid-template-columns: 1fr 1fr;
    }
    .mhb-stat-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .mhb-inhalte-grid {
        grid-template-columns: 1fr;
    }
    .mhb-steps-grid {
        grid-template-columns: 1fr;
    }
    .mhb-stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    .mhb-internal-grid {
        grid-template-columns: 1fr;
    }
    .mhb-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
}
