/* ============================================
   Physiotherapie Bektas – Hauptstylesheet
   ============================================ */

:root {
    --primary:       #7AA108;
    --primary-dark:  #5E7B06;
    --primary-light: #97C40B;
    --accent:        #F0F7D9;
    --white:         #ffffff;
    --text:          #1a1a1a;
    --text-muted:    #555555;
    --bg:            #ffffff;
    --bg-alt:        #f9fafb;
    --border:        #e5e7eb;
    --shadow:        0 1px 4px rgba(0,0,0,0.08);
    --shadow-lg:     0 4px 24px rgba(0,0,0,0.12);
    --radius:        8px;
    --radius-lg:     12px;
    --transition:    0.25s ease;
    --max-width:     1180px;
    --nav-height:    80px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* ── Container ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
}

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 700; }
p { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(122,161,8,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-white:hover { background: rgba(255,255,255,0.9); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── Section Styles ── */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-green {
    background: var(--primary);
    color: var(--white);
}
.section-green h2, .section-green p { color: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary);
    margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; color: var(--text-muted); }

/* ── Navigation ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-height);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 58px; width: auto; object-fit: contain; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
    background: var(--accent);
}
.nav-cta { margin-left: 16px; }

.nav-mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-mobile-contact {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--white);
    flex-shrink: 0;
}
.nav-mobile-contact:hover { background: var(--primary-dark); color: var(--white); }
.nav-mobile-contact .svg-icon { width: 19px; height: 19px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hero (Startseite) ── */
.hero {
    min-height: calc(100vh - var(--nav-height));
    background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.50);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 0 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p  { color: rgba(255,255,255,0.88); font-size: 1.15rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Page Hero (Unterseiten) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0 64px;
    text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }

/* ── Service Cards (Übersichtsseite Dienstleistungen) ── */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

/* ── Bild-Galerie (z.B. "Praxis in Bildern") ── */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.gallery-item {
    flex: 1 1 280px;
    max-width: calc(33.333% - 11px);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}
@media (max-width: 1024px) {
    .gallery-item { max-width: calc(50% - 8px); }
}
@media (max-width: 600px) {
    .gallery-item { max-width: 100%; flex-basis: 100%; }
}
.service-card {
    flex: 1 1 300px;
    max-width: calc(33.333% - 19px);
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body {
    padding: 24px;
}
.service-card-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card-body p  { font-size: 0.88rem; line-height: 1.6; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}
.service-link:hover { color: var(--primary-dark); }

/* ── About Preview ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-image {
    aspect-ratio: 4/3;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content .label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary);
    margin-bottom: 16px;
}
.about-content h2 { margin-bottom: 20px; }
.about-content p  { margin-bottom: 16px; }
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 28px 0;
}
.stat-item { }
.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.03em;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* ── CTA Banner ── */
.cta-banner {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.82); margin-bottom: 36px; font-size: 1.05rem; }
.cta-buttons   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact Strip ── */
.contact-strip { background: var(--bg-alt); padding: 48px 0; }
.contact-strip-inner {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 32px;
}
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon {
    width: 44px; height: 44px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-text h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 3px; font-weight: 600; }
.contact-item-text p, .contact-item-text a { font-weight: 600; color: var(--text); font-size: 0.95rem; margin: 0; }
.contact-item-text a:hover { color: var(--primary); }

/* ── Contact Page ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(122,161,8,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; }

/* Honeypot – für echte Nutzer unsichtbar */
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Datenschutz-Checkbox */
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 6px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--primary); }
.form-check label { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; font-weight: 400; }
.form-check a { color: var(--primary); text-decoration: underline; }

.contact-info-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.contact-info-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 40px; height: 40px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem; flex-shrink: 0;
}
.contact-info-text h4 { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 3px; font-weight: 600; }
.contact-info-text p, .contact-info-text a { color: var(--text); font-weight: 500; margin: 0; }
.contact-info-text a:hover { color: var(--primary); }
.map-container { margin-top: 20px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-container iframe { display: block; width: 100%; height: 280px; }

/* ── Service Detail Articles (ehem. Blog) ── */
.article-wrapper { max-width: 760px; margin: 0 auto; }
.article-wrapper h2 { font-size: 1.65rem; margin: 44px 0 14px; }
.article-wrapper h3 { font-size: 1.25rem; margin: 32px 0 10px; color: var(--primary-dark); }
.article-wrapper p  { color: var(--text); font-size: 1rem; line-height: 1.75; margin-bottom: 20px; }
.article-wrapper ul { list-style: none; padding-left: 0; margin-bottom: 24px; }
.article-wrapper ul li {
    color: var(--text-muted);
    font-size: 0.97rem;
    padding: 6px 0 6px 22px;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.article-wrapper ul li::before { content: '→'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.article-wrapper ul li:last-child { border-bottom: none; }
.article-meta {
    display: flex;
    gap: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

/* Keep blog-article as alias */
.blog-article { max-width: 760px; margin: 0 auto; }
.blog-article h2 { font-size: 1.65rem; margin: 44px 0 14px; }
.blog-article h3 { font-size: 1.25rem; margin: 32px 0 10px; color: var(--primary-dark); }
.blog-article p  { color: var(--text); font-size: 1rem; line-height: 1.75; margin-bottom: 20px; }
.blog-article ul { list-style: none; padding-left: 0; margin-bottom: 24px; }
.blog-article ul li {
    color: var(--text-muted);
    padding: 6px 0 6px 22px;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.blog-article ul li::before { content: '→'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.blog-article ul li:last-child { border-bottom: none; }
.blog-article .article-meta {
    display: flex;
    gap: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.blog-cta {
    background: var(--accent);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin-top: 56px;
}
.blog-cta h3 { color: var(--primary-dark); margin-bottom: 12px; }
.blog-cta p  { margin-bottom: 20px; }

/* ── Karriere ── */
.karriere-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 28px;
}
.job-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}
.job-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.job-card .job-icon { font-size: 2.2rem; margin-bottom: 14px; }
.job-card h3 { margin-bottom: 6px; }
.job-type {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.job-card ul { list-style: none; margin-bottom: 24px; }
.job-card ul li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 4px 0 4px 18px;
    position: relative;
}
.job-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: bold; }
.apply-note { font-size: 0.76rem; color: var(--text-muted); text-align: center; margin-top: 10px; }

.initiative-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    color: white;
    margin-top: 48px;
}
.initiative-card h2 { color: white; margin-bottom: 16px; }
.initiative-card p  { color: rgba(255,255,255,0.82); margin-bottom: 32px; font-size: 1.05rem; }

/* ── Über uns ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 28px;
}
.team-card {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
}
.team-photo {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: var(--bg-alt);
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--primary-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
}
.team-card h3 { margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 32px;
}
.value-item { text-align: center; padding: 32px 20px; }
.value-icon {
    width: 60px; height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.6rem;
}
.value-item h3 { margin-bottom: 8px; }

/* ── Alert ── */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 18px; font-size: 0.88rem; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── Footer ── */
.site-footer {
    background: #111111;
    color: rgba(255,255,255,0.65);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
}
.footer-brand p { margin-top: 16px; font-size: 0.88rem; line-height: 1.7; }
.footer-logo { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-col h4 {
    color: white;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--primary-light); }
.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
}

/* ── Scroll-to-Top (nur mobil) ── */
.scroll-top-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
    pointer-events: none;
}
.scroll-top-btn:hover { background: var(--primary-dark); }
.scroll-top-btn svg { width: 22px; height: 22px; }

@media (max-width: 768px) {
    .scroll-top-btn { display: flex; }
    .scroll-top-btn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
}

/* ── Custom SVG Icons ── */
.svg-icon { width: 22px; height: 22px; display: block; flex-shrink: 0; }
.contact-item-icon .svg-icon,
.contact-info-icon .svg-icon { width: 22px; height: 22px; }
.value-icon { color: var(--primary); }
.value-icon .svg-icon { width: 30px; height: 30px; }
.job-icon { color: var(--primary); line-height: 0; }
.job-icon .svg-icon { width: 42px; height: 42px; }
.btn .svg-icon { width: 18px; height: 18px; }

/* ── Misc ── */
.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 40px 0;
}

/* Rechtstexte (Impressum / Datenschutz / Nutzungsbedingungen) */
.legal-content h2 { font-size: 1.4rem; margin: 8px 0 12px; }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--primary-dark); }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { list-style: disc; padding-left: 22px; margin: 0 0 16px; }
.legal-content ul li { margin-bottom: 5px; color: var(--text-muted); }
.legal-content a { color: var(--primary); text-decoration: underline; word-break: break-word; }
.neue-badge {
    display: inline-block;
    background: #F59E0B;
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 6px;
    vertical-align: middle;
}

/* ── Cookie-Consent ── */
.pbk-cc-banner {
    position: fixed;
    bottom: 16px; left: 16px; right: 16px;
    max-width: 1180px;
    margin: 0 auto;
    z-index: 2147483640;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
}
.pbk-cc-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.pbk-cc-text { flex: 1 1 340px; }
.pbk-cc-text h4 { font-size: 1rem; margin-bottom: 6px; }
.pbk-cc-text p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
.pbk-cc-text a { color: var(--primary); text-decoration: underline; }
.pbk-cc-btns { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.pbk-cc-btn {
    padding: 11px 20px; border-radius: var(--radius);
    font-size: 0.85rem; font-weight: 700; cursor: pointer;
    border: 2px solid var(--primary); white-space: nowrap;
    font-family: inherit; transition: all var(--transition);
}
.pbk-cc-btn-accept { background: var(--primary); color: #fff; }
.pbk-cc-btn-accept:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.pbk-cc-btn-reject { background: var(--white); color: var(--primary); }
.pbk-cc-btn-reject:hover { background: var(--accent); }
.pbk-cc-btn-settings { background: none; border-color: transparent; color: var(--text-muted); text-decoration: underline; padding: 11px 8px; }
.pbk-cc-btn-settings:hover { color: var(--text); }

/* Settings-Dialog */
.pbk-cc-backdrop {
    position: fixed; inset: 0; z-index: 2147483645;
    background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center; padding: 20px;
}
.pbk-cc-modal {
    background: var(--white); border-radius: var(--radius-lg);
    max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.pbk-cc-modal-head { padding: 26px 26px 0; }
.pbk-cc-modal-head h3 { margin-bottom: 8px; }
.pbk-cc-modal-head p { font-size: 0.88rem; margin: 0; }
.pbk-cc-modal-body { padding: 8px 26px; }
.pbk-cc-row {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 18px 0; border-bottom: 1px solid var(--border);
}
.pbk-cc-row:last-child { border-bottom: none; }
.pbk-cc-row-text { flex: 1; }
.pbk-cc-row-text h4 { font-size: 0.92rem; margin-bottom: 4px; }
.pbk-cc-row-text p { font-size: 0.82rem; margin: 0; line-height: 1.5; }
.pbk-cc-modal-foot {
    padding: 18px 26px 26px; display: flex; gap: 10px; flex-wrap: wrap;
    border-top: 1px solid var(--border);
}
.pbk-cc-modal-foot .pbk-cc-btn { flex: 1 1 auto; text-align: center; }

/* Toggle-Switch */
.pbk-switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.pbk-switch input { opacity: 0; width: 0; height: 0; }
.pbk-slider {
    position: absolute; inset: 0; cursor: pointer;
    background: #cbd5e1; border-radius: 999px; transition: var(--transition);
}
.pbk-slider::before {
    content: ''; position: absolute; height: 20px; width: 20px;
    left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: var(--transition);
}
.pbk-switch input:checked + .pbk-slider { background: var(--primary); }
.pbk-switch input:checked + .pbk-slider::before { transform: translateX(20px); }
.pbk-switch input:disabled + .pbk-slider { background: var(--primary-light); opacity: 0.7; cursor: not-allowed; }

/* Consent-Platzhalter (z. B. Google Maps) */
.pbk-consent-ph {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; gap: 12px; padding: 32px 24px;
    background: var(--bg-alt); border: 1px dashed var(--border);
    border-radius: var(--radius-lg); min-height: 280px;
}
.pbk-consent-ph p { font-size: 0.86rem; max-width: 380px; margin: 0; }

@media (max-width: 600px) {
    .pbk-cc-btns { width: 100%; }
    .pbk-cc-btn-accept, .pbk-cc-btn-reject { flex: 1; text-align: center; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .service-card  { max-width: calc(50% - 14px); }
    .about-grid    { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
    .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: white;
        flex-direction: column;
        padding: 20px 24px;
        gap: 2px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .section     { padding: 60px 0; }
    .page-hero   { padding: 60px 0 48px; }
    .hero        { min-height: 85vh; }

    .service-card  { max-width: 100%; flex-basis: 100%; }
    .contact-strip-inner { grid-template-columns: 1fr; gap: 20px; }
    .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cta-buttons   { flex-direction: column; align-items: center; }
    .hero-buttons  { flex-direction: column; align-items: center; }
    .about-stats   { grid-template-columns: 1fr 1fr; }
    .karriere-grid { grid-template-columns: 1fr; }
}

/* Kontakt-Icon nur auf echten Touch-/Mobilgeräten zeigen – nicht bei einem
   schmalen Desktop-Browserfenster oder hoher Zoom-Stufe (pointer:fine bleibt dort) */
@media (max-width: 768px) and (pointer: coarse) {
    .nav-mobile-contact { display: flex; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .nav-logo img { height: 46px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .initiative-card { padding: 32px 20px; }
    .contact-info-card { padding: 22px; }
    .blog-cta { padding: 28px 20px; }
}
