/* redesign homepage */
html {
    overflow-x: clip;
}

body {
    overflow-x: clip;
    max-width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #fefefe;
    color: #2C2E36;
    line-height: 1.6;
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================================
   FONT OPTIMIZATION - Font Display Swap
   ======================================== */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-display: swap;
  font-weight: 900;
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: 'Roboto Slab';
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: 'Roboto Slab';
  font-display: swap;
  font-weight: 700;
}

/* ========================================
   HERO SECTION - FULL WIDTH + MOBILE FIRST
   ======================================== */

.nvsp-hero-fullwidth {
    /* 100% i.p.v. 100vw: voorkomt overflow door scrollbar-breedte (~17px) */
    width: 100% !important;
    position: static;
    left: auto;
    transform: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    box-sizing: border-box;
    /* Negatieve margin compenseert Astroid section padding boven de hero */
    margin-top: -1px;
}

.hero-container {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Afbeelding standaard verborgen op mobiel en tablet */
.hero-image {
    display: none;
}

/* Blauw blok: mobiel full-width */
.hero-content {
    background: linear-gradient(135deg, #0000CD 0%, #1e3a8a 100%);
    color: white;
    padding: 40px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.hero-content h1 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
    color: white !important;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-content > p {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: white;
}

.hero-checklist {
    margin-bottom: 20px;
}

.hero-checklist p {
    margin: 10px 0;
    font-size: 0.95em;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    word-wrap: break-word;
    min-width: 0;
    color: white;
}

.hero-checklist p span {
    min-width: 0;
    overflow-wrap: break-word;
    color: white;
}

.hero-checklist i {
    color: #90EE90;
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── TABLET (768px–1199px): afbeelding verborgen, alleen blauw blok ── */
@media (min-width: 768px) and (max-width: 1199px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none !important;
    }

    .hero-content {
        padding: 50px 60px 40px 60px;
        border-radius: 0;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 1.85em;
    }

    .hero-content > p {
        font-size: 1.05em;
        max-width: 680px;
    }

    .hero-checklist p {
        font-size: 1em;
    }
}

/* ── DESKTOP (1200px+ én min-height 900px): foto + blauw blok naast elkaar ── */
@media (min-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .hero-image {
        display: block !important;
        width: 100%;
        min-height: 400px;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)),
            url('/images/nvsp/vrouwenhand-water-verlichting-sjogren-sicca.webp');
        background-size: cover;
        background-position: center;
        margin: 0;
        margin-bottom: 20px;
    }

    .hero-content {
        padding: 40px 40px 50px 40px;
        height: auto;
        min-height: 380px;
        overflow: visible;
        border-radius: 0;
        border-bottom-left-radius: 8px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content > p {
        font-size: 1.05em;
    }

    .btn-donate-mobile {
        display: none;
    }
}

/* TRUST BAR */
.trust-bar {
    background: #fefefe;
    padding: 20px 0;
    border-bottom: 3px solid #006400;
    width: 100%;
    margin-bottom: 0;
}

.trust-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.trust-item strong {
    color: #0000CD;
    font-size: 2em;
    font-weight: 700;
    display: block;
}

.trust-item span {
    color: #2C2E36;
    font-size: 0.9em;
}

.trust-divider {
    color: #e0e0e0;
    font-size: 1.5em;
}

@media (max-width: 480px) {
    .trust-divider {
        display: none;
    }

    .trust-content {
        gap: 15px;
    }
}

/* URGENT NOTICE */
.urgent-notice {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 18px 20px;
    margin: 0;
    display: none;
}

.urgent-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.urgent-notice i {
    color: #856404;
    font-size: 1.5em;
    margin-top: 3px;
    flex-shrink: 0;
}

.urgent-notice strong {
    color: #856404;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.urgent-notice p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

.urgent-notice a {
    color: #856404;
    text-decoration: underline;
}

/* SECTIONS */
section {
    padding: 50px 20px;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: #0000CD;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #2C2E36;
    font-size: 1.1em;
    margin-bottom: 40px;
}

/* AUDIENCE CARDS */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.audience-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: left;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    min-height: 48px;
}

.audience-card:hover {
    border-color: #0000CD;
    box-shadow: 0 8px 24px rgba(0, 0, 205, 0.15);
    transform: translateY(-5px);
}

.audience-card h3 {
    color: #0000CD;
    margin-bottom: 12px;
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1.3;
}

.audience-card p {
    color: #2C2E36;
    font-size: 1em;
    line-height: 1.6;
}

i.fa.fa-solid.fa-people-group {
    color: #006400;
}

/* PILLAR PAGES */
section.pillar-section {
    border-radius: 10px;
}

.pillar-section {
    background: linear-gradient(135deg, #0000CD 0%, #1e3a8a 100%);
    padding: 50px 20px;
    margin-top: 40px;
    overflow: hidden !important;
}

.pillar-section .section-content {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.pillar-section h2 {
    text-align: center;
    color: white;
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: 700;
}

.pillar-section > .section-content > p {
    text-align: center;
    color: white;
    font-size: 1.1em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.pillar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    width: 100%;
    box-sizing: border-box;
}

.pillar-card {
    background: white;
    border: 3px solid #0000CD;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.pillar-card:hover {
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
    border-color: #006400;
    box-shadow: 0 8px 24px rgba(0, 100, 0, 0.2);
    transform: translateY(-8px);
}

.pillar-card i {
    font-size: 3em;
    color: #0000CD;
    margin-bottom: 15px;
    display: block;
}

.pillar-card:hover i {
    color: #006400;
}

.pillar-card h3 {
    color: #0000CD;
    margin-bottom: 12px;
    font-size: 1.5em;
    font-weight: 700;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.pillar-card p {
    color: #2C2E36;
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

.pillar-arrow {
    color: #006400;
    font-size: 1.1em;
    font-weight: 600;
}

/* SJOGREN INFO BOX */
.sjogren-info {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

section.bg-light {
    border-radius: 10px;
}

.sjogren-info h2 {
    color: #0000CD;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.sjogren-info p {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 18px;
}

.sjogren-info strong {
    color: #0000CD;
}

.read-more-link {
    color: #006400;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more-link:hover {
    text-decoration: underline;
}

/* E-E-A-T GRID */
.eeat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.eeat-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.eeat-item i {
    font-size: 2.5em;
    color: #006400;
    flex-shrink: 0;
    width: 50px;
}

.eeat-item h3 {
    color: #0000CD;
    margin-bottom: 8px;
    font-size: 1.2em;
}

.eeat-item p {
    color: #2C2E36;
    line-height: 1.7;
    font-size: 0.98em;
}

/* NEWS GRID */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.news-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.news-image {
    width: 100%;
    height: 180px;
    background-color: #0000CD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5em;
    aspect-ratio: 16 / 9;
}

.news-content {
    padding: 20px;
}

.news-date {
    color: #006400;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 8px;
}

.news-card h3 {
    color: #0000CD;
    font-size: 1.25em;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card p {
    color: #2C2E36;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-card a {
    color: #006400;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-card a:hover {
    text-decoration: underline;
}

/* TESTIMONIAL */
.testimonial {
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
    border-left: 5px solid #006400;
    border-radius: 10px;
    padding: 30px 25px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.testimonial-quote {
    font-size: 1.15em;
    font-style: italic;
    color: #2C2E36;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-quote::before {
    content: '"';
    font-size: 1.8em;
    color: #0000CD;
    margin-right: 5px;
}

.testimonial-author {
    color: #006400;
    font-weight: 600;
    font-size: 1.05em;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #0000CD 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.cta-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: white;
}

.cta-section > p {
    font-size: 1.1em;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: block;
    width: 100%;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    min-height: 48px;
    font-size: 16px;
    box-sizing: border-box;
}

.btn-primary {
    background: #006400;
    color: white !important;
}

.cta-section .btn-primary {
    color: #0000CD !important;
}

.cta-section .btn-primary:hover {
    color: #0000CD !important;
}

.btn-primary:hover {
    background: #004d00;
    color: white !important;
}

.btn-secondary {
    background: white;
    color: #0000CD;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white !important;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
}

section.cta-section {
    border-radius: 10px;
}

/* BACKGROUND VARIATIONS */
.bg-white { background: #fefefe; }
.bg-light { background: #f8f9fa; }
.bg-gradient { background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%); }

/* ========================================
   TABLET (768px+)
   ======================================== */
@media (min-width: 768px) {
    .btn {
        width: auto;
        display: inline-block;
    }

    .trust-content {
        gap: 40px;
    }

    .trust-item strong {
        font-size: 1.8em;
    }

    .section-title {
        font-size: 2.2em;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .eeat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .news-image {
        height: 200px;
    }
}

/* ========================================
   DESKTOP (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    section {
        padding: 50px 20px;
    }

    .audience-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pillar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .eeat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial {
        padding: 40px;
    }

    .testimonial-quote {
        font-size: 1.25em;
    }
}

/* ========================================
   LARGE DESKTOP (1400px+)
   ======================================== */
@media (min-width: 1400px) {
    .hero-content h1 {
        font-size: 2.2em;
    }
}

/* ========================================
   MOBIEL (max 768px)
   ======================================== */
@media screen and (max-width: 768px) {
    h2 {
        font-size: 1.5rem !important;
        margin-bottom: 15px;
    }

    .btn, .button, a.read-more {
        display: block;
        text-align: center;
        padding: 15px 20px;
        margin-bottom: 10px;
    }

    .entry-content .btn,
    .post-content .btn,
    .wp-block-button__link {
        display: block !important;
        width: 100% !important;
        text-align: center;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    #astroid-backtotop {
        display: inline-block !important;
        width: 45px !important;
        height: 45px !important;
        line-height: 45px;
        padding: 0 !important;
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        z-index: 9999;
    }
}

@media screen and (max-width: 480px) {
    .container, .section-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

/* ============================================================
   NVSP ZORGPROFESSIONALS — Gedeelde CSS
   Prefix: .nvsp-zp-
   Versie: 1.1 — maart 2026
   ============================================================ */

.nvsp-zp-wrap {
  --zp-primary:       #0000CD;
  --zp-primary-light: #ededff;
  --zp-accent:        #006400;
  --zp-accent-light:  #e8f5e8;
  --zp-text:          #2C2E36;
  --zp-text-muted:    #5a5d6a;
  --zp-bg:            #fefefe;
  --zp-bg-soft:       #f5f6fa;
  --zp-border:        #e2e4ea;
  --zp-warning:       #b45309;
  --zp-warning-bg:    #fef3c7;
  --zp-radius-sm:     6px;
  --zp-radius-md:     10px;
  --zp-radius-lg:     14px;
  --zp-shadow-sm:     2px 3px 8px rgba(0,0,0,.07), 1px 2px 4px rgba(0,0,0,.04);
  --zp-shadow-md:     4px 6px 16px rgba(0,0,0,.11);
  --zp-gap:           24px;
  --zp-row-gap:       44px;
  font-family:        inherit;
}

.nvsp-zp-wrap *,
.nvsp-zp-wrap *::before,
.nvsp-zp-wrap *::after {
  box-sizing: border-box;
}

.nvsp-zp-hero {
  background: var(--zp-bg);
  border: 0.5px solid var(--zp-border);
  border-radius: var(--zp-radius-lg);
  box-shadow: var(--zp-shadow-sm);
  padding: 40px 40px 32px;
  margin-bottom: var(--zp-row-gap);
}

.nvsp-zp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--zp-accent);
  background: var(--zp-accent-light);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 18px;
  letter-spacing: .2px;
}

.nvsp-zp-hero h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--zp-text);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -.3px;
}

.nvsp-zp-hero-intro {
  font-size: 16px;
  color: var(--zp-text-muted);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 28px;
}

.nvsp-zp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 24px;
  border-top: 0.5px solid var(--zp-border);
}

.nvsp-zp-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--zp-bg-soft);
  border: 0.5px solid var(--zp-border);
  border-radius: var(--zp-radius-md);
}

.nvsp-zp-trust-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--zp-radius-sm);
  background: var(--zp-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nvsp-zp-trust-icon svg {
  width: 16px;
  height: 16px;
}

.nvsp-zp-trust-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--zp-text);
  line-height: 1.4;
}

.nvsp-zp-trust-sub {
  font-size: 11px;
  color: var(--zp-text-muted);
  margin-top: 2px;
  display: block;
}

.nvsp-zp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--zp-gap);
  margin-bottom: var(--zp-row-gap);
}

.nvsp-zp-cards-asym {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--zp-gap);
  align-items: stretch;
  margin-bottom: var(--zp-row-gap);
}

.nvsp-zp-card {
  background: var(--zp-bg);
  border: 0.5px solid var(--zp-border);
  border-radius: var(--zp-radius-lg);
  box-shadow: var(--zp-shadow-sm);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .18s, box-shadow .18s, transform .15s;
  text-decoration: none;
  cursor: pointer;
}

.nvsp-zp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--zp-primary);
  opacity: 0;
  transition: opacity .18s;
  border-radius: var(--zp-radius-lg) var(--zp-radius-lg) 0 0;
}

.nvsp-zp-card:hover {
  border-color: var(--zp-primary);
  box-shadow: var(--zp-shadow-md);
  transform: translateY(-2px);
}

.nvsp-zp-card:hover::before {
  opacity: 1;
}

.nvsp-zp-card--green::before {
  background: var(--zp-accent);
}

.nvsp-zp-card--green:hover {
  border-color: var(--zp-accent);
}

.nvsp-zp-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.nvsp-zp-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: var(--zp-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nvsp-zp-card-icon svg {
  width: 20px;
  height: 20px;
}

.nvsp-zp-card-icon--green {
  background: var(--zp-accent-light);
}

.nvsp-zp-badge {
  font-size: 10px;
  font-weight: 600;
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: .2px;
  white-space: nowrap;
}

.nvsp-zp-badge--blue {
  background: var(--zp-primary-light);
  color: var(--zp-primary);
}

.nvsp-zp-badge--green {
  background: var(--zp-accent-light);
  color: var(--zp-accent);
}

.nvsp-zp-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--zp-text);
  margin-bottom: 7px;
  line-height: 1.3;
}

.nvsp-zp-card-desc {
  font-size: 16px;
  color: var(--zp-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.nvsp-zp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--zp-primary);
  text-decoration: none;
  margin-top: auto;
}

.nvsp-zp-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform .15s;
}

.nvsp-zp-card:hover .nvsp-zp-card-link svg {
  transform: translateX(3px);
}

.nvsp-zp-card-link--green {
  color: var(--zp-accent);
}

.nvsp-zp-cta-card {
  background: var(--zp-primary);
  border: none;
  border-radius: var(--zp-radius-lg);
  box-shadow: 3px 4px 20px rgba(0,0,205,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 40px;
  text-align: center;
}

.nvsp-zp-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 420px;
}

.nvsp-zp-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.nvsp-zp-cta-icon svg {
  width: 22px;
  height: 22px;
}

.nvsp-zp-cta-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}

.nvsp-zp-cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin: 0;
}

.nvsp-zp-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--zp-primary);
  border-radius: 8px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 8px;
  transition: box-shadow .15s, transform .12s;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.nvsp-zp-cta-btn:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  transform: translateY(-1px);
  color: var(--zp-primary);
  text-decoration: none;
}

.nvsp-zp-expertise-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--zp-gap);
  margin-bottom: var(--zp-row-gap);
  align-items: stretch;
}

.nvsp-zp-expertise-main {
  background: var(--zp-bg);
  border: 0.5px solid var(--zp-border);
  border-radius: var(--zp-radius-lg);
  box-shadow: var(--zp-shadow-sm);
  padding: 28px 32px;
}

.nvsp-zp-expertise-main h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--zp-text);
  margin-bottom: 12px;
  letter-spacing: -.2px;
}

.nvsp-zp-expertise-main p {
  font-size: 16px;
  color: var(--zp-text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.nvsp-zp-expertise-main p:last-child {
  margin-bottom: 0;
}

.nvsp-zp-expertise-main strong {
  color: var(--zp-text);
  font-weight: 600;
}

.nvsp-zp-sidebar {
  background: var(--zp-bg-soft);
  border: 0.5px solid var(--zp-border);
  border-radius: var(--zp-radius-lg);
  box-shadow: var(--zp-shadow-sm);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
}

.nvsp-zp-sidebar-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--zp-text-muted);
  margin-bottom: 12px;
  flex-shrink: 0;
}

.nvsp-zp-sidebar-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 9px 0;
  border-bottom: 0.5px solid var(--zp-border);
  text-decoration: none;
  min-height: 0;
}

.nvsp-zp-sidebar-link:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.nvsp-zp-sidebar-link-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--zp-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.nvsp-zp-sidebar-link-name::after {
  content: '↗';
  font-size: 10px;
  color: var(--zp-primary);
  flex-shrink: 0;
}

.nvsp-zp-sidebar-link-name:hover {
  text-decoration: underline;
  color: var(--zp-primary);
}

.nvsp-zp-sidebar-link-sub {
  font-size: 11px;
  color: var(--zp-text-muted);
  margin-top: 2px;
  display: block;
}

.nvsp-zp-email-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--zp-gap);
  margin-bottom: var(--zp-gap);
}

.nvsp-zp-email-card {
  background: var(--zp-bg-soft);
  border: 0.5px solid var(--zp-border);
  border-radius: var(--zp-radius-lg);
  padding: 20px 22px;
  box-shadow: var(--zp-shadow-sm);
}

.nvsp-zp-email-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--zp-radius-sm);
  background: var(--zp-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.nvsp-zp-email-icon svg {
  width: 16px;
  height: 16px;
}

.nvsp-zp-email-role {
  font-size: 11px;
  color: var(--zp-text-muted);
  margin-bottom: 4px;
  display: block;
}

.nvsp-zp-email-addr {
  font-size: 16px;
  font-weight: 400;
  color: var(--zp-primary);
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
}

.nvsp-zp-email-addr:hover {
  text-decoration: underline;
  color: var(--zp-primary);
}

.nvsp-zp-email-desc {
  font-size: 16px;
  color: var(--zp-text-muted);
  line-height: 1.55;
}

.nvsp-zp-subpage-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}

.nvsp-zp-toc {
  position: sticky;
  top: 100px;
  background: var(--zp-bg-soft);
  border: 0.5px solid var(--zp-border);
  border-radius: var(--zp-radius-lg);
  padding: 20px 18px;
}

.nvsp-zp-toc-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--zp-primary);
  text-decoration: none;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--zp-border);
  width: 100%;
}

.nvsp-zp-toc-back:hover {
  text-decoration: underline;
  color: var(--zp-primary);
}

.nvsp-zp-toc-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--zp-text-muted);
  margin-bottom: 10px;
}

.nvsp-zp-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nvsp-zp-toc-item {
  margin-bottom: 2px;
}

.nvsp-zp-toc-link {
  display: block;
  font-size: 13px;
  color: var(--zp-text-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--zp-radius-sm);
  border-left: 2px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
  line-height: 1.4;
}

.nvsp-zp-toc-link:hover,
.nvsp-zp-toc-link.is-active {
  color: var(--zp-primary);
  border-left-color: var(--zp-primary);
  background: var(--zp-primary-light);
  text-decoration: none;
}

.nvsp-zp-content {
  min-width: 0;
}

.nvsp-zp-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--zp-text);
  margin-top: 40px;
  margin-bottom: 14px;
  padding-top: 20px;
  border-top: 0.5px solid var(--zp-border);
  scroll-margin-top: 120px;
}

.nvsp-zp-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.nvsp-zp-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--zp-text);
  margin-top: 20px;
  margin-bottom: 10px;
}

.nvsp-zp-content p {
  font-size: 16px;
  color: var(--zp-text);
  line-height: 1.75;
  margin-bottom: 14px;
}

.nvsp-zp-content ul,
.nvsp-zp-content ol {
  font-size: 16px;
  color: var(--zp-text);
  line-height: 1.75;
  margin-bottom: 14px;
  padding-left: 20px;
}

.nvsp-zp-content li {
  margin-bottom: 6px;
}

.nvsp-zp-callout {
  border-radius: var(--zp-radius-md);
  padding: 16px 20px;
  margin: 20px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.65;
}

.nvsp-zp-callout-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.nvsp-zp-callout-body {
  flex: 1;
  min-width: 0;
}

.nvsp-zp-callout-body strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.nvsp-zp-callout--blue {
  background: var(--zp-primary-light);
  border-left: 3px solid var(--zp-primary);
  color: var(--zp-text);
}

.nvsp-zp-callout--blue strong {
  color: var(--zp-primary);
}

.nvsp-zp-callout--green {
  background: var(--zp-accent-light);
  border-left: 3px solid var(--zp-accent);
  color: var(--zp-text);
}

.nvsp-zp-callout--green strong {
  color: var(--zp-accent);
}

.nvsp-zp-callout--warning {
  background: var(--zp-warning-bg);
  border-left: 3px solid var(--zp-warning);
  color: var(--zp-text);
}

.nvsp-zp-callout--warning strong {
  color: var(--zp-warning);
}

.nvsp-zp-criteria {
  background: var(--zp-bg-soft);
  border: 0.5px solid var(--zp-border);
  border-radius: var(--zp-radius-md);
  padding: 20px 24px;
  margin: 20px 0;
}

.nvsp-zp-criteria-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--zp-text);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 12px;
  display: block;
}

.nvsp-zp-criteria ul {
  margin: 0;
  padding-left: 18px;
}

.nvsp-zp-criteria li {
  font-size: 16px;
  color: var(--zp-text);
  line-height: 1.6;
  margin-bottom: 6px;
}

.nvsp-zp-criteria li:last-child {
  margin-bottom: 0;
}

.nvsp-zp-law {
  background: var(--zp-bg);
  border: 0.5px solid var(--zp-border);
  border-radius: var(--zp-radius-md);
  padding: 20px 24px;
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--zp-text);
}

.nvsp-zp-law-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--zp-primary);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 10px;
  display: block;
}

.nvsp-zp-law p {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--zp-text);
}

.nvsp-zp-law p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE ZORGPROFESSIONALS
   ============================================================ */

@media (max-width: 1024px) {
  .nvsp-zp-expertise-row {
    grid-template-columns: 1fr 1fr;
  }

  .nvsp-zp-expertise-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nvsp-zp-hero {
    padding: 24px 20px 20px;
  }

  .nvsp-zp-hero h1 {
    font-size: 22px;
  }

  .nvsp-zp-trust-grid,
  .nvsp-zp-cards-grid,
  .nvsp-zp-email-grid {
    grid-template-columns: 1fr;
  }

  .nvsp-zp-cards-asym {
    grid-template-columns: 1fr;
  }

  .nvsp-zp-expertise-row {
    grid-template-columns: 1fr;
  }

  .nvsp-zp-subpage-wrap {
    grid-template-columns: 1fr;
  }

  .nvsp-zp-toc {
    position: static;
  }

  .nvsp-zp-cta-card {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .nvsp-zp-hero {
    padding: 20px 16px;
  }
}