/*
Theme Name: OnlineBehandelplan
Theme URI: https://onlinebehandelplan.nl
Description: Digitale behandelplannen voor patiënten en zorgverleners. Overzichtelijk, veilig en altijd beschikbaar.
Version: 1.0.0
Author: SeedInov
Author URI: https://seedinov.com
License: GNU General Public License v2 or later
Text Domain: onlinebehandelplan
*/

/* ── Tokens ── */
:root {
    --onli-primary: #0891B2;
    --onli-primary-dark: #0E7490;
    --onli-primary-light: #22D3EE;
    --onli-primary-50: #ECFEFF;
    --onli-heading: #0f172a;
    --onli-body: #475569;
    --onli-muted: #64748b;
    --onli-border: #e2e8f0;
    --onli-bg-alt: #f8fafb;
    --onli-white: #ffffff;
    --onli-font-h: 'Jost', sans-serif;
    --onli-font-b: 'Raleway', sans-serif;
    --onli-radius: 16px;
    --onli-radius-sm: 12px;
    --onli-radius-xs: 8px;
    --onli-shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --onli-shadow: 0 2px 12px rgba(0,0,0,0.05);
    --onli-shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --onli-shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
    --onli-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --primary: #0891B2;
    --radius: 16px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--onli-font-b); font-size: 1rem; line-height: 1.75; color: var(--onli-body); background: var(--onli-white); letter-spacing: -0.011em; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--onli-primary); text-decoration: none; transition: color 0.2s var(--onli-ease); }
a:hover { color: var(--onli-primary-dark); }
h1, h2, h3, h4, h5, h6 { font-family: var(--onli-font-h); color: var(--onli-heading); line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: 2.75rem; } h2 { font-size: 2rem; } h3 { font-size: 1.5rem; } h4 { font-size: 1.25rem; }

/* ── Layout ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.wrap-narrow { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--onli-bg-alt); }
.section-label { display: inline-block; font-family: var(--onli-font-h); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--onli-primary); margin-bottom: 0.75rem; }
.section-title { font-size: 2.25rem; margin-bottom: 0.5rem; }
.section-desc { color: var(--onli-muted); font-size: 1.1rem; max-width: 560px; }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0.5rem auto 0; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.75rem; border-radius: var(--onli-radius); font-family: var(--onli-font-h); font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.25s var(--onli-ease); text-decoration: none; }
.btn-primary { background: var(--onli-primary); color: #fff; }
.btn-primary:hover { background: var(--onli-primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--onli-shadow); }
.btn-outline { background: transparent; color: var(--onli-primary); border: 2px solid var(--onli-primary); }
.btn-outline:hover { background: var(--onli-primary); color: #fff; }
.btn-white { background: #fff; color: var(--onli-primary); }
.btn-white:hover { background: var(--onli-primary-50); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); color: #fff; }

/* ── Header ── */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); transition: all 0.3s var(--onli-ease); }
.site-header.scrolled { background: #fff; box-shadow: var(--onli-shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; min-height: 72px; gap: 1rem; }
.site-logo { display: flex; align-items: center; gap: 0.5rem; font-family: var(--onli-font-h); font-size: 1.35rem; font-weight: 700; color: var(--onli-heading); text-decoration: none; }
.site-logo svg, .site-logo .logo-icon { color: var(--onli-primary); width: 28px; height: 28px; }
.site-logo .accent { color: var(--onli-primary); }
.main-nav { display: flex; align-items: center; gap: 0.25rem; width: 100%; justify-content: center; padding-bottom: 0.75rem; }
.nav-link { font-family: var(--onli-font-b); font-size: 0.9rem; font-weight: 500; color: var(--onli-muted); text-decoration: none; padding: 0.5rem 1rem; border-radius: var(--onli-radius); transition: all 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--onli-primary); background: var(--onli-primary-50); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--onli-heading); }

/* ── Hero ── */
.hero { background: var(--onli-primary-50); padding: 5rem 0 4rem; position: relative; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: var(--onli-radius); font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; background: var(--onli-primary-50); color: var(--onli-primary); }
.hero-title { font-size: 3.25rem; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 1.25rem;  }
.hero-sub { font-size: 1.15rem; line-height: 1.7; margin-bottom: 2rem; opacity: 0.85; color: var(--onli-muted); max-width: 520px; }
.hero-actions { display: flex; gap: 1rem;  flex-wrap: wrap; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem;  }
.hero-stat { text-align: left; }
.hero-stat-value { font-family: var(--onli-font-h); font-size: 1.75rem; font-weight: 700; color: var(--onli-primary); }
.hero-stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }
.hero-visual-card { background: var(--onli-white); border-radius: var(--onli-radius); padding: 2rem; box-shadow: var(--onli-shadow-md); width: 100%; max-width: 380px; }

/* ── Search (for search-focused hero) ── */
.hero-search { max-width: 560px; margin: 0 auto 1.5rem; }
.hero-search-form { display: flex; background: #fff; border-radius: var(--onli-radius); overflow: hidden; box-shadow: var(--onli-shadow-md); border: 2px solid transparent; transition: border-color 0.3s; }
.hero-search-form:focus-within { border-color: var(--onli-primary); }
.hero-search-input { flex: 1; border: none; outline: none; padding: 1rem 1.5rem; font-size: 1rem; font-family: var(--onli-font-b); }
.hero-search-btn { display: flex; align-items: center; justify-content: center; width: 56px; background: var(--onli-primary); color: #fff; border: none; cursor: pointer; transition: background 0.2s; }
.hero-search-btn:hover { background: var(--onli-primary-dark); }

/* ── Category Pills ── */
.cat-pills { display: flex; gap: 0.75rem; flex-wrap: wrap;  }
.cat-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.25rem; border-radius: var(--onli-radius); font-size: 0.875rem; font-weight: 500; color: var(--onli-body); background: var(--onli-white); border: 1px solid var(--onli-border); text-decoration: none; transition: all 0.2s var(--onli-ease); }
.cat-pill:hover { border-color: var(--onli-primary); color: var(--onli-primary); background: var(--onli-primary-50); }
.cat-pill svg { width: 16px; height: 16px; opacity: 0.6; }

/* ── Cards ── */
.card { background: var(--onli-white); border-radius: var(--onli-radius); overflow: hidden; border: 1px solid var(--onli-border); transition: all 0.3s var(--onli-ease); }
.card:hover { transform: scale(1.02); box-shadow: var(--onli-shadow-md); }
.card-img { width: 100%; height: 220px; object-fit: cover; background: linear-gradient(135deg, #ECFEFF, #22D3EE30); }
.card-body { padding: 1.5rem; }
.card-cat { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--onli-primary); margin-bottom: 0.5rem; }
.card-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
.card-title a { color: var(--onli-heading); text-decoration: none; }
.card-title a:hover { color: var(--onli-primary); }
.card-excerpt { font-size: 0.9rem; color: var(--onli-muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-meta { display: flex; gap: 1rem; margin-top: 1rem; font-size: 0.8rem; color: var(--onli-muted); }

/* ── Article Grid ── */

.articles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.articles-grid .card:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.articles-grid .card:first-child .card-img { min-height: 300px; }
@media (max-width: 768px) { .articles-grid { grid-template-columns: 1fr; } .articles-grid .card:first-child { grid-template-columns: 1fr; } }

/* ── CTA ── */
.cta-section { background: var(--onli-primary-50); border-radius: var(--onli-radius); margin: 0 1.5rem; padding: 4rem; text-align: center; }
.cta-section h2 { color: var(--onli-heading); margin-bottom: 1rem; }
.cta-section p { color: var(--onli-muted); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Footer ── */
.site-footer { background: var(--onli-primary-50); color: var(--onli-heading); padding: 4rem 0 0; border-top: 1px solid var(--onli-border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--onli-border); }
.footer-heading { font-family: var(--onli-font-h); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 1.25rem; color: var(--onli-heading); }
.footer-nav { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a { font-size: 0.9rem; color: var(--onli-muted); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--onli-primary); }
.footer-desc { font-size: 0.9rem; opacity: 0.7; margin-top: 1rem; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.8rem; opacity: 0.5; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: var(--onli-muted); text-decoration: none; }
.footer-legal a:hover { color: var(--onli-primary); }

/* ── Newsletter ── */
.newsletter-form { display: flex; gap: 0.5rem; margin-top: 1rem; }
.newsletter-input { flex: 1; padding: 0.7rem 1rem; border: 1px solid var(--onli-border); border-radius: var(--onli-radius-xs); background: var(--onli-white); color: var(--onli-body); font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
.newsletter-input:focus { border-color: var(--onli-primary); }
.newsletter-btn { padding: 0.7rem 1.25rem; background: var(--onli-primary); color: #fff; border: none; border-radius: var(--onli-radius-xs); font-weight: 600; cursor: pointer; transition: background 0.2s; }
.newsletter-btn:hover { background: var(--onli-primary-dark); }

/* ── Breadcrumbs ── */
.breadcrumbs { padding: 1rem 0; font-size: 0.85rem; color: var(--onli-muted); }
.breadcrumbs a { color: var(--onli-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--onli-primary); }
.breadcrumbs .sep { margin: 0 0.5rem; opacity: 0.4; }

/* ── Single Post ── */
.post-header { padding: 3rem 0 2rem; }
.post-cat { display: inline-block; padding: 0.35rem 0.85rem; border-radius: var(--onli-radius); background: var(--onli-primary-50); color: var(--onli-primary); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; margin-bottom: 1rem; }
.post-title { font-size: 2.5rem; letter-spacing: -0.03em; margin-bottom: 1rem; }
.post-meta { display: flex; gap: 1.5rem; font-size: 0.875rem; color: var(--onli-muted); }
.post-image { width: 100%; height: auto; border-radius: var(--onli-radius); margin-bottom: 2rem; }
.entry-content { font-size: 1.05rem; line-height: 1.85; }
.entry-content h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; }
.entry-content h3 { font-size: 1.35rem; margin: 2rem 0 0.75rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content blockquote { border-left: 4px solid var(--onli-primary-light); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--onli-primary-50); border-radius: 0 var(--onli-radius-xs) var(--onli-radius-xs) 0; font-style: italic; color: var(--onli-body); }
.entry-content a { color: var(--onli-primary); text-decoration: underline; text-underline-offset: 2px; }
.entry-content img { border-radius: var(--onli-radius-sm); margin: 1.5rem 0; }

/* ── Archive ── */
.archive-header { background: var(--onli-primary-50); padding: 3rem 0; margin-bottom: 3rem; }
.archive-title { font-size: 2.25rem;  }
.archive-desc { color: var(--onli-muted); margin-top: 0.5rem; }
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--onli-radius-xs); font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: all 0.2s; }
.pagination a { color: var(--onli-body); border: 1px solid var(--onli-border); }
.pagination a:hover { border-color: var(--onli-primary); color: var(--onli-primary); }
.pagination .current { background: var(--onli-primary); color: #fff; }

/* ── Animations ── */

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(16px); transition: all 0.6s var(--onli-ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(16px); transition: all 0.5s var(--onli-ease); }
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

/* ── Mobile ── */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 999; opacity: 0; transition: opacity 0.3s; }
.mobile-overlay.active { display: block; opacity: 1; }
.mobile-menu { position: fixed; top: 0; right: 0; transform: translateX(100%); width: 300px; height: 100vh; background: #fff; z-index: 1001; transition: transform 0.35s var(--onli-ease); padding: 2rem; }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu .nav-link { display: block; padding: 0.75rem 0; font-size: 1.05rem; color: var(--onli-heading); border-bottom: 1px solid var(--onli-border); }
.mobile-close { background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--onli-heading); position: absolute; top: 1rem; right: 1rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .main-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero .wrap { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; }
    .hero-stats { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    h1, .hero-title { font-size: 2.25rem; }
    h2, .section-title { font-size: 1.75rem; }
    .section { padding: 3.5rem 0; }
    .hero { padding: 4rem 0 3rem; }
    .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    h1, .hero-title { font-size: 1.875rem; }
    .btn { padding: 0.7rem 1.25rem; font-size: 0.875rem; }
    .card-body { padding: 1.25rem; }
}

/* ── Print ── */
@media print {
    .site-header, .site-footer, .cta-section, .mobile-menu, .mobile-overlay { display: none !important; }
    body { color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
}

/* ── A11y ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
:focus-visible { outline: 3px solid var(--onli-primary); outline-offset: 2px; }
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--onli-primary); color: #fff; padding: 0.75rem 1.5rem; border-radius: 0 0 var(--onli-radius-xs) var(--onli-radius-xs); z-index: 9999; }
.skip-link:focus { top: 0; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* ── WP Utilities ── */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1.5rem auto; }


/* Injected: site logo image sizing */
.site-logo .site-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    border-radius: 6px;
}
.site-logo .logo-icon .site-logo-img,
.footer-logo .footer-logo-icon .site-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    margin: 0;
    display: block;
}
/* ==== Injected: Proof (stats + facts) section ==== */
.sv-proof {
    position: relative;
    padding: 6rem 0;
    background: #ECFAFD;
    overflow: hidden;
    isolation: isolate;
}
.sv-proof__bg {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 15% 20%, #0891B222, transparent 42%),
        radial-gradient(circle at 85% 80%, #0891B21a, transparent 42%);
    z-index: -1;
    pointer-events: none;
}
.sv-proof__head {
    max-width: 760px;
    margin: 0 auto 3.5rem !important;
    text-align: center;
}
.sv-proof__eyebrow {
    display: inline-flex !important;
    align-items: center;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    background: #fff;
    color: #0891B2;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #0891B233;
}
.sv-proof__title {
    font-size: clamp(1.8rem, 3.4vw, 2.5rem) !important;
    line-height: 1.15 !important;
    margin: 0 0 1rem !important;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.sv-proof__lede {
    color: #475569 !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

.sv-proof__stats {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.15rem !important;
    margin: 0 0 3rem !important;
    list-style: none;
    padding: 0;
}
.sv-proof__stat {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.35rem 1.2rem;
    border-radius: 18px;
    box-shadow: 0 14px 34px -18px rgba(15,23,42,0.18), 0 2px 6px rgba(15,23,42,0.04);
    border: 1px solid rgba(15,23,42,0.04);
    transition: transform .25s ease, box-shadow .25s ease;
}
.sv-proof__stat:hover { transform: translateY(-3px); box-shadow: 0 20px 42px -18px rgba(15,23,42,0.22); }
.sv-proof__stat-icon {
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px;
    border-radius: 14px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #0891B2, #0891B2cc);
    box-shadow: 0 8px 18px -6px #0891B266;
}
.sv-proof__stat-icon svg { width: 24px !important; height: 24px !important; }
.sv-proof__stat-text {
    display: flex !important;
    flex-direction: column;
    min-width: 0;
}
.sv-proof__stat-n {
    font-family: 'Jost', 'Poppins', system-ui, sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1 !important;
    letter-spacing: -0.02em;
}
.sv-proof__stat-l {
    color: #475569;
    font-size: 0.82rem;
    line-height: 1.35;
    margin-top: 0.25rem;
    font-weight: 500;
}

.sv-proof__facts {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.2rem !important;
    list-style: none;
    padding: 0;
    margin: 0;
}
.sv-proof__fact {
    display: flex !important;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    padding: 1.75rem 1.5rem;
    border-radius: 18px;
    box-shadow: 0 10px 28px -16px rgba(15,23,42,0.18);
    border: 1px solid rgba(15,23,42,0.05);
    transition: transform .25s ease, box-shadow .25s ease;
}
.sv-proof__fact:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(15,23,42,0.22); }
.sv-proof__fact-icon {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px;
    border-radius: 12px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #0891B214;
    color: #0891B2;
}
.sv-proof__fact-icon svg { width: 22px !important; height: 22px !important; }
.sv-proof__fact-body { flex: 1; min-width: 0; }
.sv-proof__fact-body h3 {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    margin: 0 0 0.4rem !important;
    color: #0f172a;
    letter-spacing: -0.01em;
}
.sv-proof__fact-body p {
    color: #475569 !important;
    font-size: 0.93rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

@media (max-width: 1024px) {
    .sv-proof__stats { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 760px) {
    .sv-proof { padding: 4rem 0; }
    .sv-proof__facts { grid-template-columns: 1fr !important; }
}


/* ==== Injected: Over Ons template ==== */
.sv-about-hero {
    padding: 5rem 0 4rem;
    background: #fff;
}
.sv-about-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.sv-about-hero--reverse .sv-about-hero__media { order: -1; }
.sv-about-hero__eyebrow {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: #0891B21a;
    color: #0891B2;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.sv-about-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    line-height: 1.15;
}
.sv-about-hero__lead {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.sv-about-hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.sv-about-hero__cta {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    background: #0891B2;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0891B2;
}
.sv-about-hero__cta--ghost {
    background: transparent;
    color: #0891B2;
}
.sv-about-hero__media img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.sv-about-banner {
    position: relative;
    height: 440px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}
.sv-about-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sv-about-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.15));
}
.sv-about-banner__content {
    position: relative;
    z-index: 1;
    color: #fff;
}
.sv-about-banner__content h1 { color: #fff; margin-bottom: 0.5rem; }
.sv-about-banner__content p { color: rgba(255,255,255,0.92); font-size: 1.15rem; max-width: 640px; }
.sv-about-banner__content .sv-about-hero__eyebrow {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.sv-about-intro {
    padding: 3rem 0;
    background: #fff;
}
.sv-about-intro p {
    max-width: 720px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151;
}

.sv-about-centered {
    padding: 4rem 0;
    text-align: center;
    background: #fff;
}
.sv-about-centered h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    max-width: 800px;
    margin: 0 auto 1rem;
}
.sv-about-centered__media {
    margin: 2.5rem auto;
    max-width: 900px;
}
.sv-about-centered__media img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.sv-about-centered__body {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    text-align: left;
}

.sv-about-values {
    padding: 4rem 0;
    background: #f9fafb;
}
.sv-about-values__title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 2.5rem;
}
.sv-about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.sv-about-value {
    background: #fff;
    padding: 2.25rem 1.75rem;
    border-radius: 18px;
    box-shadow: 0 14px 34px -18px rgba(15,23,42,0.18), 0 2px 6px rgba(15,23,42,0.04);
    border: 1px solid rgba(15,23,42,0.04);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.sv-about-value:hover { transform: translateY(-3px); box-shadow: 0 20px 42px -18px rgba(15,23,42,0.22); }
.sv-about-value__icon {
    width: 56px !important;
    height: 56px !important;
    margin: 0 auto 1.15rem !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, #0891B2, #0891B2cc) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 10px 22px -8px #0891B270 !important;
}
.sv-about-value__icon svg {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    flex-shrink: 0 !important;
    stroke: #fff !important;
    display: block !important;
}
.sv-about-value h3 {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
    margin: 0 0 0.5rem !important;
    color: #0f172a !important;
}
.sv-about-value p {
    color: #475569 !important;
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

.sv-about-content { display: none !important; }

@media (max-width: 768px) {
    .sv-about-hero__grid { grid-template-columns: 1fr; gap: 2rem; }
    .sv-about-hero--reverse .sv-about-hero__media { order: 0; }
    .sv-about-hero__media img { height: 280px; }
    .sv-about-banner { height: 360px; }
    .sv-about-values__grid { grid-template-columns: 1fr; }
}

/* ==== Injected: Category grid + empty state (ArtroseOnline) ==== */
.ob-cat-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.ob-cat-card {
    display: flex !important;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    padding: 1.6rem 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: 0 10px 28px -16px rgba(15,23,42,0.18);
    text-decoration: none !important;
    color: inherit !important;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ob-cat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(8,145,178,0.35);
    box-shadow: 0 20px 42px -18px rgba(8,145,178,0.28);
}
.ob-cat-card__icon {
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #0891B2, #22D3EE);
    box-shadow: 0 10px 22px -8px rgba(8,145,178,0.5);
}
.ob-cat-card__icon svg { width: 22px !important; height: 22px !important; stroke: #fff !important; }
.ob-cat-card__body { flex: 1; min-width: 0; }
.ob-cat-card__title {
    font-size: 1.1rem !important;
    margin: 0 0 0.35rem !important;
    color: #0f172a !important;
    font-weight: 700;
}
.ob-cat-card__desc {
    color: #475569 !important;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin: 0 0 0.85rem !important;
}
.ob-cat-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #0891B2;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.01em;
}
.ob-cat-card__meta svg {
    transition: transform .2s ease;
    flex-shrink: 0;
}
.ob-cat-card:hover .ob-cat-card__meta svg { transform: translateX(4px); }

.ob-empty {
    grid-column: 1 / -1;
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 2px dashed rgba(8,145,178,0.25);
    max-width: 640px;
    margin: 0 auto;
}
.ob-empty__icon {
    width: 68px !important;
    height: 68px !important;
    margin: 0 auto 1.25rem !important;
    border-radius: 20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #0891B2, #22D3EE);
    box-shadow: 0 14px 28px -8px rgba(8,145,178,0.4);
}
.ob-empty__icon svg { width: 32px !important; height: 32px !important; stroke: #fff !important; }
.ob-empty h3 {
    font-size: 1.35rem !important;
    margin: 0 0 0.55rem !important;
    color: #0f172a !important;
}
.ob-empty p {
    color: #475569 !important;
    font-size: 1rem !important;
    line-height: 1.65 !important;
    margin: 0 auto 1.5rem !important;
    max-width: 460px;
}
.ob-empty__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .ob-cat-grid { grid-template-columns: 1fr !important; }
}


/* ==== Injected: Legal pages styling (privacy / voorwaarden / disclaimer) ==== */
.hp-legal-hero {
    padding: 4rem 0 3rem;
    background:
        radial-gradient(circle at 20% 0%, #0891B222, transparent 45%),
        linear-gradient(180deg, #ECFEFF 0%, #FAFAFA 100%);
    text-align: center;
}
.hp-legal-hero .hp-hero__badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    background: #fff;
    color: #0891B2;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px #0891B21f;
    border: 1px solid #0891B233;
}
.hp-legal-hero__title {
    font-size: clamp(2rem, 3.8vw, 2.75rem) !important;
    color: #0f172a !important;
    margin: 0.5rem 0 0.75rem !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em;
}
.hp-legal-hero__sub {
    color: #64748B !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
}
.hp-legal {
    padding: 3.5rem 0 5rem;
    background: #fff;
}
.hp-legal .wrap {
    display: grid !important;
    grid-template-columns: 240px 1fr !important;
    gap: 3rem;
    max-width: 960px;
    align-items: start;
}
.hp-legal__toc {
    position: sticky;
    top: 6rem;
    background: #ECFEFF;
    border: 1px solid #0891B228;
    border-radius: 16px;
    padding: 1.5rem;
}
.hp-legal__toc strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0891B2;
    margin-bottom: 0.85rem;
}
.hp-legal__toc ol { list-style: none; padding: 0 !important; margin: 0; counter-reset: toc; }
.hp-legal__toc ol li { counter-increment: toc; margin-bottom: 0.5rem; font-size: 0.9rem; line-height: 1.35; }
.hp-legal__toc ol li::before {
    content: counter(toc, decimal-leading-zero) ".  ";
    color: #0891B2;
    font-weight: 700;
    font-family: monospace;
    font-size: 0.85rem;
}
.hp-legal__toc a { color: #334155; text-decoration: none; transition: color .2s; }
.hp-legal__toc a:hover { color: #0891B2; }
.hp-legal__body { color: #334155; line-height: 1.75; font-size: 1rem; }
.hp-legal__lede {
    font-size: 1.1rem !important;
    color: #475569 !important;
    padding: 1.25rem 1.5rem;
    background: #FAFAFA;
    border-left: 4px solid #0891B2;
    border-radius: 10px;
    margin: 0 0 2rem !important;
    line-height: 1.65 !important;
}
.hp-legal__body h2 {
    font-size: 1.3rem !important;
    margin: 2.5rem 0 0.85rem !important;
    color: #0f172a !important;
    scroll-margin-top: 6rem;
    line-height: 1.3 !important;
}
.hp-legal__body p { margin: 0 0 1rem !important; color: #334155 !important; line-height: 1.75 !important; }
.hp-legal__body ul { margin: 0 0 1.25rem; padding-left: 1.25rem; }
.hp-legal__body ul li { margin-bottom: 0.5rem; line-height: 1.65; }
.hp-legal__body strong { color: #0f172a; font-weight: 700; }
.hp-legal__body em { color: #0891B2; font-style: normal; font-weight: 600; }
.hp-legal__body a { color: #0891B2; font-weight: 600; }
.hp-legal__body a:hover { text-decoration: underline; }
.hp-legal__alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    border-radius: 12px;
    margin-bottom: 2rem;
    color: #7F1D1D;
}
.hp-legal__alert svg { color: #DC2626; flex-shrink: 0; margin-top: 2px; }
.hp-legal__alert strong { color: #7F1D1D; display: block; margin-bottom: 0.25rem; font-weight: 700; }
.hp-legal__signoff {
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: #ECFEFF;
    border-radius: 12px;
    color: #0891B2 !important;
    font-weight: 600;
    border: 1px dashed #0891B255;
}
@media (max-width: 900px) {
    .hp-legal .wrap { grid-template-columns: 1fr !important; gap: 1.5rem; }
    .hp-legal__toc { position: static; }
}
