/* ============================================================
   pflege.css – Seiten-spezifische Styles für
   rechnungssoftware-pflegedienst.html (Namespace: pf-)
   ============================================================ */

.pf-seo-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    color: #1c2733;
}

/* -----------------------------------------------------------
   INTRO / HERO
   ----------------------------------------------------------- */
.pf-intro {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

.pf-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1f5bb5;
    background: #eaf1fc;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.pf-intro h2 {
    font-size: clamp(26px, 3.6vw, 38px);
    line-height: 1.25;
    margin: 0 0 18px;
    color: #10233f;
}

.pf-intro p {
    font-size: 17px;
    line-height: 1.6;
    color: #3c4a5c;
    margin: 0 auto 22px;
    max-width: 680px;
}

.pf-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.pf-keywords span {
    font-size: 13px;
    font-weight: 600;
    color: #1f5bb5;
    background: #f2f6fd;
    border: 1px solid #d7e4fa;
    border-radius: 999px;
    padding: 6px 12px;
}

/* -----------------------------------------------------------
   ARTICLE PANEL
   ----------------------------------------------------------- */
.pf-seo-box {
    background: #ffffff;
    border: 1px solid #e6ebf2;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(16, 35, 63, 0.06);
    padding: 8px;
}

.pf-article {
    padding: 32px clamp(20px, 4vw, 48px) 44px;
}

.pf-highlight {
    font-size: 16px;
    line-height: 1.65;
    color: #10233f;
    background: linear-gradient(135deg, #eef4fd 0%, #f7fafe 100%);
    border-left: 4px solid #1f5bb5;
    border-radius: 10px;
    padding: 20px 22px;
    margin-bottom: 40px;
}

.pf-block {
    margin-bottom: 40px;
}

.pf-block:last-of-type {
    margin-bottom: 0;
}

.pf-block h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 21px;
    line-height: 1.35;
    color: #10233f;
    margin: 0 0 14px;
}

.pf-block-num {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1f5bb5;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.pf-block p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #3c4a5c;
    margin: 0;
}

.pf-block p strong {
    color: #10233f;
}

/* -----------------------------------------------------------
   FEATURE GRID / CARDS
   ----------------------------------------------------------- */
.pf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.pf-card {
    background: #f9fbfe;
    border: 1px solid #e6ebf2;
    border-radius: 14px;
    padding: 20px 20px 22px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pf-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(16, 35, 63, 0.08);
}

.pf-card h4 {
    font-size: 16px;
    color: #10233f;
    margin: 0 0 8px;
}

.pf-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5a6c;
    margin: 0;
}

/* -----------------------------------------------------------
   CTA
   ----------------------------------------------------------- */
.pf-cta {
    margin-top: 48px;
    text-align: center;
    background: #10233f;
    border-radius: 16px;
    padding: 40px 24px;
    color: #ffffff;
}

.pf-cta h3 {
    font-size: 22px;
    margin: 0 0 10px;
    color: #ffffff;
}

.pf-cta p {
    font-size: 15px;
    line-height: 1.6;
    color: #cdd9ec;
    margin: 0 auto 22px;
    max-width: 520px;
}

.pf-cta a {
    display: inline-block;
    background: #1f5bb5;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 999px;
    transition: background 0.15s ease;
}

.pf-cta a:hover {
    background: #2e6fd1;
}

/* -----------------------------------------------------------
   RESPONSIVE
   ----------------------------------------------------------- */
@media (max-width: 640px) {
    .pf-seo-section {
        padding: 32px 16px 56px;
    }

    .pf-article {
        padding: 24px 16px 32px;
    }

    .pf-block h3 {
        font-size: 19px;
    }

    .pf-grid {
        grid-template-columns: 1fr;
    }
}
