@import url('mobile-fix.css');

/* ═══════════════════════════════════════════════════════════════
   page.css – Pflegehilfe Hameln
   Gemeinsamer Stil für ALLE Sub-Pages (Tools-Niveau)
   Identity: Navy #003060, Mint #56D08A
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   GLOBALE Anti-Overflow Regeln
   overflow-x: clip statt hidden — bricht position:sticky NICHT
   ═══════════════════════════════════════════════════════ */
html { overflow-x: clip; }
body {
    overflow-x: clip;
    max-width: 100%;
}
img, video, iframe { max-width: 100%; height: auto; }
iframe { width: 100%; }

/* Tabellen mobile-scrollbar (für compare-table etc.) */
@media (max-width: 768px) {
    .compare-table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    .compare-table thead, .compare-table tbody, .compare-table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }
    /* haushalt "1fr auto 1fr" Grid → single column auf mobile */
    .container > div[style*="grid-template-columns:1fr auto 1fr"],
    div[style*="grid-template-columns:1fr auto 1fr"] {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════ */
.breadcrumb-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e8edf5;
    padding: 0.875rem 0;
    font-family: "DM Sans", system-ui, sans-serif;
}
.breadcrumb-bar .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    align-items: center;
}
.breadcrumb-bar a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color .15s;
}
.breadcrumb-bar a:hover { color: #003060; }
.breadcrumb-bar .breadcrumb-mid {
    color: #64748b;
    font-weight: 500;
}
.breadcrumb-bar .breadcrumb-current {
    color: #003060;
    font-weight: 700;
}
.breadcrumb-bar .sep {
    color: #cbd5e1;
    user-select: none;
}

/* ═══════════════════════════════════════════════════════
   HERO — DM Serif Display Headlines
   ═══════════════════════════════════════════════════════ */
.hero h1 {
    font-family: "DM Serif Display", Georgia, serif !important;
    font-weight: 400 !important;
    letter-spacing: -0.015em !important;
    line-height: 1.1 !important;
}
.hero h1 em {
    color: #56D08A;
    font-style: normal;
}

/* ═══════════════════════════════════════════════════════
   SECTION HEADER & TITLES
   ═══════════════════════════════════════════════════════ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 48, 96, .06) !important;
    color: #003060 !important;
    border: 1px solid rgba(0, 48, 96, .15);
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 6px 12px !important;
    border-radius: 999px !important;
    font-family: "DM Sans", system-ui, sans-serif !important;
    margin-bottom: 1rem;
}

.section-title {
    font-family: "DM Serif Display", Georgia, serif !important;
    font-weight: 400 !important;
    color: #003060 !important;
    font-size: clamp(1.6rem, 3vw, 2.25rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.01em !important;
    margin: 0 0 0.625rem !important;
}
.section-title em {
    color: #45b87a;
    font-style: normal;
}

.section-desc {
    color: #475569 !important;
    font-size: 1rem !important;
    line-height: 1.65 !important;
    max-width: 640px;
    margin: 0 auto !important;
}

.section-header {
    text-align: center;
    margin-bottom: 2.75rem;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS — Mint-Pill mit Soft-Shadow
   ═══════════════════════════════════════════════════════ */
.btn-primary,
.btn.btn-primary {
    background: linear-gradient(135deg, #56D08A 0%, #45b87a 100%) !important;
    color: #003060 !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    padding: 0.875rem 1.875rem !important;
    font-family: "DM Sans", system-ui, sans-serif !important;
    box-shadow: 0 4px 16px rgba(86, 208, 138, .35);
    transition: all .18s !important;
    letter-spacing: -0.005em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.btn-primary:hover,
.btn.btn-primary:hover {
    background: linear-gradient(135deg, #7be0a6 0%, #56D08A 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(86, 208, 138, .45);
    color: #003060;
}

.btn-lg {
    padding: 1rem 2.25rem !important;
    font-size: 1.0625rem !important;
}

/* ═══════════════════════════════════════════════════════
   CONTENT-CARD — Standard-Card für Inhalt
   ═══════════════════════════════════════════════════════ */
.content-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    border: 1px solid #e8edf5;
    box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
    transition: all .2s ease;
}
.content-card:hover {
    box-shadow: 0 6px 24px rgba(0, 48, 96, .1);
}
.content-card.highlight {
    background: linear-gradient(135deg, rgba(86, 208, 138, .06) 0%, rgba(86, 208, 138, .02) 100%);
    border-color: rgba(86, 208, 138, .35);
}
.content-card h3 {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: #003060;
    margin: 0 0 1rem;
    line-height: 1.2;
    letter-spacing: -0.005em;
}
.content-card h3 em { color: #45b87a; font-style: normal; }
.content-card ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}
.content-card li {
    margin-bottom: 0.625rem;
    color: #475569;
    line-height: 1.6;
    padding-left: 1.75rem;
    position: relative;
}
.content-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 18px;
    height: 18px;
    background: rgba(86, 208, 138, .15);
    border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2315803d' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}
.content-card li strong { color: #003060; }
.content-card p {
    color: #475569;
    line-height: 1.65;
}
.content-card.highlight p { color: #1e293b; }
.content-card.highlight li::before {
    background-color: rgba(86, 208, 138, .25);
}

/* Service-card Listen identisch behandeln */
.service-card ul {
    margin: 0.875rem 0 0;
    padding-left: 0;
    list-style: none;
}
.service-card li {
    color: #475569;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
}
.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 16px;
    height: 16px;
    background: rgba(86, 208, 138, .15);
    border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2315803d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
}

/* ═══════════════════════════════════════════════════════
   TWO-COL LAYOUT
   ═══════════════════════════════════════════════════════ */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .two-col { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ═══════════════════════════════════════════════════════
   COMPARE-CARDS (Vergleich Gruppe vs 1:1 etc.)
   ═══════════════════════════════════════════════════════ */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}
.compare-card {
    border-radius: 14px;
    padding: 1.75rem;
    border: 1px solid #e8edf5;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
    transition: all .2s ease;
}
.compare-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 48, 96, .12);
}
.compare-card.active {
    border-color: rgba(86, 208, 138, .5);
    background: linear-gradient(135deg, #fff 0%, rgba(86, 208, 138, .04) 100%);
    box-shadow: 0 4px 20px rgba(86, 208, 138, .15);
}
.compare-card h4 {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #003060;
    margin: 0 0 1rem;
    line-height: 1.2;
}
.compare-card ul {
    padding-left: 1.25rem;
    margin: 0;
}
.compare-card li {
    font-size: 0.9375rem;
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════
   LOCATION-CARDS (Standorte / Kooperations-Partner)
   ═══════════════════════════════════════════════════════ */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.location-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    border: 1px solid #e8edf5;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
    transition: all .2s ease;
}
.location-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 48, 96, .12);
    border-color: rgba(86, 208, 138, .35);
}
.location-card img {
    max-height: 72px;
    margin-bottom: 1rem;
    object-fit: contain;
}
.location-card h4 {
    font-family: "DM Serif Display", Georgia, serif;
    color: #003060;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 0.5rem;
}
.location-card p {
    color: #64748b;
    font-size: 0.9375rem;
    margin: 0 0 1.25rem;
    line-height: 1.55;
}
.location-card a.btn,
.location-card .btn {
    display: inline-block;
    background: linear-gradient(135deg, #003060, #004080);
    color: #fff;
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all .18s;
    box-shadow: 0 2px 8px rgba(0, 48, 96, .15);
}
.location-card a.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 48, 96, .25);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════
   FINANZ-BOX (Hinweise zur Finanzierung)
   ═══════════════════════════════════════════════════════ */
.finanz-box {
    background: rgba(245, 158, 11, .08);
    border: 1px solid rgba(245, 158, 11, .25);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.finanz-box .fi-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.finanz-box h4 {
    font-family: "DM Serif Display", Georgia, serif;
    color: #92400e;
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0 0 0.4rem;
    line-height: 1.2;
}
.finanz-box p {
    color: #78350f;
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.65;
}
.finanz-box a {
    color: #92400e;
    font-weight: 700;
    border-bottom: 1.5px solid rgba(245, 158, 11, .4);
    text-decoration: none;
}
.finanz-box a:hover { border-bottom-color: #92400e; }

/* ═══════════════════════════════════════════════════════
   INFO-BOX (Standard, .green, .warning Varianten)
   ═══════════════════════════════════════════════════════ */
.info-box {
    background: rgba(86, 208, 138, .08);
    border: 1px solid rgba(86, 208, 138, .25);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin: 1rem 0;
}
.info-box.green {
    background: rgba(86, 208, 138, .08);
    border-color: rgba(86, 208, 138, .35);
}
.info-box.warning {
    background: rgba(245, 158, 11, .08);
    border-color: rgba(245, 158, 11, .3);
}
.info-box-text,
.info-box p {
    font-size: 0.9375rem;
    color: #1e293b;
    line-height: 1.65;
    margin: 0;
}
.info-box-text strong,
.info-box p strong { color: #003060; }
.info-box-text a,
.info-box a {
    color: #003060;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(86, 208, 138, .5);
}
.info-box.warning a { border-bottom-color: rgba(245, 158, 11, .4); }

/* ═══════════════════════════════════════════════════════
   GOAL-CARDS (Ziele / Wirkungs-Cards)
   ═══════════════════════════════════════════════════════ */
.goal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}
.goal-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    border: 1px solid #e8edf5;
    box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
    transition: all .2s ease;
}
.goal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 48, 96, .12);
    border-color: rgba(86, 208, 138, .35);
}
.goal-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(86, 208, 138, .12);
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
}
.goal-card h4 {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #003060;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}
.goal-card p {
    font-size: 0.9375rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   STEP-LIST / STEP-ITEM (Numbered Steps)
   WICHTIG: !important damit OL-default-numbering überschrieben wird
   ═══════════════════════════════════════════════════════ */
ol.step-list,
ul.step-list,
ol.steps-list,
ul.steps-list,
ol.steps,
ul.steps {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin: 1.5rem 0;
    counter-reset: step;
}
.step-list,
.steps-list,
.steps {
    list-style: none;
    list-style-type: none;
    padding-left: 0;
}
.steps-list > li,
.steps > li {
    list-style: none !important;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
    counter-increment: step;
}
.steps-list > li::marker,
.steps > li::marker,
.step-list > li::marker {
    display: none;
    content: '';
}
.step-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
    list-style: none;
    list-style-type: none;
    padding-left: 0;
}
.step-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
    list-style: none !important;
}
.step-item::marker { display: none; content: ''; }
.step-item .step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003060, #004080);
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "DM Sans", system-ui, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 48, 96, .15);
    margin: 0;
}
.step-item > div:not(.step-num),
.step-item .step-content { flex: 1; min-width: 0; }
.step-item h4,
.step-item h3 {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #003060;
    margin: 0 0 0.4rem;
}
.step-item p {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}
.step-item p strong { color: #003060; }
.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003060, #004080);
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 48, 96, .15);
    font-family: "DM Sans", system-ui, sans-serif;
}

/* ═══════════════════════════════════════════════════════
   SCREENING-GRID (Präventions-Screening)
   ═══════════════════════════════════════════════════════ */
.screening-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.screening-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem 1.25rem;
    border: 1px solid #e8edf5;
    border-left: 3px solid #56D08A;
    box-shadow: 0 2px 12px rgba(0, 48, 96, .05);
}
.screening-item h4,
.screening-item h5 {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #003060;
    margin: 0 0 0.4rem;
}
.screening-item p,
.screening-item li {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   BEEP-BANNER (§5 Prävention Hervorhebung)
   ═══════════════════════════════════════════════════════ */
.beep-banner {
    background: linear-gradient(135deg, #003060 0%, #004080 60%, #00547a 100%);
    color: #fff;
    border-radius: 14px;
    padding: 2rem 2.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 48, 96, .18);
    position: relative;
    overflow: hidden;
}
.beep-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(86, 208, 138, .15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.beep-banner .b-icon {
    font-size: 2.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
    position: relative;
}
.beep-banner > div:not(.b-icon),
.beep-banner-body {
    position: relative;
    flex: 1;
}
.beep-banner h2,
.beep-banner h3,
.beep-banner h4 {
    font-family: "DM Serif Display", Georgia, serif !important;
    color: #fff !important;
    font-size: 1.375rem !important;
    font-weight: 400 !important;
    margin: 0 0 0.5rem !important;
    line-height: 1.2 !important;
}
.beep-banner p {
    color: rgba(255, 255, 255, .9) !important;
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
}
.beep-banner p strong,
.beep-banner strong { color: #56D08A !important; font-weight: 700; }
@media (max-width: 600px) {
    .beep-banner { flex-direction: column; gap: 1rem; padding: 1.75rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════
   KOMBINATIONS-BOX
   ═══════════════════════════════════════════════════════ */
.kombinations-box {
    background: linear-gradient(135deg, #003060 0%, #004080 60%, #00547a 100%);
    border-radius: 14px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 8px 32px rgba(0, 48, 96, .18);
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}
.kombinations-box::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(86, 208, 138, .15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.kombinations-box .k-icon {
    font-size: 2.25rem;
    flex-shrink: 0;
    position: relative;
}
.kombinations-box h3,
.kombinations-box h4 {
    font-family: "DM Serif Display", Georgia, serif;
    color: #fff;
    font-size: 1.375rem;
    font-weight: 400;
    margin: 0 0 0.4rem;
    line-height: 1.2;
    position: relative;
}
.kombinations-box p {
    color: rgba(255, 255, 255, .82);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
    position: relative;
}
.kombinations-box strong { color: #56D08A; font-weight: 700; }
.kombinations-box > div:not(.k-icon) {
    flex: 1;
    min-width: 240px;
    position: relative;
}

/* ═══════════════════════════════════════════════════════
   CALC-CARDS (Pflegegrad-Kalkulationen)
   ═══════════════════════════════════════════════════════ */
.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}
.calc-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem;
    border: 1px solid #e8edf5;
    box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
    transition: all .2s ease;
    position: relative;
}
.calc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 48, 96, .12);
}
.pg-label {
    display: inline-block;
    background: rgba(0, 48, 96, .08);
    color: #003060;
    border: 1px solid rgba(0, 48, 96, .18);
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    font-family: "DM Sans", system-ui, sans-serif;
}
.pg-title {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #003060;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}
.result-row {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9375rem;
    color: #475569;
}
.result-row:last-child {
    border-bottom: none;
    font-weight: 700;
    color: #003060;
    margin-top: 0.5rem;
    padding-top: 0.875rem;
    border-top: 2px solid #e8edf5;
}

/* ═══════════════════════════════════════════════════════
   SAEULE-CARDS (für verhinderungspflege.php)
   Note: index.php hat eigene .saeule-card mit blau/mint/amber Modifier
   Diese hier ist die generische Variante ohne Modifier
   ═══════════════════════════════════════════════════════ */
.saeule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}
.saeule-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.75rem;
    border: 1px solid #e8edf5;
    box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
    transition: all .2s ease;
    position: relative;
    overflow: hidden;
}
.saeule-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 48, 96, .12);
}
.saeule-card.s2 { border-top: 4px solid #56D08A; }
.saeule-card.s3 { border-top: 4px solid #f59e0b; }
.saeule-card h3,
.saeule-card h4 {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: #003060;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}
.saeule-betrag {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: #003060;
    margin: 0 0 0.5rem;
    line-height: 1;
}
.saeule-card.s2 .saeule-betrag { color: #15803d; }
.saeule-card.s3 .saeule-betrag { color: #b45309; }
.saeule-para {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.65;
}
.saeule-para strong { color: #003060; }

/* ═══════════════════════════════════════════════════════
   ERGAENZ-CARDS / LEISTUNG-CARDS / SITUATION-CARDS
   (Diverse Card-Varianten in einzelnen Pages)
   ═══════════════════════════════════════════════════════ */
.ergaenz-grid,
.leistung-grid,
.situation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.ergaenz-card,
.leistung-card,
.situation-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    border: 1px solid #e8edf5;
    border-left: 3px solid #003060;
    box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
    transition: all .2s ease;
}
.ergaenz-card:hover,
.leistung-card:hover,
.situation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 48, 96, .12);
    border-left-color: #56D08A;
}
.ergaenz-card .icon,
.leistung-card .icon,
.leistung-card .l-icon,
.ergaenz-card .e-icon,
.situation-card .icon {
    font-size: 1.75rem;
    margin-bottom: 0.875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(86, 208, 138, .12);
    border-radius: 11px;
}
.ergaenz-card h4,
.leistung-card h4,
.situation-card h4 {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #003060;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.ergaenz-card p,
.leistung-card p,
.situation-card p {
    font-size: 0.875rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   CONTACT-PAGE — kontakt.php Hauptkontakt-Tile
   ═══════════════════════════════════════════════════════ */
.contact-hero {
    background: linear-gradient(135deg, rgba(86, 208, 138, .08) 0%, rgba(86, 208, 138, .02) 100%);
    border: 1px solid rgba(86, 208, 138, .35);
    border-radius: 16px;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 8px 32px rgba(86, 208, 138, .12);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(86, 208, 138, .12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.contact-hero-head {
    position: relative;
    margin-bottom: 1.875rem;
}
.contact-hero-head h2 {
    font-family: "DM Serif Display", Georgia, serif;
    color: #003060;
    font-size: clamp(1.625rem, 3vw, 2rem);
    font-weight: 400;
    margin: 0 0 0.5rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.contact-hero-head p {
    color: #475569;
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.55;
    font-weight: 500;
}
.contact-hero-head .contact-sep {
    color: #cbd5e1;
    margin: 0 .35rem;
}
.contact-actions {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    align-items: stretch;
    max-width: 460px;
    margin: 0 auto;
}
.contact-tile {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 1.125rem 1.375rem;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 48, 96, .06);
    transition: all .2s ease;
}
.contact-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 48, 96, .12);
    border-color: rgba(86, 208, 138, .45);
}
.contact-tile-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(86, 208, 138, .15), rgba(86, 208, 138, .05));
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #15803d;
}
.contact-tile-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
    min-width: 0;
}
.contact-tile-label {
    color: #64748b;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: "DM Sans", system-ui, sans-serif;
}
.contact-tile-value {
    color: #003060;
    font-size: 1.0625rem;
    font-weight: 800;
    font-family: "DM Sans", system-ui, sans-serif;
    word-break: break-word;
    overflow-wrap: anywhere;
}
@media (max-width: 600px) {
    .contact-hero { padding: 2rem 1.5rem; }
    .contact-tile { padding: 1rem 1.125rem; gap: .875rem; }
    .contact-tile-value { font-size: 0.9375rem; }
}
.koop-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(86, 208, 138, .08) 0%, rgba(86, 208, 138, .02) 100%);
    border: 1px solid rgba(86, 208, 138, .35);
    border-radius: 14px;
    padding: 1.125rem 1.25rem;
    margin-top: 1.25rem;
    box-shadow: 0 2px 12px rgba(86, 208, 138, .1);
    transition: all .2s ease;
}
.koop-badge:hover {
    box-shadow: 0 6px 20px rgba(86, 208, 138, .18);
    border-color: rgba(86, 208, 138, .5);
}
.koop-badge img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
    background: #fff;
    border-radius: 10px;
    padding: 6px;
    border: 1px solid rgba(0, 48, 96, .08);
}
.koop-badge > div {
    flex: 1;
    min-width: 0;
}
.koop-badge p {
    margin: 0;
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.55;
    font-family: "DM Sans", system-ui, sans-serif;
}
.koop-badge p strong {
    color: #003060;
    font-family: "DM Serif Display", Georgia, serif;
    font-weight: 400;
    font-size: 1.0625rem;
    letter-spacing: -0.005em;
    display: inline-block;
    margin-bottom: 2px;
}
.koop-badge a {
    color: #15803d !important;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(86, 208, 138, .4);
    transition: border-color .15s;
}
.koop-badge a:hover { border-bottom-color: #56D08A; }

/* ═══════════════════════════════════════════════════════
   STICKY CTA — Mint-Pill mit Soft-Shadow
   ═══════════════════════════════════════════════════════ */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 990;
    transition: transform .25s, opacity .25s;
}
.sticky-cta .btn,
.sticky-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, #56D08A 0%, #45b87a 100%) !important;
    color: #003060 !important;
    border: none;
    padding: 0.875rem 1.5rem !important;
    border-radius: 999px !important;
    font-weight: 800;
    font-size: 0.9375rem;
    font-family: "DM Sans", system-ui, sans-serif !important;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(86, 208, 138, .4);
    transition: all .18s !important;
}
.sticky-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(86, 208, 138, .5);
}
@media (max-width: 600px) {
    .sticky-cta { bottom: 16px; right: 16px; left: 16px; }
    .sticky-cta .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   CTA-SECTION (Final Call-to-Action am Page-Ende)
   ═══════════════════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, #003060 0%, #004080 60%, #00547a 100%);
    color: #fff;
    padding: 4rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(86, 208, 138, .12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(86, 208, 138, .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-section .container { position: relative; }
.cta-section h2 {
    font-family: "DM Serif Display", Georgia, serif !important;
    color: #fff !important;
    font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
    font-weight: 400 !important;
    margin: 0 0 0.875rem !important;
    line-height: 1.15 !important;
    letter-spacing: -0.01em !important;
}
.cta-section h2 em { color: #56D08A; font-style: normal; }
.cta-section p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.0625rem;
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 2rem;
}
.cta-section .btn-white {
    background: linear-gradient(135deg, #56D08A 0%, #45b87a 100%) !important;
    color: #003060 !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    padding: 1rem 2.25rem !important;
    font-size: 1.0625rem !important;
    box-shadow: 0 4px 16px rgba(86, 208, 138, .35);
    transition: all .18s !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.cta-section .btn-white:hover {
    background: linear-gradient(135deg, #7be0a6 0%, #56D08A 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(86, 208, 138, .45);
}
.cta-section .btn-outline {
    background: transparent !important;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, .35) !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    padding: 1rem 2.25rem !important;
    font-size: 1.0625rem !important;
    transition: all .18s !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.cta-section .btn-outline:hover {
    background: rgba(255, 255, 255, .1) !important;
    border-color: rgba(255, 255, 255, .55) !important;
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════
   LOTSE-SECTION — für index + digitale-hilfen
   ═══════════════════════════════════════════════════════ */
.section-lotse {
    background: linear-gradient(180deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}
.section-lotse::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(86, 208, 138, .12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.section-lotse::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(0, 48, 96, .08) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.lotse-wrap {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.lotse-wrap .section-badge {
    background: rgba(86, 208, 138, .12) !important;
    color: #15803d !important;
    border-color: rgba(86, 208, 138, .35) !important;
}
.lotse-wrap .section-badge .badge-dot {
    width: 7px;
    height: 7px;
    background: #56D08A;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(86, 208, 138, .2);
    animation: lotse-pulse 1.8s infinite;
}
@keyframes lotse-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(86, 208, 138, .2); }
    50% { box-shadow: 0 0 0 6px rgba(86, 208, 138, .35); }
}
.lotse-meta {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0.25rem 0 1.75rem;
    font-weight: 500;
}
.lotse-meta a {
    color: #003060;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1.5px solid rgba(86, 208, 138, .5);
    transition: border-color .15s;
}
.lotse-meta a:hover { border-bottom-color: #56D08A; }
.lotse-frame {
    background: #fff;
    border-radius: 14px;
    padding: 8px;
    border: 1px solid #e8edf5;
    box-shadow: 0 12px 40px rgba(0, 48, 96, .12), 0 4px 12px rgba(0, 48, 96, .06);
    position: relative;
}
.lotse-frame iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
    background: #f8fafc;
    display: block;
}
@media (max-width: 768px) {
    .lotse-frame iframe { height: 620px; }
}

/* ═══════════════════════════════════════════════════════
   LEGAL-CONTENT (impressum + agb)
   ═══════════════════════════════════════════════════════ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h2 {
    font-family: "DM Serif Display", Georgia, serif;
    color: #003060;
    font-size: 1.75rem;
    font-weight: 400;
    margin: 3rem 0 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8edf5;
    line-height: 1.2;
}
.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.legal-content h3 {
    font-family: "DM Sans", system-ui, sans-serif;
    color: #003060;
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 1.75rem 0 0.75rem;
    line-height: 1.3;
}
.legal-content p,
.legal-content li {
    color: #475569;
    line-height: 1.7;
    font-size: 0.9375rem;
}
.legal-content ul {
    margin: 0.875rem 0;
    padding-left: 1.5rem;
}
.legal-content li { margin-bottom: 0.4rem; }
.legal-content a {
    color: #003060;
    font-weight: 700;
    border-bottom: 1.5px solid rgba(86, 208, 138, .5);
    text-decoration: none;
    transition: border-color .15s;
}
.legal-content a:hover { border-bottom-color: #56D08A; }
.legal-content code {
    background: rgba(0, 48, 96, .06);
    color: #003060;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.875em;
    font-family: ui-monospace, monospace;
}
.legal-content hr {
    margin: 3rem 0;
    border: none;
    border-top: 2px solid #e8edf5;
}
.legal-content strong { color: #003060; }

/* ═══════════════════════════════════════════════════════
   BLOG-Page (search-box, blog-grid, blog-card, pagination)
   ═══════════════════════════════════════════════════════ */
.search-box {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}
.search-box input {
    flex: 1;
    padding: 0.875rem 1.125rem;
    border: 1.5px solid #e8edf5;
    border-radius: 11px;
    font-size: 1rem;
    font-family: "DM Sans", system-ui, sans-serif;
    background: #fff;
    color: #1e293b;
    transition: all .15s;
}
.search-box input::placeholder { color: #94a3b8; }
.search-box input:focus {
    outline: none;
    border-color: rgba(86, 208, 138, .55);
    box-shadow: 0 0 0 4px rgba(86, 208, 138, .12);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.blog-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8edf5;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
    transition: all .2s ease;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 48, 96, .12);
    border-color: rgba(86, 208, 138, .35);
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f1f5f9;
    border-bottom: 1px solid #e8edf5;
}
.blog-card-content {
    padding: 1.375rem 1.375rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card h3 {
    font-family: "DM Serif Display", Georgia, serif;
    color: #003060;
    font-size: 1.1875rem;
    font-weight: 400;
    margin: 0 0 0.625rem;
    line-height: 1.3;
}
.blog-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color .15s;
}
.blog-card h3 a:hover { color: #45b87a; }
.blog-card p {
    color: #475569;
    font-size: 0.9375rem;
    margin: 0 0 1.125rem;
    line-height: 1.6;
    flex-grow: 1;
}
.blog-card .read-more {
    color: #003060;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.875rem;
    align-self: flex-start;
    border-bottom: 1.5px solid rgba(86, 208, 138, .4);
    padding-bottom: 1px;
    transition: border-color .15s;
}
.blog-card .read-more:hover { border-bottom-color: #56D08A; }
.blog-card .age {
    display: inline-block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.pagination button {
    padding: 0.625rem 1.125rem;
    border: 1.5px solid #e8edf5;
    background: #fff;
    color: #475569;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 700;
    font-family: "DM Sans", system-ui, sans-serif;
    transition: all .15s;
}
.pagination button.active,
.pagination button.current {
    background: linear-gradient(135deg, #003060, #004080);
    color: #fff;
    border-color: #003060;
    box-shadow: 0 2px 8px rgba(0, 48, 96, .2);
}
.pagination button:hover:not(.active):not(.current):not(:disabled) {
    background: #f8fafc;
    border-color: rgba(86, 208, 138, .35);
    color: #003060;
}
.pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: #64748b;
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════
   KLARO Cookie-Modal Styles werden über klaro-pflegepur.css
   von pflegepur.com geladen (PflegePur-Standard)
   ═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   FEHLENDE KLASSEN — Notfall-Erweiterung 26.04.2026
   ═══════════════════════════════════════════════════════ */

/* SECTION + CONTAINER */
.section { padding: 4rem 0; }
.section-lg { padding: 5rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* HERO — jede Page */
.hero {
  background: linear-gradient(135deg, #003060 0%, #004080 50%, #00547a 100%);
  color: #fff !important;
  padding: 4rem 0 4.5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(86, 208, 138, .15) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-content { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.hero h1 {
  font-family: "DM Serif Display", Georgia, serif !important;
  color: #fff !important;
  font-size: clamp(2rem, 5vw, 3.25rem) !important;
  font-weight: 400 !important;
  line-height: 1.1; letter-spacing: -0.015em;
  margin: 0 0 0.85rem !important;
}
.hero-subtitle {
  color: rgba(255, 255, 255, .92) !important;
  font-size: clamp(1rem, 2vw, 1.1875rem);
  font-weight: 500; margin: 0 auto 0.75rem;
  max-width: 680px;
}
.hero-lead, .lead {
  color: rgba(255, 255, 255, .82) !important;
  font-size: clamp(0.95rem, 1.6vw, 1.0625rem);
  line-height: 1.65; max-width: 640px;
  margin: 0 auto 1.5rem;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center; margin: 1.75rem 0 1rem;
}
.hero-cta-meta {
  color: rgba(255, 255, 255, .7);
  font-size: 0.875rem; margin: 0.5rem 0 1rem;
}
.hero-trust, .trust-row {
  display: flex; flex-wrap: wrap; gap: 0.625rem;
  justify-content: center; margin-top: 1.5rem;
}
.hero-trust-item, .trust-item {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(86, 208, 138, .12);
  border: 1px solid rgba(86, 208, 138, .3);
  color: rgba(255, 255, 255, .95) !important;
  padding: 0.4rem 0.875rem; border-radius: 999px;
  font-size: 0.8125rem; font-weight: 600;
}
.hero-trust-item svg, .trust-item svg {
  width: 14px; height: 14px; color: #56D08A;
  flex-shrink: 0;
}

/* ANIMATIONS */
.animate-fade-in-up {
  animation: fadeInUp .6s cubic-bezier(.32, .72, 0, 1) both;
}
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
.delay-3 { animation-delay: .24s; }
.delay-4 { animation-delay: .32s; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* CONTENT-SECTION (bewegung, vorsorge) */
.content-section {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
  margin-bottom: 1.5rem;
}
.content-section h2, .content-section h3 {
  font-family: "DM Sans", system-ui, sans-serif;
  color: #003060;
  font-weight: 700;
  margin: 0 0 1rem;
}
.content-section h2 { font-size: 1.5rem; }
.content-section h3 { font-size: 1.25rem; }
.content-section p { color: #475569; line-height: 1.7; margin: 0 0 1rem; }
.content-section p:last-child { margin-bottom: 0; }
.content-section p strong { color: #003060; }

/* PROFILE-SECTION (ueber-mich) */
.profile-section {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto 3rem;
}
@media (max-width: 768px) {
  .profile-section { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
}
.profile-image {
  width: 100%; max-width: 280px;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 3px solid #fff;
  box-shadow: 0 8px 32px rgba(0, 48, 96, .15), 0 0 0 4px rgba(86, 208, 138, .15);
  margin: 0 auto;
}

/* BACHELOR-BOX (ueber-mich) */
.bachelor-box {
  background: linear-gradient(135deg, rgba(86, 208, 138, .08) 0%, rgba(86, 208, 138, .02) 100%);
  border: 1px solid rgba(86, 208, 138, .35);
  border-radius: 16px;
  padding: 2rem 1.875rem;
  position: relative;
  margin: 2rem auto 3rem;
  max-width: 980px;
  box-shadow: 0 8px 32px rgba(86, 208, 138, .12);
}
.bachelor-box .b-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #56D08A, #45b87a);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #003060; font-size: 22px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(86, 208, 138, .3);
}
.bachelor-box h2, .bachelor-box h3 {
  font-family: "DM Serif Display", Georgia, serif !important;
  color: #003060 !important;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem) !important;
  font-weight: 400 !important;
  margin: 0 0 1rem !important;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.bachelor-box h4 {
  font-family: "DM Sans", system-ui, sans-serif;
  color: #003060;
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}
.bachelor-box p {
  color: #475569 !important;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}
.bachelor-box p:last-child { margin-bottom: 0; }
.bachelor-box p strong { color: #003060; }

/* QUAL-GRID + QUAL-CARD (ueber-mich, ausbildung) */
.qual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 980px; margin: 2rem auto 0;
}
.qual-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
  transition: all .2s;
  position: relative;
}
.qual-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 48, 96, .12);
  border-color: rgba(86, 208, 138, .3);
}
.qual-card .q-icon {
  width: 36px; height: 36px;
  background: rgba(86, 208, 138, .12);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #15803d; font-size: 18px;
  margin-bottom: 0.875rem;
}
.qual-card h3, .qual-card h4 {
  color: #003060;
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  font-family: "DM Sans", system-ui, sans-serif;
}
.qual-card p {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0 0 0.5rem;
}
.qual-card p:last-child { margin-bottom: 0; }

/* STATUS PILLS */
.status {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-top: 0.5rem;
}
.status-done {
  background: rgba(86, 208, 138, .15);
  color: #15803d;
  border: 1px solid rgba(86, 208, 138, .3);
}
.status-running {
  background: rgba(245, 158, 11, .15);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, .3);
}

/* WERTE-GRID + WERT-CARD (ueber-mich) */
.werte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 980px; margin: 2rem auto 0;
}
.wert-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
  transition: all .2s;
}
.wert-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 48, 96, .1);
  border-color: rgba(86, 208, 138, .3);
}
.wert-card .w-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(86, 208, 138, .15), rgba(86, 208, 138, .05));
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #15803d; font-size: 20px;
  margin-bottom: 0.875rem;
}
.wert-card h3, .wert-card h4 {
  color: #003060;
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}
.wert-card p {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA-SECTION (Bottom-of-page Call-to-Action) */
.cta-section {
  background: linear-gradient(135deg, #003060 0%, #004080 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(86, 208, 138, .12) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.cta-section h2 {
  font-family: "DM Serif Display", Georgia, serif;
  color: #fff !important;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400; margin: 0 0 0.75rem;
  position: relative; line-height: 1.2;
}
.cta-section p {
  color: rgba(255, 255, 255, .85) !important;
  max-width: 580px; margin: 0 auto 1.75rem;
  position: relative; line-height: 1.6;
}
.cta-section .hero-cta { position: relative; }

/* STICKY-CTA (Mobile Bottom Bar) */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid #e8edf5;
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 16px rgba(0, 48, 96, .1);
  z-index: 999;
  display: none;
}
@media (max-width: 768px) {
  .sticky-cta { display: flex; gap: 0.5rem; justify-content: center; }
  body { padding-bottom: 70px; }
}
.sticky-cta a {
  flex: 1; max-width: 200px;
  text-align: center;
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
}

/* SECTION-HEADER */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* BUTTON btn-link, btn-set, btn-white-outline-Variants */
.btn-link {
  color: #003060;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(86, 208, 138, .4);
  transition: border-color .15s;
}
.btn-link:hover { border-bottom-color: #56D08A; }
.btn-set {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1rem;
}
.btn-white {
  background: #fff !important;
  color: #003060 !important;
  border: 1.5px solid rgba(255, 255, 255, .3);
}
.btn-white:hover {
  background: #f8fafc !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, .15);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .35);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
}

/* HERO ergänzungen für CTA-Buttons */
.hero .btn { font-size: 1rem; padding: 0.875rem 1.5rem; }

/* hidden-mobile + mb-4 utilities */
@media (max-width: 768px) { .hidden-mobile { display: none !important; } }
.mb-4 { margin-bottom: 1rem; }

/* TRANSPARENCY */
.transparency {
  background: rgba(86, 208, 138, .06);
  border: 1px solid rgba(86, 208, 138, .25);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.5;
  margin-top: 1rem;
}
.transparency strong { color: #003060; }

/* ═══════════════════════════════════════════════════════
   PAGE-SPEZIFISCHE KLASSEN — Welle 2
   seelsorge, haushalt, digitale-hilfen, zuhause,
   online-kurse, kooperationen, partner, flyer-materialien
   ═══════════════════════════════════════════════════════ */

/* SERVICE-GRID (haushalt, seelsorge) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin: 2rem 0;
}
.service-card {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 14px; padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
  transition: all .2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 48, 96, .12);
  border-color: rgba(86, 208, 138, .3);
}
.service-card h3, .service-card h4 {
  color: #003060; font-size: 1.0625rem; font-weight: 700;
  margin: 0 0 0.5rem;
}
.service-card p { color: #475569; font-size: 0.9375rem; line-height: 1.6; margin: 0; }
.service-card .s-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(86,208,138,.15), rgba(86,208,138,.05));
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #15803d; font-size: 20px;
  margin-bottom: 0.875rem;
}

/* SEELSORGE-spezifisch */
.badge-training {
  display: inline-block;
  background: rgba(86, 208, 138, .12);
  color: #15803d; padding: 0.25rem 0.75rem;
  border-radius: 999px; font-size: 0.75rem;
  font-weight: 700; margin-top: 0.5rem;
  border: 1px solid rgba(86, 208, 138, .3);
}
.crisis {
  background: linear-gradient(135deg, rgba(239,68,68,.06), rgba(239,68,68,.02));
  border: 1px solid rgba(239,68,68,.25);
  border-left: 4px solid #ef4444;
  border-radius: 12px; padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.crisis h3, .crisis h4 { color: #b91c1c; margin: 0 0 0.5rem; font-size: 1.0625rem; }
.crisis p { color: #1e293b; margin: 0; font-size: 0.9375rem; line-height: 1.6; }
.crisis a { color: #b91c1c; font-weight: 700; }

/* PRICE-TABLE (seelsorge) */
.price-table {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 14px; padding: 1rem 1.5rem;
  margin: 1.5rem 0; box-shadow: 0 2px 12px rgba(0,48,96,.06);
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.price-row:last-child { border-bottom: none; }
.price-row .label { color: #475569; font-size: 0.9375rem; }
.price-row .price {
  color: #003060; font-weight: 800; font-size: 1.0625rem;
  font-family: "DM Sans", system-ui, sans-serif;
}

/* HAUSHALT — partner-box */
.partner-box {
  background: linear-gradient(135deg, rgba(86,208,138,.08), rgba(86,208,138,.02));
  border: 1px solid rgba(86,208,138,.35);
  border-radius: 16px; padding: 1.75rem;
  margin: 2rem 0;
}
.partner-box h3, .partner-box h4 {
  color: #003060; font-size: 1.125rem; font-weight: 700;
  margin: 0 0 0.75rem;
  font-family: "DM Sans", system-ui, sans-serif;
}
.partner-box p { color: #475569; font-size: 0.9375rem; line-height: 1.65; margin: 0 0 1rem; }
.partner-box a { color: #15803d; font-weight: 700; }

/* DIGITAL-HILFEN — tool-grid + tool-card */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; margin: 2rem 0;
}
.tool-card {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 14px; padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
  transition: all .2s;
  display: flex; flex-direction: column;
}
.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 48, 96, .12);
  border-color: rgba(86, 208, 138, .3);
}
.tool-card .icon, .tool-card .t-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(86,208,138,.15), rgba(86,208,138,.05));
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #15803d; font-size: 22px; margin-bottom: 0.875rem;
}
.tool-card h3, .tool-card h4 {
  color: #003060; font-size: 1.0625rem; font-weight: 700;
  margin: 0 0 0.4rem;
}
.tool-card p { color: #475569; font-size: 0.9375rem; line-height: 1.55; margin: 0 0 1rem; flex: 1; }
.tool-card .btn { align-self: flex-start; margin-top: auto; }

/* NAVIGATOR-BOX (digitale-hilfen) */
.navigator-box {
  background: linear-gradient(135deg, #003060, #004080);
  color: #fff; border-radius: 16px;
  padding: 2rem; margin: 2.5rem 0;
  position: relative; overflow: hidden;
}
.navigator-box::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(86,208,138,.18) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.navigator-box h3, .navigator-box h2 {
  color: #fff !important;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 400; margin: 0 0 0.75rem;
  position: relative;
}
.navigator-box p {
  color: rgba(255,255,255,.85) !important;
  font-size: 0.9375rem; line-height: 1.65;
  margin: 0 0 1.25rem; position: relative;
}
.navigator-box a, .navigator-box .btn {
  position: relative; display: inline-flex;
}

/* ZUHAUSE — app-hero, feat-grid, integration-box */
.app-hero {
  background: linear-gradient(135deg, #003060 0%, #004080 50%, #00547a 100%);
  color: #fff; padding: 4rem 0;
  position: relative; overflow: hidden;
  border-radius: 0;
}
.app-hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(86,208,138,.15) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.app-hero-text {
  position: relative; max-width: 640px;
  margin: 0 auto; text-align: center;
}
.app-hero h1 {
  color: #fff !important;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400; margin: 0 0 0.75rem;
  line-height: 1.1; letter-spacing: -0.015em;
}
.app-hero p { color: rgba(255,255,255,.9); font-size: 1.0625rem; line-height: 1.65; margin: 0 0 1.5rem; }
.app-hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.625rem; justify-content: center;
  margin-top: 1.5rem;
}
.app-hero-badge {
  background: rgba(86,208,138,.12);
  border: 1px solid rgba(86,208,138,.3);
  color: #fff; padding: 0.4rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8125rem; font-weight: 600;
}
.app-cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, #56D08A, #45b87a);
  color: #003060 !important;
  font-weight: 800; padding: 0.875rem 1.5rem;
  border-radius: 12px; text-decoration: none;
  box-shadow: 0 4px 16px rgba(86,208,138,.35);
  transition: all .2s; font-size: 1rem;
}
.app-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(86,208,138,.45);
}
.app-qr {
  display: block; max-width: 180px;
  margin: 1.25rem auto;
  background: #fff; padding: 12px;
  border-radius: 12px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; margin: 2rem 0;
}
.feat-card {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 14px; padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
  transition: all .2s;
}
.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 48, 96, .12);
  border-color: rgba(86, 208, 138, .3);
}
.feat-card .f-icon, .feat-card .icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(86,208,138,.15), rgba(86,208,138,.05));
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #15803d; font-size: 22px; margin-bottom: 0.875rem;
}
.feat-card h3, .feat-card h4 {
  color: #003060; font-size: 1.0625rem; font-weight: 700;
  margin: 0 0 0.4rem;
}
.feat-card p { color: #475569; font-size: 0.9375rem; line-height: 1.55; margin: 0; }

.integration-box {
  background: linear-gradient(135deg, rgba(86,208,138,.08), rgba(86,208,138,.02));
  border: 1px solid rgba(86,208,138,.35);
  border-radius: 16px; padding: 2rem;
  margin: 2rem 0;
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.integration-box .i-icon {
  width: 56px; height: 56px;
  background: #fff; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,48,96,.08);
}
.integration-box h3, .integration-box h4 {
  color: #003060; font-size: 1.125rem; margin: 0 0 0.4rem;
  font-weight: 700;
}
.integration-box p { color: #475569; font-size: 0.9375rem; line-height: 1.55; margin: 0; }

.step-text {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
}
.step-text:last-child { margin-bottom: 0; }

/* ONLINE-KURSE — compare-box, kurs-features, badge-yes */
.compare-box {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 14px; padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 2px 16px rgba(0,48,96,.06);
}
.compare-box h3, .compare-box h4 { color: #003060; margin: 0 0 1rem; font-size: 1.0625rem; }
.kurs-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.875rem; margin: 1.5rem 0;
}
.kurs-feature {
  display: flex; align-items: flex-start; gap: 0.625rem;
  background: rgba(86,208,138,.06);
  border: 1px solid rgba(86,208,138,.2);
  border-radius: 10px; padding: 0.875rem 1rem;
}
.kurs-feature .kf-icon {
  width: 28px; height: 28px;
  background: rgba(86,208,138,.18);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #15803d; font-size: 16px; flex-shrink: 0;
}
.kurs-feature p { margin: 0; font-size: 0.875rem; color: #1e293b; line-height: 1.5; }
.kurs-feature strong { color: #003060; }

.badge-yes {
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: rgba(86,208,138,.15);
  color: #15803d; padding: 0.2rem 0.5rem;
  border-radius: 6px; font-size: 0.75rem;
  font-weight: 700;
}

/* PARTNER, KOOPERATIONEN — partner-card, partner-grid */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin: 2rem 0;
}
.partner-card {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 14px; padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
  transition: all .2s;
  display: flex; flex-direction: column;
}
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 48, 96, .12);
  border-color: rgba(86, 208, 138, .3);
}
.partner-card .header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.partner-card .logo-wrap {
  width: 56px; height: 56px;
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 10px; padding: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.partner-card .logo-wrap img {
  max-width: 100%; max-height: 100%; object-fit: contain;
}
.partner-card h3, .partner-card h4 {
  color: #003060; font-size: 1.0625rem; font-weight: 700;
  margin: 0;
}
.partner-card p { color: #475569; font-size: 0.9375rem; line-height: 1.6; margin: 0 0 1rem; flex: 1; }
.partner-card .btn-set { margin-top: auto; }
.partner-card .btn.green {
  background: linear-gradient(135deg, #56D08A, #45b87a);
  color: #003060;
  border: none; font-weight: 700;
}

.category-title {
  font-family: "DM Serif Display", Georgia, serif;
  color: #003060; font-size: 1.5rem;
  font-weight: 400; margin: 2.5rem 0 1.25rem;
  letter-spacing: -0.01em;
}

.submit-box {
  background: linear-gradient(135deg, rgba(86,208,138,.08), rgba(86,208,138,.02));
  border: 1px solid rgba(86,208,138,.35);
  border-radius: 16px; padding: 2rem;
  text-align: center; margin: 2.5rem 0;
}
.submit-box h3, .submit-box h2 {
  color: #003060; font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400; font-size: 1.5rem;
  margin: 0 0 0.5rem;
}
.submit-box p { color: #475569; font-size: 0.9375rem; line-height: 1.6; margin: 0 0 1.25rem; }

/* FLYER-MATERIALIEN — material-card */
.material-card {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 14px; padding: 1.5rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  box-shadow: 0 2px 16px rgba(0, 48, 96, .06);
  transition: all .2s;
  margin-bottom: 1rem;
}
.material-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 48, 96, .1);
  border-color: rgba(86, 208, 138, .3);
}
.material-card .icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(86,208,138,.15), rgba(86,208,138,.05));
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #15803d; font-size: 24px; flex-shrink: 0;
}
.material-card .body { flex: 1; min-width: 0; }
.material-card h3, .material-card h4 {
  color: #003060; font-size: 1.0625rem; font-weight: 700;
  margin: 0 0 0.4rem;
}
.material-card p { color: #475569; font-size: 0.9375rem; line-height: 1.55; margin: 0 0 0.75rem; }
.material-card.available { border-color: rgba(86,208,138,.4); background: linear-gradient(135deg, rgba(86,208,138,.04), #fff); }
.material-card.available::after {
  content: '✓ Verfügbar';
  display: inline-block; background: rgba(86,208,138,.15);
  color: #15803d; padding: 0.2rem 0.625rem;
  border-radius: 999px; font-size: 0.75rem; font-weight: 700;
  margin-top: 0.5rem;
}

/* KONTAKT-Inline-Klassen brauchen kein page.css */

/* HEADER (allgemein) */
.section-header h2,
.section-header .section-title {
  font-family: "DM Serif Display", Georgia, serif;
  color: #003060;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 400;
  margin: 0 auto 0.75rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.section-header .section-desc, .section-header p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   FIX-WELLE 26.04.2026 — Probleme aus Live-Test
   ═══════════════════════════════════════════════════════ */

/* Bild 1+2: info-box.warning Text-Kontrast (orange auf orange) */
.info-box.warning {
    background: #fffbeb !important;
    border: 1px solid #f59e0b !important;
    border-left: 4px solid #f59e0b !important;
}
.info-box.warning,
.info-box.warning p,
.info-box.warning li {
    color: #1e293b !important;
}
.info-box.warning strong { color: #92400e !important; }
.info-box.warning h3, .info-box.warning h4 { color: #92400e !important; }
.info-box.warning .pg-label,
.info-box.warning > * .pg-label {
    background: rgba(146, 64, 14, .12) !important;
    color: #92400e !important;
    border: 1px solid rgba(245, 158, 11, .35) !important;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 700;
    display: inline-block;
}

/* Bild 3: seelsorge — Mint-Pill "Weiterbildung gestartet" als richtige Card statt Pill */
.badge-training {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(86, 208, 138, .12), rgba(86, 208, 138, .04)) !important;
    color: #15803d !important;
    border: 1px solid rgba(86, 208, 138, .35) !important;
    border-radius: 999px !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    box-shadow: 0 2px 8px rgba(86, 208, 138, .12);
}

/* Bild 4: zuhause app-hero — h1 weiß sichtbar (war dunkel-auf-dunkel) */
.app-hero,
.app-hero * { color: #fff; }
.app-hero h1,
.app-hero h2 {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .15);
}
.app-hero p { color: rgba(255, 255, 255, .92) !important; }

/* Bild 5: zuhause app-hero-badges — Mint-on-Mint Lesbarkeit */
.app-hero-badges .app-hero-badge,
.app-hero .app-hero-badges .app-hero-badge {
    background: rgba(255, 255, 255, .1) !important;
    border: 1px solid rgba(255, 255, 255, .25) !important;
    color: #fff !important;
    backdrop-filter: blur(6px);
}

/* Aber wenn standalone Badges (nicht in Navy-Hero) — Mint-Style */
.feat-grid + * .app-hero-badge,
section:not(.app-hero) .app-hero-badge,
.trust-row .app-hero-badge {
    background: rgba(86, 208, 138, .12) !important;
    border: 1px solid rgba(86, 208, 138, .35) !important;
    color: #15803d !important;
}

/* Bild 6: navigator-box Logo riesig — Logo constraint */
.navigator-box img,
.navigator-box .logo {
    max-width: 80px !important;
    max-height: 80px !important;
    width: auto !important;
    height: auto !important;
    margin-bottom: 1rem;
}
.navigator-box {
    text-align: left;
    padding: 2rem;
}

/* Bild 7: online-kurse tool-card — Buttons + Badges überlappten */
.tool-card,
.tool-grid .tool-card {
    display: flex !important;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch !important;
    padding: 1.5rem !important;
    height: auto;
    min-height: 0;
}
.tool-card .icon, .tool-card .t-icon {
    margin-bottom: 0.875rem;
    align-self: flex-start;
}
.tool-card h3, .tool-card h4 {
    margin: 0 0 0.4rem !important;
}
.tool-card p { margin: 0 0 1rem !important; flex: 1; }
.tool-card .badge-yes,
.tool-card .status,
.tool-card > .badge {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* Bild 7 unten: compare-table mobile-tauglich + besser */
.compare-box .compare-table,
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 0;
    font-size: 0.875rem;
}
.compare-table th,
.compare-table td {
    padding: 0.625rem 0.875rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.compare-table th {
    color: #003060;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #f8fafc;
}
.compare-table td:first-child { color: #003060; font-weight: 700; }
.compare-table .badge-yes {
    background: rgba(86, 208, 138, .15);
    color: #15803d;
    padding: 0.2rem 0.625rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
}

/* Bild 8: ueber-mich profile-image — Layout fixen */
.profile-image {
    position: relative;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 3px solid #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 48, 96, .15), 0 0 0 4px rgba(86, 208, 138, .15);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: 1;
    display: block;
}
.profile-image h2,
.profile-image h3 {
    margin: 0 !important;
    padding: 0.875rem 1rem 0.25rem !important;
    background: rgba(255, 255, 255, .96);
    color: #003060 !important;
    font-family: "DM Serif Display", Georgia, serif !important;
    font-size: 1.25rem !important;
    font-weight: 400 !important;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.005em;
}
.profile-image p {
    margin: 0 !important;
    padding: 0 1rem 1rem !important;
    background: rgba(255, 255, 255, .96);
    color: #475569 !important;
    font-size: 0.8125rem !important;
    text-align: center;
    line-height: 1.3;
}

/* Bild 9: digitale-hilfen — tools.pflegepur.com Vorzeigeseite */
/* Tools-Section zeigt eine kompakte Übersicht aller PflegePur-Tools */
.tools-showcase {
    background: linear-gradient(180deg, #fff, #f8fafc);
    padding: 3rem 0;
}
.tools-showcase-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}
.tools-showcase-header h2 {
    font-family: "DM Serif Display", Georgia, serif;
    color: #003060;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}
.tools-cat {
    margin-bottom: 2rem;
}
.tools-cat-title {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 1rem;
    padding-left: 0.25rem;
}
.tools-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.875rem;
}
.tool-mini {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 1px 4px rgba(0, 48, 96, .04);
}
.tool-mini:hover {
    transform: translateY(-2px);
    border-color: rgba(86, 208, 138, .35);
    box-shadow: 0 6px 16px rgba(0, 48, 96, .1);
    background: linear-gradient(135deg, #fff, rgba(86, 208, 138, .03));
}
.tool-mini .ic {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, rgba(86, 208, 138, .15), rgba(86, 208, 138, .05));
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.tool-mini .body { flex: 1; min-width: 0; }
.tool-mini .name {
    color: #003060;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.2;
    display: block;
    margin-bottom: 2px;
}
.tool-mini .desc {
    color: #64748b;
    font-size: 0.8125rem;
    line-height: 1.4;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tool-mini .arrow {
    color: #56D08A;
    font-size: 18px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: all .2s;
}
.tool-mini:hover .arrow { opacity: 1; transform: translateX(2px); }

/* Bild 10+11: agb/impressum — keine border-bottom unter h2 (kommt von externer style.css) */
.legal-content h2,
.legal-content h2:first-of-type,
.legal-content h2 + *,
section .legal-content h2 {
    border-bottom: none !important;
    border-top: 1px solid #e8edf5 !important;
    text-decoration: none;
    box-shadow: none;
}
.legal-content h2:first-of-type {
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}
.legal-content h2::after,
.legal-content h2::before {
    content: none !important;
    display: none !important;
}

/* Bild 12: Klaro Cookie-Modal — Premium Override (klaro-pflegepur.css überschreiben) */
/* Hard-Override aller Klaro-Klassen mit !important */
.klaro .cookie-modal,
.klaro .context-notice,
.klaro .cookie-notice {
    font-family: "DM Sans", system-ui, sans-serif !important;
}
.klaro .cookie-modal {
    backdrop-filter: blur(8px);
    background: rgba(0, 48, 96, .35) !important;
    padding: 1rem;
    box-sizing: border-box;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow-y: auto !important;
}
.klaro .cookie-modal .cm-modal {
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 24px 80px rgba(0, 48, 96, .3) !important;
    border: none !important;
    overflow: hidden !important;
    color: #1e293b !important;
    width: 100% !important;
    max-width: 580px !important;
    max-height: calc(100vh - 2rem) !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 auto !important;
    inset: auto !important;
    transform: none !important;
    position: relative !important;
}
.klaro .cookie-modal .cm-header {
    background: linear-gradient(180deg, #f8fafc, #fff) !important;
    border-bottom: 1px solid #e8edf5 !important;
    padding: 1.5rem 1.75rem 1rem !important;
    flex-shrink: 0;
}
.klaro .cookie-modal .cm-header h1,
.klaro .cookie-modal .cm-header .title {
    font-family: "DM Serif Display", Georgia, serif !important;
    color: #003060 !important;
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    margin: 0 0 0.5rem !important;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.klaro .cookie-modal .cm-header p,
.klaro .cookie-modal .cm-header .description {
    color: #475569 !important;
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}
.klaro .cookie-modal .cm-body,
.klaro .cookie-modal .cm-services {
    padding: 1.25rem 1.75rem !important;
    flex: 1 1 auto;
    overflow-y: auto;
    background: #fff !important;
}
.klaro .cookie-modal .cm-list-input + .cm-list-label .slider {
    background: #cbd5e1 !important;
    width: 38px !important;
    height: 22px !important;
}
.klaro .cookie-modal .cm-list-input:checked + .cm-list-label .slider,
.klaro .cookie-modal .cm-list-input[type="checkbox"]:checked + .cm-list-label .slider {
    background: linear-gradient(135deg, #56D08A, #45b87a) !important;
    box-shadow: 0 0 0 3px rgba(86, 208, 138, .15) !important;
}
.klaro .cookie-modal .cm-list-label .slider::before {
    background: #fff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .15) !important;
    width: 16px !important;
    height: 16px !important;
}
.klaro .cookie-modal .cm-purpose,
.klaro .cookie-modal .cm-service {
    background: #f8fafc !important;
    border: 1px solid #e8edf5 !important;
    border-radius: 11px !important;
    padding: 1rem 1.125rem !important;
    margin-bottom: 0.625rem !important;
}
.klaro .cookie-modal .cm-purpose:hover,
.klaro .cookie-modal .cm-service:hover {
    border-color: rgba(86, 208, 138, .35) !important;
    background: #fff !important;
}
.klaro .cookie-modal .cm-list-title,
.klaro .cookie-modal .cm-purpose-title {
    color: #003060 !important;
    font-weight: 700 !important;
    font-size: 0.9375rem !important;
}
.klaro .cookie-modal .cm-footer {
    padding: 1rem 1.75rem 1.25rem !important;
    border-top: 1px solid #e8edf5 !important;
    background: #f8fafc !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.625rem !important;
    justify-content: flex-end !important;
    flex-shrink: 0;
}
.klaro .cookie-modal .cm-powered-by,
.klaro .cookie-modal .cm-footer-buttons + p {
    display: none !important;
}
.klaro .cookie-modal .cm-btn,
.klaro .cookie-notice .cm-btn {
    font-family: "DM Sans", system-ui, sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: 10px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all .15s !important;
    line-height: 1.4 !important;
    box-shadow: none !important;
}
.klaro .cookie-modal .cm-btn-success,
.klaro .cookie-notice .cm-btn-success,
.klaro .cookie-modal .cm-btn-accept-all,
.klaro .cookie-notice .cm-btn-accept-all,
.klaro .cookie-modal .cm-btn-accept,
.klaro .cookie-notice .cm-btn-accept {
    background: linear-gradient(135deg, #56D08A, #45b87a) !important;
    color: #003060 !important;
    box-shadow: 0 2px 10px rgba(86, 208, 138, .3) !important;
}
.klaro .cookie-modal .cm-btn-success:hover,
.klaro .cookie-notice .cm-btn-success:hover,
.klaro .cookie-modal .cm-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(86, 208, 138, .4) !important;
}
.klaro .cookie-modal .cm-btn-info,
.klaro .cookie-notice .cm-btn-info,
.klaro .cookie-modal .cm-btn-decline,
.klaro .cookie-notice .cm-btn-decline,
.klaro .cookie-modal .cm-btn-danger,
.klaro .cookie-notice .cm-btn-danger {
    background: #fff !important;
    color: #475569 !important;
    border: 1.5px solid #e8edf5 !important;
}
.klaro .cookie-modal .cm-btn-info:hover,
.klaro .cookie-modal .cm-btn-decline:hover {
    border-color: rgba(86, 208, 138, .35) !important;
    color: #003060 !important;
}
.klaro .cookie-modal a,
.klaro .cookie-notice a {
    color: #003060 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-bottom: 1.5px solid rgba(86, 208, 138, .4) !important;
}
.klaro .cookie-modal a:hover,
.klaro .cookie-notice a:hover {
    border-bottom-color: #56D08A !important;
}

/* Material-Card flyer-materialien — kompletteres Layout */
.material-card .body { flex: 1; min-width: 0; }
.material-card a {
    color: #003060;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(86, 208, 138, .4);
}
.material-card a:hover { border-bottom-color: #56D08A; }

/* FAQ-Box (warum eigentlich .info-box.warning?) — kommt von index.php */
.info-box.warning + .info-box.warning { margin-top: 0.5rem; }

/* ═══════════════════════════════════════════════════════
   DIGITALE HILFEN — Vorzeigeseite für Akquise
   ═══════════════════════════════════════════════════════ */

/* Tools-Cat erweitert */
.tools-cat-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem !important;
    font-weight: 800;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 1rem;
    padding-left: 0.25rem;
}
.tools-cat-count {
    background: rgba(86, 208, 138, .12);
    color: #15803d;
    border: 1px solid rgba(86, 208, 138, .25);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    margin-left: auto;
}

/* B2B-EMBED-CTA */
.b2b-embed-cta {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    background: linear-gradient(135deg, #003060 0%, #004080 50%, #00547a 100%);
    color: #fff;
    border-radius: 20px;
    padding: 3rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 48, 96, .25);
}
.b2b-embed-cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(86, 208, 138, .18) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
@media (max-width: 768px) {
    .b2b-embed-cta {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    .b2b-embed-visual { order: -1; }
}
.b2b-embed-text { position: relative; }
.b2b-embed-text .section-badge {
    background: rgba(86, 208, 138, .18) !important;
    color: #fff !important;
    border: 1px solid rgba(86, 208, 138, .4) !important;
    margin-bottom: 1rem;
    display: inline-block;
}
.b2b-embed-text h2 {
    font-family: "DM Serif Display", Georgia, serif !important;
    color: #fff !important;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem) !important;
    font-weight: 400 !important;
    margin: 0 0 1rem !important;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.b2b-embed-text h2 em {
    color: #56D08A;
    font-style: normal;
}
.b2b-embed-text p {
    color: rgba(255, 255, 255, .85) !important;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 1.25rem;
}
.b2b-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.b2b-bullets li {
    color: rgba(255, 255, 255, .92);
    font-size: 0.9375rem;
    font-weight: 500;
}
.b2b-bullets li::before { display: none; }

/* Mockup als visueller Akzent */
.b2b-embed-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.b2b-mockup {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 255, 255, .08);
    overflow: hidden;
    width: 100%;
    max-width: 360px;
    transform: rotate(-2deg);
    transition: transform .3s ease;
}
.b2b-mockup:hover { transform: rotate(0deg) scale(1.02); }
.b2b-mockup-bar {
    background: #f1f5f9;
    padding: 0.625rem 0.875rem;
    display: flex;
    gap: 0.4rem;
    border-bottom: 1px solid #e2e8f0;
}
.b2b-mockup-bar span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}
.b2b-mockup-bar span:nth-child(1) { background: #ff5f57; }
.b2b-mockup-bar span:nth-child(2) { background: #febc2e; }
.b2b-mockup-bar span:nth-child(3) { background: #28c840; }
.b2b-mockup-body {
    padding: 1.5rem 1.25rem;
    background: #fff;
}
.b2b-mockup-tool {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e8edf5;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
}
.b2b-mockup-icon {
    font-size: 28px;
    margin-bottom: 0.5rem;
}
.b2b-mockup-title {
    color: #003060;
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}
.b2b-mockup-sub {
    color: #64748b;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}
.b2b-mockup-bars {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1rem;
}
.b2b-mockup-bars span {
    height: 8px;
    background: linear-gradient(90deg, #56D08A, #45b87a);
    border-radius: 4px;
    display: block;
    opacity: 0.8;
}
.b2b-mockup-bars span:nth-child(2) { opacity: 0.6; }
.b2b-mockup-bars span:nth-child(3) { opacity: 0.4; }

/* Tools-mini-grid: bei vielen Tools in 3 Spalten auf Desktop */
@media (min-width: 1100px) {
    .tools-mini-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
