/* ================================================================
   pages.css — Premium Page Styles for Pflegede (v2)
   Creative UI with hero images, accent cards, decorative elements
   ================================================================ */

/* ──────────────────────────────────────────────────
   Premium Page Hero with Image
────────────────────────────────────────────────── */
.pf-page-hero {
    background: linear-gradient(135deg, #062e1f 0%, #0a5743 55%, #0e7a5e 100%);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.pf-page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(110,231,183,.18) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.pf-page-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
/* Dotted pattern overlay */
.pf-page-hero__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: .5;
}
.pf-page-hero__inner {
    position: relative;
    z-index: 2;
}
.pf-page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167,243,208,.25);
    color: #a7f3d0;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.pf-page-hero__badge i { font-size: .9rem; }
.pf-page-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -.02em;
}
.pf-page-hero__title-accent {
    background: linear-gradient(135deg, #6ee7b7 0%, #a7f3d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pf-page-hero__desc {
    font-size: 1.125rem;
    color: rgba(255,255,255,.78);
    max-width: 600px;
    line-height: 1.65;
    margin-bottom: 24px;
}

/* Hero image (right column) */
.pf-page-hero__media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 3.2;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.08);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform .5s;
}
.pf-page-hero__media:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.pf-page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pf-page-hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,87,67,.25) 0%, transparent 60%);
}
.pf-page-hero__media-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    color: #0a5743;
    font-size: .75rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 20px -6px rgba(0,0,0,.2);
    z-index: 2;
}

/* Hero stats inline (optional) */
.pf-page-hero__stats {
    display: flex;
    gap: 28px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.pf-page-hero__stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.85);
    font-size: .875rem;
    font-weight: 500;
}
.pf-page-hero__stat-item i {
    width: 32px;
    height: 32px;
    background: rgba(110,231,183,.15);
    border: 1px solid rgba(167,243,208,.25);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6ee7b7;
    font-size: .85rem;
}

/* Breadcrumb */
.pf-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8125rem;
    color: rgba(255,255,255,.55);
    margin-bottom: 26px;
    flex-wrap: wrap;
}
.pf-breadcrumb a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color .2s;
}
.pf-breadcrumb a:hover { color: #6ee7b7; }
.pf-breadcrumb__sep { opacity: .35; font-size: .7rem; }
.pf-breadcrumb__current { color: rgba(255,255,255,.9); font-weight: 500; }

/* Wave separator */
.pf-page-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
}
.pf-page-hero__wave svg { width: 100%; height: 50px; display: block; }
.pf-page-hero__wave path { fill: #f8fafc; }

/* ──────────────────────────────────────────────────
   Page Body
────────────────────────────────────────────────── */
body { background: #f8fafc; }
.pf-page-body { padding: 64px 0 96px; }

/* ──────────────────────────────────────────────────
   Mid-page Accent Image Card
────────────────────────────────────────────────── */
.pf-accent-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin: 40px 0;
    background: #fff;
    box-shadow: 0 16px 40px -16px rgba(10,87,67,.18);
    border: 1px solid #e5e7eb;
}
.pf-accent-card__image {
    position: relative;
    aspect-ratio: 16 / 6;
    overflow: hidden;
}
.pf-accent-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}
.pf-accent-card:hover .pf-accent-card__image img { transform: scale(1.04); }
.pf-accent-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(6,46,31,.85) 100%);
}
.pf-accent-card__overlay {
    position: absolute;
    bottom: 28px;
    left: 32px;
    right: 32px;
    z-index: 2;
    color: #fff;
}
.pf-accent-card__overlay-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.25);
    color: #a7f3d0;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.pf-accent-card__overlay-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    max-width: 600px;
    line-height: 1.3;
}

/* ──────────────────────────────────────────────────
   Content Card — main wrapper for legal text
────────────────────────────────────────────────── */
.pf-content-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 44px 48px;
    box-shadow: 0 4px 24px -8px rgba(10,87,67,.06);
}

/* ──────────────────────────────────────────────────
   Legal Content Typography
────────────────────────────────────────────────── */
.pf-legal-content {
    font-size: 1rem;
    line-height: 1.78;
    color: #1f2937;
}
.pf-legal-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a5743;
    margin: 2.5rem 0 .875rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px dashed #d1fae5;
}
.pf-legal-content h2:first-child { margin-top: 0; }
.pf-legal-content h2 i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0a5743 0%, #0e7a5e 100%);
    border-radius: 10px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.pf-legal-content h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 .5rem;
}
.pf-legal-content p { margin-bottom: 1.1rem; color: #374151; }
.pf-legal-content ul,
.pf-legal-content ol {
    padding-left: 1.4rem;
    margin-bottom: 1.1rem;
}
.pf-legal-content ul li {
    margin-bottom: .55rem;
    position: relative;
    list-style: none;
    padding-left: .5rem;
}
.pf-legal-content ul li::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: .7em;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #0a5743, #6ee7b7);
    border-radius: 50%;
}
.pf-legal-content ol li { margin-bottom: .55rem; }
.pf-legal-content a { color: #0a5743; text-decoration: underline; text-decoration-color: #6ee7b7; text-underline-offset: 3px; }
.pf-legal-content a:hover { color: #073d2f; text-decoration-color: #0a5743; }
.pf-legal-content strong { color: #111827; font-weight: 600; }

/* Numbered section head */
.pf-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 2.5rem 0 1rem;
    padding-bottom: 14px;
    border-bottom: 2px dashed #d1fae5;
}
.pf-section-head:first-child { margin-top: 0; }
.pf-section-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #0a5743 0%, #0e7a5e 100%);
    color: #fff;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    font-weight: 800;
    box-shadow: 0 6px 14px -4px rgba(10,87,67,.4);
}
.pf-section-title {
    font-size: 1.1875rem;
    font-weight: 700;
    color: #0a5743;
    margin: 0;
    line-height: 1.4;
}

/* ──────────────────────────────────────────────────
   Sidebar
────────────────────────────────────────────────── */
.pf-legal-sidebar {
    position: sticky;
    top: 88px;
}
.pf-sidebar-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 16px -8px rgba(10,87,67,.08);
}
.pf-sidebar-card--accent {
    background: linear-gradient(135deg, #0a5743 0%, #073d2f 100%);
    border: none;
    color: #fff;
}
.pf-sidebar-card--accent .pf-sidebar-card__title { color: rgba(167,243,208,.85); }
.pf-sidebar-card--accent .pf-sidebar-card__title i { color: #6ee7b7; }
.pf-sidebar-card__title {
    font-size: .6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #9ca3af;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pf-sidebar-card__title i { color: #0a5743; font-size: .95rem; }

.pf-sidebar-meta-row { display: flex; flex-direction: column; gap: 14px; }
.pf-sidebar-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pf-sidebar-meta-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a5743;
    font-size: .95rem;
    flex-shrink: 0;
}
.pf-sidebar-card--accent .pf-sidebar-meta-icon {
    background: rgba(110,231,183,.12);
    border: 1px solid rgba(167,243,208,.2);
    color: #6ee7b7;
}
.pf-sidebar-meta-label {
    font-size: .6875rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .06em;
    display: block;
    line-height: 1;
    margin-bottom: 3px;
}
.pf-sidebar-card--accent .pf-sidebar-meta-label { color: rgba(255,255,255,.5); }
.pf-sidebar-meta-value {
    font-size: .9rem;
    font-weight: 600;
    color: #111827;
}
.pf-sidebar-card--accent .pf-sidebar-meta-value { color: #fff; }

/* Sidebar image card */
.pf-sidebar-image-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 12px 30px -12px rgba(10,87,67,.25);
}
.pf-sidebar-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pf-sidebar-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6,46,31,.92) 100%);
}
.pf-sidebar-image-card__caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 2;
}
.pf-sidebar-image-card__caption-eyebrow {
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #6ee7b7;
    margin-bottom: 4px;
}
.pf-sidebar-image-card__caption-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* TOC nav */
.pf-toc-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pf-toc-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8125rem;
    color: #6b7280;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 9px;
    transition: background .15s, color .15s, transform .15s;
    line-height: 1.4;
}
.pf-toc-nav a:hover {
    background: #f0fdf4;
    color: #0a5743;
    transform: translateX(3px);
}
.pf-toc-nav__num {
    width: 22px;
    height: 22px;
    background: #e5e7eb;
    border-radius: 6px;
    font-size: .65rem;
    font-weight: 800;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s, color .15s;
}
.pf-toc-nav a:hover .pf-toc-nav__num { background: #0a5743; color: #fff; }

/* Sidebar related links */
.pf-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pf-sidebar-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8125rem;
    color: #374151;
    text-decoration: none;
    padding: 9px 10px;
    border-radius: 9px;
    transition: background .15s, color .15s, transform .15s;
}
.pf-sidebar-links a:hover {
    background: #f0fdf4;
    color: #0a5743;
    transform: translateX(3px);
}
.pf-sidebar-links i { color: #0a5743; font-size: .75rem; flex-shrink: 0; }

/* ──────────────────────────────────────────────────
   Contact Page
────────────────────────────────────────────────── */
.pf-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 36px;
    align-items: stretch;
}
.pf-contact-card-v2 {
    background: linear-gradient(165deg, #0a5743 0%, #073d2f 100%);
    border-radius: 28px;
    padding: 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.pf-contact-card-v2::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(110,231,183,.18) 0%, transparent 70%);
    border-radius: 50%;
}
.pf-contact-card-v2 > * { position: relative; z-index: 1; }
.pf-contact-card-v2__icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #6ee7b7;
    margin-bottom: 24px;
}
.pf-contact-card-v2__title {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.25;
}
.pf-contact-card-v2__desc {
    font-size: 1rem;
    color: rgba(255,255,255,.75);
    line-height: 1.65;
    margin-bottom: 28px;
}
.pf-contact-email-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
    margin-bottom: 24px;
    text-decoration: none;
    color: inherit;
    transition: background .2s, transform .2s;
}
.pf-contact-email-pill:hover {
    background: rgba(255,255,255,.18);
    color: inherit;
    transform: translateY(-2px);
}
.pf-contact-email-pill__icon {
    width: 44px;
    height: 44px;
    background: #6ee7b7;
    color: #064e3b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.pf-contact-email-pill__label {
    font-size: .7rem;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .07em;
    display: block;
    margin-bottom: 2px;
}
.pf-contact-email-pill__value {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #fff;
}
.pf-contact-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pf-contact-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .9375rem;
    color: rgba(255,255,255,.85);
    line-height: 1.55;
}
.pf-contact-feature-list i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(110,231,183,.18);
    color: #6ee7b7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.pf-contact-card-v2__footnote {
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    line-height: 1.55;
}
.pf-contact-card-v2__footnote a { color: #6ee7b7; }

/* Contact image side */
.pf-contact-visual {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 480px;
    box-shadow: 0 20px 50px -16px rgba(10,87,67,.25);
}
.pf-contact-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pf-contact-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 30%, rgba(6,46,31,.85) 100%);
}
.pf-contact-visual__badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    color: #0a5743;
    font-size: .75rem;
    font-weight: 700;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pf-contact-visual__bottom {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    color: #fff;
    z-index: 2;
}
.pf-contact-visual__bottom h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.pf-contact-visual__bottom p {
    color: rgba(255,255,255,.8);
    margin: 0;
    font-size: .95rem;
    line-height: 1.6;
}

/* ──────────────────────────────────────────────────
   Kontakt Form Card (right side)
────────────────────────────────────────────────── */
.pf-kontakt-form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 16px 40px -16px rgba(10,87,67,.12);
    position: relative;
}
.pf-kontakt-form-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px dashed #d1fae5;
}
.pf-kontakt-form-card__icon {
    width: 54px; height: 54px;
    background: linear-gradient(135deg, #0a5743, #0e7a5e);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.375rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px -4px rgba(10,87,67,.35);
}
.pf-kontakt-form-card__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0a5743;
    margin: 0 0 4px;
}
.pf-kontakt-form-card__subtitle {
    font-size: .8125rem;
    color: #9ca3af;
    margin: 0;
}
.pf-kontakt-field { margin-bottom: 18px; }
.pf-kontakt-field label {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
}
.pf-kontakt-field .req { color: #ef4444; }
.pf-kontakt-input {
    position: relative;
}
.pf-kontakt-input i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
}
.pf-kontakt-input input,
.pf-kontakt-form textarea {
    width: 100%;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 13px 16px 13px 44px;
    font-size: .9375rem;
    color: #111827;
    transition: border-color .2s, background .2s, box-shadow .2s;
    font-family: inherit;
}
.pf-kontakt-form textarea {
    padding: 13px 16px;
    resize: vertical;
    min-height: 110px;
}
.pf-kontakt-input input:focus,
.pf-kontakt-form textarea:focus {
    outline: none;
    border-color: #0a5743;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(10,87,67,.08);
}
.pf-kontakt-input input::placeholder,
.pf-kontakt-form textarea::placeholder { color: #9ca3af; }
.pf-kontakt-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .8125rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 6px 0 22px;
    cursor: pointer;
}
.pf-kontakt-consent input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #0a5743;
    width: 16px; height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}
.pf-kontakt-consent a { color: #0a5743; text-decoration: underline; }
.pf-kontakt-submit {
    width: 100%;
    background: linear-gradient(135deg, #0a5743 0%, #0e7a5e 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 15px 22px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
    box-shadow: 0 10px 24px -6px rgba(10,87,67,.35);
}
.pf-kontakt-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -6px rgba(10,87,67,.45);
}
.pf-kontakt-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 22px;
    font-size: .9rem;
    line-height: 1.5;
}
.pf-kontakt-alert i { font-size: 1.125rem; flex-shrink: 0; margin-top: 1px; }
.pf-kontakt-alert--success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #14532d; }
.pf-kontakt-alert--success i { color: #16a34a; }
.pf-kontakt-alert--error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.pf-kontakt-alert--error i { color: #dc2626; }
.pf-kontakt-input input.is-invalid,
.pf-kontakt-form textarea.is-invalid {
    border-color: #ef4444;
    background: #fef2f2;
}
.pf-kontakt-consent input.is-invalid { outline: 2px solid #ef4444; outline-offset: 2px; }
.pf-kontakt-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.pf-kontakt-submit .spinner-border { width: 18px; height: 18px; border-width: 2px; }

/* ──────────────────────────────────────────────────
   About / Über uns
────────────────────────────────────────────────── */
.pf-about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.pf-about-feature {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pf-about-feature:hover {
    transform: translateY(-4px);
    border-color: #0a5743;
    box-shadow: 0 16px 36px -12px rgba(10,87,67,.2);
}
.pf-about-feature__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a5743;
    font-size: 1.5rem;
}
.pf-about-feature__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}
.pf-about-feature__text {
    font-size: .875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.pf-about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    margin: 50px 0;
}
.pf-about-split--reverse .pf-about-split__media { order: 2; }
.pf-about-split__media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 24px 50px -16px rgba(10,87,67,.22);
}
.pf-about-split__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s;
}
.pf-about-split:hover .pf-about-split__media img { transform: scale(1.05); }
.pf-about-split__media-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    color: #0a5743;
    padding: 7px 14px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pf-about-split__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #0a5743;
    background: #f0fdf4;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.pf-about-split__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 14px;
    line-height: 1.25;
}
.pf-about-split__text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 0;
}

/* Team teaser */
.pf-about-team-teaser {
    background: linear-gradient(135deg, #0a5743 0%, #073d2f 100%);
    border-radius: 24px;
    padding: 40px 44px;
    margin: 40px 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
    overflow: hidden;
}
.pf-about-team-teaser::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(110,231,183,.18) 0%, transparent 70%);
    border-radius: 50%;
}
.pf-about-team-teaser > * { position: relative; z-index: 1; }
.pf-about-team-teaser__label {
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #6ee7b7;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pf-about-team-teaser h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}
.pf-about-team-teaser p {
    color: rgba(255,255,255,.75);
    font-size: .9375rem;
    margin: 0;
    max-width: 480px;
}
.pf-about-team-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6ee7b7;
    color: #064e3b;
    font-size: .9rem;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, transform .2s, box-shadow .2s;
    flex-shrink: 0;
    box-shadow: 0 10px 24px -6px rgba(110,231,183,.4);
}
.pf-about-team-btn:hover {
    background: #a7f3d0;
    color: #064e3b;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -6px rgba(110,231,183,.5);
}

.pf-about-notice {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fde68a;
    border-radius: 18px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: .9375rem;
    color: #78350f;
    line-height: 1.7;
}
.pf-about-notice__icon {
    width: 44px; height: 44px;
    background: #fbbf24;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.125rem;
    flex-shrink: 0;
}
.pf-about-notice strong { color: #78350f; }

/* ──────────────────────────────────────────────────
   Authors Page
────────────────────────────────────────────────── */
.pf-authors-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 44px;
}
.pf-authors-stat {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    transition: border-color .2s, transform .2s;
}
.pf-authors-stat:hover { border-color: #0a5743; transform: translateY(-3px); }
.pf-authors-stat__icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #0a5743;
    font-size: 1.25rem;
    margin: 0 auto 12px;
}
.pf-authors-stat__value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0a5743;
    line-height: 1;
    margin-bottom: 5px;
}
.pf-authors-stat__label {
    font-size: .75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.pf-authors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}
.pf-author-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
    position: relative;
}
.pf-author-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(to right, #0a5743, #6ee7b7, #0a5743);
}
.pf-author-card:hover {
    box-shadow: 0 20px 44px -10px rgba(10,87,67,.18);
    transform: translateY(-4px);
}
.pf-author-card__top {
    background: linear-gradient(165deg, #0a5743 0%, #073d2f 100%);
    padding: 28px 30px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
}
.pf-author-card__top::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(110,231,183,.18) 0%, transparent 70%);
    border-radius: 50%;
}
.pf-author-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6ee7b7 0%, #34d399 100%);
    border: 3px solid rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    font-weight: 800;
    color: #064e3b;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px -4px rgba(0,0,0,.25);
}
.pf-author-card__name {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}
.pf-author-card__role {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(110,231,183,.15);
    border: 1px solid rgba(167,243,208,.25);
    color: #a7f3d0;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 4px 12px;
    border-radius: 100px;
    position: relative;
    z-index: 1;
}
.pf-author-card__body { padding: 24px 30px 28px; }
.pf-author-meta-block { margin-bottom: 16px; }
.pf-author-meta-block:last-child { margin-bottom: 0; }
.pf-author-meta-label {
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #9ca3af;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pf-author-meta-label i { color: #0a5743; font-size: .75rem; }
.pf-author-meta-text {
    font-size: .875rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
}
.pf-author-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pf-author-topic {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid #bbf7d0;
    color: #0a5743;
    font-size: .7rem;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 100px;
}

/* ──────────────────────────────────────────────────
   Process Timeline
────────────────────────────────────────────────── */
.pf-process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.pf-process-list::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 50px;
    bottom: 50px;
    width: 3px;
    background: linear-gradient(to bottom, #0a5743 0%, #34d399 50%, #bbf7d0 100%);
    border-radius: 3px;
}
.pf-process-step {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding-bottom: 28px;
}
.pf-process-step:last-child { padding-bottom: 0; }
.pf-process-num {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #0a5743 0%, #0e7a5e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9375rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 5px #f8fafc, 0 0 0 7px #bbf7d0, 0 8px 20px -4px rgba(10,87,67,.4);
}
.pf-process-content {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px 26px;
    flex: 1;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    position: relative;
}
.pf-process-content::before {
    content: '';
    position: absolute;
    top: 22px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    transform: rotate(45deg);
    transition: border-color .2s;
}
.pf-process-content:hover {
    border-color: #0a5743;
    box-shadow: 0 12px 30px -8px rgba(10,87,67,.15);
    transform: translateX(4px);
}
.pf-process-content:hover::before { border-color: #0a5743; }
.pf-process-content__title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pf-process-content__title i {
    color: #0a5743;
    font-size: 1rem;
    background: #f0fdf4;
    padding: 6px;
    border-radius: 8px;
}
.pf-process-content__text {
    font-size: .9rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}
.pf-process-content__text a { color: #0a5743; }

/* ──────────────────────────────────────────────────
   Sources (Quellen)
────────────────────────────────────────────────── */
.pf-source-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pf-source-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px 24px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pf-source-item:hover {
    border-color: #0a5743;
    box-shadow: 0 14px 32px -10px rgba(10,87,67,.15);
    transform: translateY(-2px);
}
.pf-source-rank {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9375rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 6px 16px -4px rgba(0,0,0,.15);
}
.pf-source-rank--1 { background: linear-gradient(135deg, #0a5743, #0e7a5e); color: #fff; }
.pf-source-rank--2 { background: linear-gradient(135deg, #0e7a5e, #10886b); color: #fff; }
.pf-source-rank--3 { background: linear-gradient(135deg, #10886b, #34d399); color: #fff; }
.pf-source-rank--4 { background: linear-gradient(135deg, #6ee7b7, #34d399); color: #064e3b; }
.pf-source-rank--5 { background: linear-gradient(135deg, #d1fae5, #bbf7d0); color: #064e3b; }
.pf-source-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.pf-source-item__desc {
    font-size: .9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}
.pf-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 3px 10px;
    border-radius: 100px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
}

/* ──────────────────────────────────────────────────
   Hinweis Page
────────────────────────────────────────────────── */
.pf-hinweis-alert {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fde68a;
    border-left: 6px solid #f59e0b;
    border-radius: 18px;
    padding: 32px 36px;
    margin-bottom: 40px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    box-shadow: 0 8px 24px -8px rgba(245,158,11,.18);
}
.pf-hinweis-alert__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 6px 18px -4px rgba(245,158,11,.5);
}
.pf-hinweis-alert__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #78350f;
    margin-bottom: 10px;
}
.pf-hinweis-alert__text {
    font-size: 1rem;
    color: #92400e;
    line-height: 1.7;
    margin: 0;
}
.pf-hinweis-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px 32px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}
.pf-hinweis-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: #d1fae5;
    line-height: 1;
    font-weight: 700;
}
.pf-hinweis-box__title {
    font-size: .8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6b7280;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.pf-hinweis-box__title i { color: #0a5743; }
.pf-hinweis-box__text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.75;
    margin: 0;
    font-style: italic;
    border-left: 3px solid #0a5743;
    padding-left: 18px;
    position: relative;
}

/* ──────────────────────────────────────────────────
   Policy / Pillar Cards
────────────────────────────────────────────────── */
.pf-policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}
.pf-policy-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pf-policy-card:hover {
    border-color: #0a5743;
    box-shadow: 0 14px 32px -10px rgba(10,87,67,.15);
    transform: translateY(-3px);
}
.pf-policy-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a5743;
    font-size: 1.125rem;
    flex-shrink: 0;
}
.pf-policy-card__title {
    font-size: .9375rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}
.pf-policy-card__text {
    font-size: .8125rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
}

/* ──────────────────────────────────────────────────
   Cookie cards
────────────────────────────────────────────────── */
.pf-cookie-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px 36px;
    margin-bottom: 20px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    position: relative;
    overflow: hidden;
}
.pf-cookie-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #0a5743, #6ee7b7);
    opacity: 0;
    transition: opacity .2s;
}
.pf-cookie-card:hover {
    border-color: #0a5743;
    box-shadow: 0 18px 40px -12px rgba(10,87,67,.15);
    transform: translateY(-3px);
}
.pf-cookie-card:hover::before { opacity: 1; }
.pf-cookie-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px dashed #d1fae5;
}
.pf-cookie-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px -4px rgba(0,0,0,.1);
}
.pf-cookie-card__icon--green { background: linear-gradient(135deg, #0a5743, #0e7a5e); color: #fff; }
.pf-cookie-card__icon--yellow { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; }
.pf-cookie-card__icon--blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; }
.pf-cookie-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}
.pf-cookie-card__subtitle {
    font-size: .75rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 2px;
}
.pf-cookie-card__text {
    font-size: .9375rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

/* ──────────────────────────────────────────────────
   Quote/Highlight Block (used on multiple pages)
────────────────────────────────────────────────── */
.pf-quote-block {
    background: linear-gradient(135deg, #0a5743 0%, #073d2f 100%);
    border-radius: 22px;
    padding: 40px 44px;
    color: #fff;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}
.pf-quote-block::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 10rem;
    font-family: Georgia, serif;
    color: rgba(110,231,183,.15);
    line-height: 1;
}
.pf-quote-block__text {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.55;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 1;
    font-style: italic;
}
.pf-quote-block__author {
    margin-top: 16px;
    font-size: .8125rem;
    color: #6ee7b7;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    position: relative;
    z-index: 1;
    font-style: normal;
}

/* ──────────────────────────────────────────────────
   Info Note
────────────────────────────────────────────────── */
.pf-info-note {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: .925rem;
    color: #1e40af;
    line-height: 1.65;
    margin: 24px 0;
}
.pf-info-note__icon {
    width: 32px; height: 32px;
    background: #3b82f6;
    color: #fff;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: .875rem;
    flex-shrink: 0;
}
.pf-info-note a { color: #1d4ed8; font-weight: 600; }

/* Authors intro */
.pf-authors-intro {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #bbf7d0;
    border-radius: 18px;
    padding: 28px 32px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: .9375rem;
    color: #374151;
    line-height: 1.65;
}
.pf-authors-intro__icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #0a5743, #0e7a5e);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Process intro */
.pf-process-intro {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .9375rem;
    color: #4b5563;
}
.pf-process-intro__icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #0a5743, #0e7a5e);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Source intro */
.pf-source-intro {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 28px;
    font-size: .9375rem;
    color: #4b5563;
    line-height: 1.7;
}
.pf-source-intro strong { color: #0a5743; }

/* Page divider */
.pf-page-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #d1fae5, transparent);
    margin: 40px 0;
}

/* ──────────────────────────────────────────────────
   Hero Contact Form (right column of pf-page-hero)
────────────────────────────────────────────────── */
.pf-hero-form {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 22px;
    padding: 28px 28px 24px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
    position: relative;
    overflow: hidden;
}
.pf-hero-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, #0a5743, #6ee7b7, #0a5743);
}
.pf-hero-form__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    padding-bottom: 16px;
    border-bottom: 2px dashed #d1fae5;
}
.pf-hero-form__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0a5743, #0e7a5e);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px -4px rgba(10,87,67,.4);
}
.pf-hero-form__eyebrow {
    font-size: .6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #0a5743;
    margin-bottom: 2px;
}
.pf-hero-form__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1.15;
}
.pf-hero-form__sub {
    font-size: .8125rem;
    color: #6b7280;
    margin: 0 0 16px;
    line-height: 1.5;
}
.pf-hero-form__form { display: flex; flex-direction: column; gap: 10px; }
.pf-hero-form__field {
    position: relative;
}
.pf-hero-form__field > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: .95rem;
    pointer-events: none;
}
.pf-hero-form__field input,
.pf-hero-form__field textarea {
    width: 100%;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 11px 14px 11px 40px;
    font-size: .875rem;
    color: #111827;
    transition: border-color .2s, background .2s, box-shadow .2s;
    font-family: inherit;
}
.pf-hero-form__field--textarea textarea {
    padding: 11px 14px;
    resize: vertical;
    min-height: 70px;
}
.pf-hero-form__field input:focus,
.pf-hero-form__field textarea:focus {
    outline: none;
    border-color: #0a5743;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(10,87,67,.08);
}
.pf-hero-form__field input.is-invalid,
.pf-hero-form__field textarea.is-invalid {
    border-color: #ef4444;
    background: #fef2f2;
}
.pf-hero-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .75rem;
    color: #6b7280;
    line-height: 1.45;
    margin: 4px 0 6px;
    cursor: pointer;
}
.pf-hero-form__consent input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #0a5743;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.pf-hero-form__consent a { color: #0a5743; text-decoration: underline; }
.pf-hero-form__submit {
    width: 100%;
    background: linear-gradient(135deg, #0a5743 0%, #0e7a5e 100%);
    color: #fff;
    border: none;
    border-radius: 11px;
    padding: 13px 18px;
    font-size: .9375rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 10px 24px -6px rgba(10,87,67,.4);
}
.pf-hero-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -6px rgba(10,87,67,.5);
}
.pf-hero-form__submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.pf-hero-form__submit .spinner-border { width: 16px; height: 16px; border-width: 2px; }
.pf-hero-form__trust {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
    font-size: .7rem;
    color: #6b7280;
    font-weight: 500;
}
.pf-hero-form__trust span { display: inline-flex; align-items: center; gap: 5px; }
.pf-hero-form__trust i { color: #0a5743; }

/* Inline alert override for hero form (more compact than kontakt page version) */
.pf-page-hero #kontaktFormMessage.pf-kontakt-alert {
    margin: 0 0 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: .8125rem;
}

/* Hero form mobile spacing */
@media (max-width: 991px) {
    .pf-hero-form { margin-top: 32px; }
}

/* ──────────────────────────────────────────────────
   Pflegegrade Table
────────────────────────────────────────────────── */
.pf-pg-table-wrap {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 28px -12px rgba(10,87,67,.12);
    margin-bottom: 24px;
}
.pf-pg-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: .9375rem;
}
.pf-pg-table thead th {
    background: linear-gradient(135deg, #0a5743 0%, #073d2f 100%);
    color: #fff;
    padding: 16px 20px;
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    text-align: left;
    border-bottom: 2px solid #064e3b;
}
.pf-pg-table thead th:first-child { padding-left: 24px; }
.pf-pg-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid #f1f5f9;
    color: #1f2937;
    vertical-align: middle;
}
.pf-pg-table tbody td:first-child { padding-left: 24px; }
.pf-pg-table tbody tr:last-child td { border-bottom: none; }
.pf-pg-table tbody tr:hover td { background: #f0fdf4; }
.pf-pg-table tbody tr:nth-child(odd) td { background: #fafbfc; }
.pf-pg-table tbody tr:nth-child(odd):hover td { background: #f0fdf4; }
.pf-pg-table__source {
    padding: 12px 24px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    font-size: .8125rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pf-pg-table__source i { color: #0a5743; }

/* PG Chips (reusable from front-page style) */
.pf-pg-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .04em;
    color: #fff;
    box-shadow: 0 4px 10px -2px rgba(0,0,0,.15);
}
.pf-pg-chip--1 { background: linear-gradient(135deg, #94a3b8, #64748b); }
.pf-pg-chip--2 { background: linear-gradient(135deg, #0a5743, #0e7a5e); }
.pf-pg-chip--3 { background: linear-gradient(135deg, #0e7a5e, #10886b); }
.pf-pg-chip--4 { background: linear-gradient(135deg, #10886b, #34d399); color: #064e3b; }
.pf-pg-chip--5 { background: linear-gradient(135deg, #d97706, #ea580c); }



/* ──────────────────────────────────────────────────
   Ratgeber — 4 Themen Cards
────────────────────────────────────────────────── */
.pf-ratgeber-themen {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}
.pf-ratgeber-thema {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 26px 22px 22px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .2s, transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
    text-align: center;
    align-items: center;
}
.pf-ratgeber-thema::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, #0a5743, #6ee7b7);
    opacity: 0;
    transition: opacity .25s;
}
.pf-ratgeber-thema:hover {
    transform: translateY(-5px);
    border-color: #0a5743;
    color: inherit;
    box-shadow: 0 22px 44px -12px rgba(10,87,67,.2);
}
.pf-ratgeber-thema:hover::before { opacity: 1; }
.pf-ratgeber-thema__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a5743;
    font-size: 1.625rem;
    margin-bottom: 6px;
    transition: background .25s, color .25s;
}
.pf-ratgeber-thema:hover .pf-ratgeber-thema__icon {
    background: linear-gradient(135deg, #0a5743, #0e7a5e);
    color: #fff;
}
.pf-ratgeber-thema__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}
.pf-ratgeber-thema__desc {
    font-size: .8125rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}
.pf-ratgeber-thema__cta {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #0a5743;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    transition: gap .2s;
}
.pf-ratgeber-thema:hover .pf-ratgeber-thema__cta { gap: 9px; }

@media (max-width: 991px) {
    .pf-ratgeber-themen { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .pf-ratgeber-themen { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────
   Ratgeber — Newsletter CTA
────────────────────────────────────────────────── */
.pf-newsletter-cta {
    background: linear-gradient(135deg, #062e1f 0%, #0a5743 60%, #0e7a5e 100%);
    border-radius: 24px;
    padding: 32px 36px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}
.pf-newsletter-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(110,231,183,.18) 0%, transparent 70%);
    border-radius: 50%;
}
.pf-newsletter-cta > * { position: relative; z-index: 1; }
.pf-newsletter-cta__icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6ee7b7;
    font-size: 1.75rem;
    flex-shrink: 0;
}
.pf-newsletter-cta__content { flex: 1; }
.pf-newsletter-cta__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
}
.pf-newsletter-cta__text {
    font-size: .9375rem;
    color: rgba(255,255,255,.78);
    line-height: 1.55;
    margin: 0;
}
.pf-newsletter-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6ee7b7;
    color: #064e3b;
    font-size: .9rem;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 10px 24px -6px rgba(110,231,183,.4);
}
.pf-newsletter-cta__btn:hover {
    background: #a7f3d0;
    color: #064e3b;
    transform: translateY(-2px);
}
@media (max-width: 767px) {
    .pf-newsletter-cta {
        flex-direction: column;
        text-align: center;
        padding: 28px;
        gap: 18px;
    }
}

/* ──────────────────────────────────────────────────
   Ratgeber — Latest Posts Grid
────────────────────────────────────────────────── */
.pf-ratgeber-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 24px;
}
.pf-ratgeber-post {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    transition: border-color .2s, transform .25s, box-shadow .25s;
}
.pf-ratgeber-post:hover {
    transform: translateY(-4px);
    border-color: #0a5743;
    box-shadow: 0 22px 44px -12px rgba(10,87,67,.18);
}
.pf-ratgeber-post__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.pf-ratgeber-post__link:hover { color: inherit; }
.pf-ratgeber-post__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f0fdf4;
}
.pf-ratgeber-post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}
.pf-ratgeber-post:hover .pf-ratgeber-post__thumb img { transform: scale(1.05); }
.pf-ratgeber-post__thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #0a5743;
    font-size: 3rem;
}
.pf-ratgeber-post__body { padding: 20px 22px 22px; }
.pf-ratgeber-post__date {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #0a5743;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.pf-ratgeber-post__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
    line-height: 1.35;
}
.pf-ratgeber-post__excerpt {
    font-size: .875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 12px;
}
.pf-ratgeber-post__cta {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #0a5743;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.pf-ratgeber-post:hover .pf-ratgeber-post__cta { gap: 10px; }

@media (max-width: 991px) {
    .pf-ratgeber-posts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .pf-ratgeber-posts { grid-template-columns: 1fr; }
}


/* ──────────────────────────────────────────────────
   Leistungen Table Row (icon + name)
────────────────────────────────────────────────── */
.pf-leist-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.pf-leist-row i {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #0a5743;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}

/* ──────────────────────────────────────────────────
   Leistungen Cards (6 services grid)
────────────────────────────────────────────────── */
.pf-leist-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}
.pf-leist-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 26px 24px 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .2s, transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}
.pf-leist-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, #0a5743, #6ee7b7);
    opacity: 0;
    transition: opacity .25s;
}
.pf-leist-card:hover {
    transform: translateY(-5px);
    border-color: #0a5743;
    color: inherit;
    box-shadow: 0 22px 44px -12px rgba(10,87,67,.2);
}
.pf-leist-card:hover::before { opacity: 1; }
.pf-leist-card__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a5743;
    font-size: 1.375rem;
    margin-bottom: 4px;
    transition: background .25s, color .25s;
}
.pf-leist-card:hover .pf-leist-card__icon {
    background: linear-gradient(135deg, #0a5743, #0e7a5e);
    color: #fff;
}
.pf-leist-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.25;
}
.pf-leist-card__desc {
    font-size: .875rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}
.pf-leist-card__cta {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #0a5743;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    transition: gap .2s;
}
.pf-leist-card:hover .pf-leist-card__cta { gap: 10px; }

@media (max-width: 991px) {
    .pf-leist-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .pf-leist-cards { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────
   Pflegegrade Cards (5-grade grid)
────────────────────────────────────────────────── */
.pf-pg-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}
.pf-pg-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px 22px 22px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .2s, transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}
.pf-pg-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(to right, #0a5743, #6ee7b7);
}
.pf-pg-card--1::before { background: linear-gradient(to right, #94a3b8, #cbd5e1); }
.pf-pg-card--5::before { background: linear-gradient(to right, #d97706, #fb923c); }
.pf-pg-card:hover {
    transform: translateY(-5px);
    border-color: #0a5743;
    color: inherit;
    box-shadow: 0 22px 44px -12px rgba(10,87,67,.2);
}
.pf-pg-card__chip {
    display: inline-block;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #0a5743;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 4px 11px;
    border-radius: 100px;
    width: fit-content;
    margin-top: 4px;
}
.pf-pg-card--1 .pf-pg-card__chip { background: #f1f5f9; border-color: #cbd5e1; color: #475569; }
.pf-pg-card--5 .pf-pg-card__chip { background: #fff7ed; border-color: #fed7aa; color: #c2410c; }
.pf-pg-card__title {
    font-size: 1.0625rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1.2;
}
.pf-pg-card__desc {
    font-size: .8125rem;
    color: #6b7280;
    line-height: 1.45;
    margin: 0;
    flex: 1;
}
.pf-pg-card__amount {
    font-size: .875rem;
    font-weight: 700;
    color: #0a5743;
    padding-top: 10px;
    border-top: 1px dashed #d1fae5;
}
.pf-pg-card--1 .pf-pg-card__amount { color: #475569; }
.pf-pg-card--5 .pf-pg-card__amount { color: #c2410c; }
.pf-pg-card__cta {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #0a5743;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.pf-pg-card:hover .pf-pg-card__cta { gap: 10px; }

/* ──────────────────────────────────────────────────
   Weg-zum-Pflegegrad steps
────────────────────────────────────────────────── */
.pf-pg-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}
.pf-pg-step {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px 22px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, transform .25s, box-shadow .25s;
}
.pf-pg-step:hover {
    border-color: #0a5743;
    color: inherit;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -12px rgba(10,87,67,.18);
}
.pf-pg-step__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a5743;
    font-size: 1.25rem;
    transition: background .2s;
}
.pf-pg-step:hover .pf-pg-step__icon {
    background: linear-gradient(135deg, #0a5743, #0e7a5e);
    color: #fff;
}
.pf-pg-step__body { flex: 1; }
.pf-pg-step__title {
    font-size: .9375rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 3px;
    line-height: 1.3;
}
.pf-pg-step__text {
    font-size: .8125rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}
.pf-pg-step__arrow {
    color: #9ca3af;
    font-size: 1rem;
    transition: color .2s, transform .2s;
}
.pf-pg-step:hover .pf-pg-step__arrow {
    color: #0a5743;
    transform: translateX(4px);
}

/* ──────────────────────────────────────────────────
   FAQ Accordion
────────────────────────────────────────────────── */
.pf-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}
.pf-faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.pf-faq-item[open] {
    border-color: #0a5743;
    box-shadow: 0 12px 28px -10px rgba(10,87,67,.15);
}
.pf-faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    list-style: none;
    line-height: 1.4;
}
.pf-faq-item__q::-webkit-details-marker { display: none; }
.pf-faq-item__q:hover { color: #0a5743; }
.pf-faq-item__chevron {
    color: #9ca3af;
    transition: transform .25s, color .2s;
    flex-shrink: 0;
}
.pf-faq-item[open] .pf-faq-item__chevron {
    transform: rotate(180deg);
    color: #0a5743;
}
.pf-faq-item__a {
    padding: 0 22px 20px;
    font-size: .9375rem;
    color: #4b5563;
    line-height: 1.7;
    border-top: 1px dashed #d1fae5;
    padding-top: 18px;
    margin: 0 22px;
}
.pf-faq-item__a strong { color: #0a5743; }
.pf-faq-item__a a { color: #0a5743; text-decoration: underline; }

/* Responsive Pflegegrade page */
@media (max-width: 991px) {
    .pf-pg-cards { grid-template-columns: repeat(3, 1fr); }
    .pf-pg-card:nth-child(4),
    .pf-pg-card:nth-child(5) { grid-column: span 1; }
    .pf-pg-card:nth-child(4) { grid-column-start: 1; }
    .pf-pg-steps { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .pf-pg-table { font-size: .8125rem; }
    .pf-pg-table thead th,
    .pf-pg-table tbody td { padding: 12px 14px; }
    .pf-pg-table thead th:first-child,
    .pf-pg-table tbody td:first-child { padding-left: 16px; }
    .pf-pg-cards { grid-template-columns: repeat(2, 1fr); }
    .pf-pg-card:nth-child(5) { grid-column: span 2; }
    .pf-faq-item__q { font-size: .9375rem; padding: 14px 18px; gap: 12px; }
    .pf-faq-item__a { padding: 14px 18px; margin: 0 18px; font-size: .875rem; }
}
@media (max-width: 575px) {
    .pf-pg-cards { grid-template-columns: 1fr; }
    .pf-pg-card:nth-child(5) { grid-column: span 1; }
    .pf-pg-table-wrap { overflow-x: auto; }
    .pf-pg-table { min-width: 540px; }
}

/* Section heading helper */
.pf-h-section {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a5743;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.pf-h-section-sub {
    font-size: .9375rem;
    color: #6b7280;
    margin-bottom: 24px;
}

/* ──────────────────────────────────────────────────
   Responsive
────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .pf-page-hero { padding: 60px 0 70px; }
    .pf-page-hero__media { display: none; }
    .pf-legal-sidebar { position: static; margin-top: 40px; }
    .pf-page-body { padding: 40px 0 70px; }
    .pf-content-card { padding: 28px 26px; }
    .pf-contact-grid { grid-template-columns: 1fr; }
    .pf-contact-visual { min-height: 320px; }
    .pf-about-feature-grid { grid-template-columns: 1fr; }
    .pf-about-split { grid-template-columns: 1fr; gap: 24px; }
    .pf-about-split--reverse .pf-about-split__media { order: -1; }
    .pf-about-team-teaser { flex-direction: column; align-items: flex-start; padding: 28px; }
    .pf-policy-grid { grid-template-columns: 1fr; }
    .pf-authors-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .pf-quote-block { padding: 28px; }
}
@media (max-width: 767px) {
    .pf-page-hero__title { font-size: 2rem; }
    .pf-contact-card-v2 { padding: 28px; }
    .pf-authors-grid { grid-template-columns: 1fr; }
    .pf-process-list::before { left: 22px; }
    .pf-process-num { width: 46px; height: 46px; }
    .pf-hinweis-alert { flex-direction: column; gap: 14px; padding: 24px; }
    .pf-cookie-card { padding: 22px; }
    .pf-cookie-card__head { flex-wrap: wrap; }
    .pf-source-item { flex-direction: column; gap: 12px; }
}
@media (max-width: 575px) {
    .pf-authors-hero-stats { grid-template-columns: 1fr; }
    .pf-accent-card__overlay { left: 20px; right: 20px; bottom: 20px; }
    .pf-accent-card__overlay-title { font-size: 1.125rem; }
}
