:root {
    --green-primary:  #857550;
    --green-dark:     #6b5d3f;
    --green-darker:   #4a4028;
    --green-light:    #a09060;
    --green-pale:     #f2ece0;
    --charcoal:       #242322;
    --charcoal-medium:#3a3836;
    --gray:           #6c757d;
    --gray-light:     #e8e8e8;
    --off-white:      #f4efe4;
    --white:          #ffffff;
    --shadow-sm:      0 2px 8px rgba(0,0,0,.08);
    --shadow-md:      0 8px 32px rgba(0,0,0,.12);
    --shadow-lg:      0 20px 60px rgba(0,0,0,.15);
    --radius:         12px;
    --radius-sm:      6px;
    --transition:     .25s cubic-bezier(.4,0,.2,1);
    --sp-section:     5rem;
}

@media (max-width: 991.98px) { :root { --sp-section: 4rem; } }
@media (max-width: 575.98px) { :root { --sp-section: 3rem; } }

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-top: 0;
    margin-bottom: .75rem;
}

a {
    color: var(--green-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--green-dark); }

img { max-width: 100%; height: auto; }

p { margin-bottom: 1rem; }

.text-green { color: var(--green-primary) !important; }
.bg-green { background: var(--green-primary) !important; }
.bg-green-pale { background: var(--green-pale) !important; }
.bg-charcoal { background: var(--charcoal) !important; }

.btn-primary-green {
    background: var(--green-primary);
    border: 2px solid var(--green-primary);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: .75rem 2rem;
    border-radius: 50px;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}

.btn-primary-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(133,117,80,.35);
}

.btn-outline-green {
    background: transparent;
    border: 2px solid var(--green-primary);
    color: var(--green-primary);
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: .75rem 2rem;
    border-radius: 50px;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
}

.btn-outline-green:hover {
    background: var(--green-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    border: 2px solid var(--white);
    color: var(--green-dark);
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: .75rem 2rem;
    border-radius: 50px;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
}

.btn-white:hover {
    background: var(--green-pale);
    border-color: var(--green-pale);
    color: var(--green-dark);
    transform: translateY(-2px);
}

.section-label {
    font-family: 'Barlow', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--green-primary);
    display: block;
    margin-bottom: .5rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.section-title span { color: var(--green-primary); }

.section-intro {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.7;
}

.divider-green {
    width: 56px;
    height: 4px;
    background: var(--green-primary);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }

/* ─── Topbar ─── */
.topbar {
    background: #000000;
    padding: .45rem 0;
    font-size: .85rem;
    color: rgba(255,255,255,.75);
}

.topbar a {
    color: rgba(255,255,255,.85);
    transition: color var(--transition);
}

.topbar a:hover { color: var(--green-light); }

.topbar .phone-highlight {
    color: var(--green-light);
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    font-size: .95rem;
}

/* ─── Navbar ─── */
.main-nav {
    background: var(--charcoal);
    box-shadow: 0 2px 16px rgba(0,0,0,.25);
    border-bottom: 1px solid rgba(133,117,80,.25);
    padding: .75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.main-nav.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: transform var(--transition);
}

.navbar-brand:hover img { transform: scale(1.03); }

.navbar-nav .nav-link {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    color: rgba(255,255,255,.85) !important;
    padding: .5rem .9rem !important;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: .9rem;
    right: .9rem;
    height: 2px;
    background: var(--green-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--green-primary) !important;
}

.nav-cta {
    background: var(--green-primary);
    color: var(--white) !important;
    border-radius: 50px;
    padding: .5rem 1.4rem !important;
    transition: all var(--transition) !important;
}

.nav-cta:hover {
    background: var(--green-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.nav-cta::after { display: none !important; }

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    padding: .5rem;
    min-width: 220px;
}

.dropdown-item {
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: .9rem;
    border-radius: var(--radius-sm);
    padding: .5rem .9rem;
    color: var(--charcoal);
    transition: all var(--transition);
}

.dropdown-item:hover {
    background: var(--green-pale);
    color: var(--green-primary);
}

/* ─── Hero ─── */
.hero {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1c1a14 100%);
    position: relative;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(133,117,80,.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(133,117,80,.07) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(133,117,80,.05) 0%, transparent 35%);
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .18;
    mix-blend-mode: luminosity;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 7rem 0 5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(133,117,80,.18);
    border: 1px solid rgba(133,117,80,.35);
    color: var(--green-light);
    border-radius: 50px;
    padding: .35rem 1rem;
    font-size: .82rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-title span {
    color: var(--green-light);
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.75);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.7);
    font-size: .88rem;
}

.trust-badge-item i {
    color: var(--green-light);
    font-size: 1.1rem;
}

/* ─── Postcode checker ─── */
.postcode-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 3;
}

.postcode-card h3 {
    font-size: 1.4rem;
    margin-bottom: .25rem;
}

.postcode-card p {
    color: var(--gray);
    font-size: .92rem;
    margin-bottom: 1.25rem;
}

.postcode-input-wrap {
    display: flex;
    gap: .5rem;
    margin-bottom: 1rem;
}

.postcode-input {
    flex: 1;
    border: 2px solid var(--gray-light);
    border-radius: 50px;
    padding: .7rem 1.25rem;
    font-size: 1.1rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    letter-spacing: .06em;
    transition: border-color var(--transition);
    outline: none;
    text-transform: uppercase;
}

.postcode-input:focus { border-color: var(--green-primary); }

.postcode-btn {
    background: var(--green-primary);
    border: none;
    color: var(--white);
    border-radius: 50px;
    padding: .7rem 1.4rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.postcode-btn:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.postcode-result {
    border-radius: var(--radius-sm);
    padding: .75rem 1rem;
    font-size: .9rem;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: .5rem;
}

.postcode-result.success {
    background: var(--green-pale);
    color: var(--green-dark);
    display: flex;
}

.postcode-result.error {
    background: #fef2f2;
    color: #b91c1c;
    display: flex;
}

.postcode-usp-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.postcode-usp-list li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .86rem;
    color: var(--gray);
}

.postcode-usp-list i {
    color: var(--green-primary);
    font-size: .9rem;
}

/* ─── USP bar ─── */
.usp-bar {
    background: var(--green-primary);
    padding: 1.25rem 0;
}

.usp-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.usp-bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: .92rem;
    padding: .35rem 1.5rem;
}

.usp-bar-item i {
    font-size: 1.25rem;
    opacity: .9;
    flex-shrink: 0;
}

.usp-bar-sep {
    display: inline-block;
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,.35);
    flex-shrink: 0;
    align-self: center;
}

/* ─── Sectie-padding utility ─── */
.section-pad { padding: var(--sp-section) 0; }
.section-pad-sm { padding: calc(var(--sp-section) * .7) 0; }

/* ─── Services ─── */
.services-section { padding: var(--sp-section) 0; }

.pest-filter-nav {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    background: var(--off-white);
    border: 2px solid transparent;
    color: var(--charcoal-medium);
    border-radius: 50px;
    padding: .4rem 1.1rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
}

.pest-swiper-wrap {
    position: relative;
    padding: 0 3rem 3rem;
}

.swiper-diensten {
    overflow: hidden;
}

.swiper-diensten .swiper-wrapper {
    align-items: stretch;
}

.swiper-diensten .swiper-slide {
    height: auto;
}

.pest-slide.is-hidden {
    display: none;
}

.pest-nav {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 1.5rem));
    z-index: 10;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 2px solid var(--green-primary);
    background: var(--white);
    color: var(--green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 1rem;
    line-height: 1;
    padding: 0;
}

.pest-nav:hover {
    background: var(--green-primary);
    color: var(--white);
}

.pest-nav-prev { left: 0; }
.pest-nav-next { right: 0; }

.pest-nav.swiper-button-disabled {
    opacity: .3;
    pointer-events: none;
}

.swiper-pagination-diensten {
    bottom: 0 !important;
}

.swiper-pagination-diensten .swiper-pagination-bullet {
    background: var(--green-primary);
    opacity: .35;
    width: 8px;
    height: 8px;
    transition: all .2s;
}

.swiper-pagination-diensten .swiper-pagination-bullet-active {
    opacity: 1;
    width: 22px;
    border-radius: 4px;
}

.pest-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
}

.pest-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--green-light);
}

.pest-card-icon {
    background: var(--green-pale);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--green-primary);
    transition: all var(--transition);
    min-height: 110px;
}

.pest-card:hover .pest-card-icon {
    background: var(--green-primary);
    color: var(--white);
}

.pest-card-body {
    padding: 1.1rem 1.25rem 1.35rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pest-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .3rem;
    color: var(--charcoal);
}

.pest-card-text {
    font-size: .85rem;
    color: var(--gray);
    flex: 1;
    margin-bottom: .65rem;
}

.pest-card-link {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: .83rem;
    color: var(--green-primary);
    display: flex;
    align-items: center;
    gap: .35rem;
    transition: gap var(--transition);
}

.pest-card:hover .pest-card-link { gap: .65rem; }

/* ─── Why us ─── */
.why-us-section {
    padding: var(--sp-section) 0;
    background: var(--off-white);
    overflow: visible;
}

.why-us-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.why-us-img-wrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
}

.clover-visual-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.5rem 3rem;
    overflow: visible;
}

.clover-mask {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1486 / 1411;
    position: relative;
    overflow: visible;
    -webkit-mask-image: url('../../assets/images/masker-klavertje.png');
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url('../../assets/images/masker-klavertje.png');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    filter: drop-shadow(0 14px 40px rgba(0,0,0,.30));
    transition: filter .4s ease, transform .4s ease;
}

.clover-mask:hover {
    filter: drop-shadow(0 18px 50px rgba(0,0,0,.38));
    transform: scale(1.02);
}

.clover-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.clover-mask:hover img {
    transform: scale(1.05);
}

.clover-mask--mirrored {
    transform: scaleX(-1);
}

.clover-mask--mirrored:hover {
    transform: scaleX(-1) scale(1.02);
}

.why-us-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--green-primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.why-us-badge .num {
    font-family: 'Barlow', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.why-us-badge .lbl {
    font-size: .78rem;
    opacity: .85;
    white-space: nowrap;
}

.why-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.why-item-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all var(--transition);
}

.why-item:hover .why-item-icon {
    background: var(--green-primary);
    color: var(--white);
}

.why-item-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .2rem;
}

.why-item-text {
    font-size: .9rem;
    color: var(--gray);
    margin: 0;
}

/* ─── Process ─── */
.process-section {
    padding: var(--sp-section) 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light), var(--green-primary));
}

.process-section .section-title { color: var(--white); }
.process-section .section-intro { color: rgba(255,255,255,.6); }
.process-section .divider-green { margin: 0 auto 1.5rem; }

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.process-step-num {
    width: 64px;
    height: 64px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 2;
}

.process-step-connector {
    position: absolute;
    top: 4.5rem;
    left: calc(50% + 32px);
    right: calc(-50% + 32px);
    height: 2px;
    background: rgba(133,117,80,.35);
}

.process-step:last-child .process-step-connector { display: none; }

.process-step h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: .5rem;
}

.process-step p {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    margin: 0;
}

/* ─── Stats counter ─── */
.stats-section {
    padding: calc(var(--sp-section) * .8) 0;
    background: var(--green-primary);
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 1rem;
}

.stat-num {
    font-family: 'Barlow', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: .9rem;
    opacity: .85;
    margin-top: .25rem;
    display: block;
}

/* ─── Testimonials ─── */
.testimonials-section {
    padding: var(--sp-section) 0;
    background: var(--off-white);
}

/* ─── Testimonials equal height ─── */
.swiper-testimonials .swiper-wrapper {
    align-items: stretch;
}

.swiper-testimonials .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    width: 100%;
    border-left: 4px solid var(--green-primary);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: .9rem;
    margin-bottom: .75rem;
}

.testimonial-text {
    font-size: .95rem;
    color: var(--charcoal-medium);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: .9rem;
    margin: 0;
}

.testimonial-city {
    font-size: .8rem;
    color: var(--gray);
    margin: 0;
}

.testimonial-quote-icon {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 3rem;
    color: var(--green-pale);
    line-height: 1;
    font-family: Georgia, serif;
}

.swiper-pagination-bullet {
    background: var(--gray-light);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--green-primary);
}

/* ─── Interactive Netherlands map ─── */
.areas-section { padding: var(--sp-section) 0; }

.nl-map-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    filter: drop-shadow(0 16px 48px rgba(0,0,0,.13));
}

.nl-map-img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0) saturate(100%)
            invert(28%) sepia(28%) saturate(600%)
            hue-rotate(68deg) brightness(88%) contrast(92%);
}

.nl-dots-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.nl-city {
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

.nl-ring {
    fill: #fff;
    opacity: 0;
    animation: nlPulse 4s ease-out infinite;
    transform-origin: center;
    transform-box: fill-box;
    pointer-events: none;
}

.nl-core {
    fill: #fff;
    stroke: var(--green-dark);
    stroke-width: 2.5;
    transition: transform .4s ease, fill .4s;
    transform-origin: center;
    transform-box: fill-box;
}

.nl-city:hover .nl-core,
.nl-city:focus-visible .nl-core {
    fill: var(--green-pale);
    transform: scale(1.7);
}

.nl-city:hover .nl-ring,
.nl-city:focus-visible .nl-ring {
    animation-duration: 2s;
}

@keyframes nlPulse {
    0%   { transform: scale(1);   opacity: .65; }
    70%  { transform: scale(3.4); opacity: 0;   }
    100% { transform: scale(3.4); opacity: 0;   }
}

.nl-map-tooltip {
    position: absolute;
    background: var(--charcoal);
    color: #fff;
    padding: .35rem .85rem;
    border-radius: var(--radius-sm);
    font-size: .78rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    pointer-events: none;
    opacity: 0;
    transition: opacity .12s;
    white-space: nowrap;
    z-index: 20;
    top: 0;
    left: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.nl-map-tooltip.is-visible { opacity: 1; }

.nl-map-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 14px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--charcoal);
}

@media (max-width: 991.98px) {
    .nl-map-wrap { max-width: 300px; }
}

/* ─── CTA banner ─── */
.cta-section {
    padding: var(--sp-section) 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .section-title { color: var(--white); }
.cta-section p { color: rgba(255,255,255,.8); }

.cta-phone-num {
    font-family: 'Barlow', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: .75rem;
}

.cta-phone-num i {
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,.4); }
    70% { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ─── Blog ─── */
.blog-section { padding: var(--sp-section) 0; }

/* ─── Blog kaarten — zie component definitie verderop ─── */

/* ─── Footer ─── */
.main-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,.75);
    padding: 4rem 0 2rem;
}

.footer-brand img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    max-width: 280px;
    line-height: 1.65;
}

.footer-heading {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: .5rem; }

.footer-links a {
    color: rgba(255,255,255,.6);
    font-size: .88rem;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.footer-links a::before {
    content: '›';
    color: var(--green-light);
    font-size: 1rem;
    line-height: 1;
}

.footer-links a:hover { color: var(--green-light); padding-left: 4px; }

.footer-contact-item {
    display: flex;
    gap: .75rem;
    margin-bottom: .75rem;
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--green-light);
    font-size: 1rem;
    margin-top: .1rem;
    flex-shrink: 0;
}

.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--green-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: .82rem;
    color: rgba(255,255,255,.4);
}

.footer-certs {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    padding: .35rem .75rem;
    font-size: .75rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ─── Page header ─── */
.page-header {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1c1a14 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light));
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: .5rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: .85rem;
}

.breadcrumb-item a { color: rgba(255,255,255,.6); }
.breadcrumb-item.active { color: var(--green-light); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ─── Content pages ─── */
.content-wrap {
    padding: var(--sp-section) 0;
}

.content-area {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal-medium);
}

.content-area h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: .75rem;
    color: var(--charcoal);
}

.content-area h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
}

.content-area ul, .content-area ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-area li { margin-bottom: .35rem; }

.content-area a {
    color: var(--green-primary);
    text-decoration: underline;
}

.content-area a:hover { color: var(--green-dark); }

.content-area blockquote {
    border-left: 4px solid var(--green-primary);
    background: var(--green-pale);
    padding: 1rem 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--green-dark);
}

/* ─── Sidebar ─── */
.sidebar .widget {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar .widget-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--green-pale);
    color: var(--charcoal);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.sidebar-cta h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: .5rem;
}

.sidebar-cta p {
    color: rgba(255,255,255,.8);
    font-size: .88rem;
    margin-bottom: 1.25rem;
}

.sidebar-cta .phone {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

/* ─── Local landing page ─── */
.local-hero {
    background: linear-gradient(135deg, var(--charcoal), #1c1a14);
    padding: 4rem 0;
    position: relative;
}

.local-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--green-primary);
    color: var(--white);
    border-radius: 50px;
    padding: .4rem 1rem;
    font-size: .82rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ─── 404 ─── */
.error-404-section {
    padding: 8rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-code {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 800;
    color: var(--green-pale);
    line-height: 1;
    margin-bottom: .5rem;
}

/* ─── Search results ─── */
.search-results-section { padding: var(--sp-section) 0; }

.search-result-item {
    padding: 1.5rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    transition: all var(--transition);
}

.search-result-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--green-light);
}

/* ─── Hamburger ─── */
.navbar-toggler {
    border: 2px solid var(--green-primary);
    border-radius: var(--radius-sm);
    padding: .35rem .6rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23857550' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── Scroll to top ─── */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--green-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}

/* ─── Swiper overrides ─── */
.swiper { width: 100%; padding-bottom: 3rem !important; }

/* ─── Hide WP admin bar ─── */
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }

/* ─── Hero video / animated background ─── */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
    z-index: 0;
}

.hero-animated-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(133,117,80,.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(133,117,80,.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 50% 10%, rgba(133,117,80,.04) 0%, transparent 50%),
        linear-gradient(135deg, rgba(36,35,34,.82) 0%, rgba(28,26,20,.78) 50%, rgba(36,35,34,.80) 100%);
}



.hero-animated-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 1px at 15% 25%, rgba(133,117,80,.35) 0%, transparent 1px),
        radial-gradient(circle 1px at 42% 68%, rgba(133,117,80,.28) 0%, transparent 1px),
        radial-gradient(circle 1px at 73% 18%, rgba(133,117,80,.30) 0%, transparent 1px),
        radial-gradient(circle 1px at 88% 52%, rgba(133,117,80,.22) 0%, transparent 1px),
        radial-gradient(circle 1px at 31% 85%, rgba(133,117,80,.28) 0%, transparent 1px),
        radial-gradient(circle 2px at 60% 40%, rgba(133,117,80,.18) 0%, transparent 2px),
        radial-gradient(circle 1px at 5%  60%, rgba(133,117,80,.18) 0%, transparent 1px),
        radial-gradient(circle 1px at 95% 80%, rgba(133,117,80,.18) 0%, transparent 1px);
    background-size: 100% 100%;
    opacity: .5;
    animation: particleFloat 8s ease-in-out infinite alternate;
}

@keyframes particleFloat {
    0%   { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

.hero-animated-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,.35), transparent);
}

/* ─── Dropdown nav ─── */
.navbar-nav .dropdown-toggle::after {
    border: none;
    content: '\F282';
    font-family: 'bootstrap-icons';
    vertical-align: middle;
    font-size: .75rem;
    margin-left: .3rem;
    transition: transform var(--transition);
}

.navbar-nav .dropdown:hover .dropdown-toggle::after,
.navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        animation: dropIn .2s ease;
    }
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    padding: .5rem;
    min-width: 220px;
    border-top: 3px solid var(--green-primary);
}

.dropdown-item {
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: .9rem;
    border-radius: var(--radius-sm);
    padding: .5rem .9rem;
    color: var(--charcoal);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.dropdown-item::before {
    content: '›';
    color: var(--green-primary);
    font-size: 1rem;
    line-height: 1;
}

.dropdown-item:hover {
    background: var(--green-pale);
    color: var(--green-primary);
    padding-left: 1.1rem;
}





/* ─── Pagina header varianten ─── */
.page-header--light {
    background: var(--off-white);
    color: var(--charcoal);
}

.page-header--light h1,
.page-header--light .breadcrumb-item,
.page-header--light .breadcrumb-item a {
    color: var(--charcoal);
}

.page-header--light .breadcrumb-item.active { color: var(--gray); }
.page-header--light .section-label { color: var(--green-primary); }

.page-header-intro {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    max-width: 640px;
    margin: .75rem 0 1.25rem;
    line-height: 1.65;
}

.page-header--light .page-header-intro { color: var(--gray); }

/* ─── CTA banner (herbruikbare sectie onderaan pagina's) ─── */
.cta-banner {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1c1a14 100%);
    padding: var(--sp-section) 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23857550' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light), var(--green-primary));
}

.cta-banner-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-banner-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: .5rem;
}

.cta-banner-sub {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    margin: 0;
}

/* ─── Stappenplan kaartje (bedrijven, offerte) ─── */
.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--green-primary);
    height: 100%;
}

.step-number {
    width: 52px;
    height: 52px;
    background: var(--green-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
}

.step-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--charcoal);
}

.step-text {
    font-size: .88rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* ─── Contact pagina ─── */
.contact-info-block { padding-top: .5rem; }

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.contact-detail-item:last-child { border-bottom: none; }

.contact-detail-icon {
    width: 42px;
    height: 42px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1rem;
}

.contact-form-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 2.5rem;
}

/* ─── Blog kaartjes (gecorrigeerde definitie) ─── */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--green-light);
}

.blog-card-img-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 3/2;
    flex-shrink: 0;
}

.blog-card-img-wrap img,
.blog-card-img-wrap .blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.blog-card:hover .blog-card-img-wrap img,
.blog-card:hover .blog-card-img-wrap .blog-card-img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 1.35rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: .6rem;
    align-items: center;
    font-size: .78rem;
    color: var(--gray);
    margin-bottom: .6rem;
    flex-wrap: wrap;
}

.blog-card-meta i { margin-right: 2px; }

.blog-card-cat {
    background: var(--green-pale);
    color: var(--green-dark);
    padding: .15rem .65rem;
    border-radius: 20px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: .74rem;
    letter-spacing: .04em;
}

.blog-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: .5rem;
    color: var(--charcoal);
    flex: 1;
}

.blog-card-title a { color: inherit; transition: color var(--transition); }
.blog-card-title a:hover { color: var(--green-primary); }

.blog-card-excerpt {
    font-size: .85rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: .75rem;
}

.blog-card-link {
    font-family: 'Barlow', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: var(--green-primary);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: auto;
    transition: gap var(--transition);
}

.blog-card:hover .blog-card-link { gap: .6rem; }

/* ─── Zijbalk ─── */
.sidebar-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.sidebar-heading {
    font-size: .88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--charcoal);
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--green-primary);
}

/* ─── Over ons statistieken ─── */
.stat-highlight {
    background: var(--off-white);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1rem;
    text-align: center;
}

.stat-highlight strong {
    font-family: 'Barlow', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--green-primary);
    line-height: 1;
    display: block;
}

.stat-highlight span {
    display: block;
    font-size: .78rem;
    color: var(--gray);
    margin-top: .3rem;
}

/* ─── Checklist ─── */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    padding: .5rem 0 .5rem 2rem;
    position: relative;
    font-size: .9rem;
    border-bottom: 1px solid var(--gray-light);
    line-height: 1.5;
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
    content: '\F26E';
    font-family: 'Bootstrap Icons';
    position: absolute;
    left: 0;
    top: .45rem;
    color: var(--green-primary);
    font-size: 1rem;
}

/* ─── Legale documenten ─── */
.legal-document h2 {
    font-size: 1.15rem;
    margin-top: 2rem;
    margin-bottom: .5rem;
    color: var(--charcoal);
}

.legal-document p,
.legal-document li {
    font-size: .92rem;
    color: #444;
    line-height: 1.8;
}

/* ─── Regio-tags ─── */
.area-tag {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: .45rem .9rem;
    font-size: .84rem;
    color: var(--charcoal);
    font-weight: 500;
    transition: all var(--transition);
    width: 100%;
}

.area-tag:hover {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: var(--white);
}

.area-tag:hover i { color: var(--white) !important; }

/* ─── NL kaart tooltip ─── */
#nl-tooltip {
    opacity: 0;
    transition: opacity .15s;
}

#nl-tooltip.is-visible { opacity: 1; }

/* ─── Feature cards (bedrijven sectoren) ─── */
.feature-card {
    border-radius: var(--radius);
    padding: 1.75rem;
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.feature-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

/* ─── Responsive ─── */
@media (max-width: 991.98px) {
    .hero { min-height: auto; }
    .hero-content { padding: 5rem 0 4rem; }
    .postcode-card { margin-top: 2rem; }
    .why-us-badge { right: 0; bottom: -2rem; }
    .contact-form-card { padding: 2rem; }
    .cta-banner-inner { flex-direction: column; align-items: flex-start; }
    .pest-swiper-wrap { padding: 0 2.5rem 3rem; }
}

@media (max-width: 767.98px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary-green,
    .hero-actions .btn-outline-green { width: 100%; justify-content: center; }
    .process-step-connector { display: none; }
    .cta-phone-num { font-size: 1.5rem; }
    .usp-bar-sep { display: none; }
    .usp-bar-item { padding: .3rem 1rem; font-size: .85rem; }
    .page-header { padding: 3rem 0 2.5rem; }
    .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); }
}

@media (max-width: 575.98px) {
    .contact-form-card { padding: 1.25rem; }
    .cta-banner-inner .d-flex { flex-direction: column; width: 100%; }
    .cta-banner-inner .btn-primary-green,
    .cta-banner-inner .btn-outline-green { width: 100%; justify-content: center; }
    .topbar .d-none-xs { display: none; }
    .pest-swiper-wrap { padding: 0 2rem 3rem; }
    .footer-brand p { max-width: 100%; }
    .step-card { padding: 1.5rem 1.25rem; }
    .postcode-card { padding: 1.5rem; }
}

/* ─── Geimporteerde intro/outro tekst ─── */
.page-intro {
    font-size: 1.05rem;
    color: var(--charcoal-medium);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.page-outro {
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

/* ─── Content intro sectie (boven artikel) ─── */
.content-intro-section {
    padding: 3rem 0 0;
    background: var(--off-white);
}

.content-intro-thumb {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.content-intro-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.content-intro-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--charcoal-medium);
}

.content-intro-text p:last-child { margin-bottom: 0; }

.content-intro-readmore {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.25rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
    border-radius: 50px;
    padding: .4rem 1.1rem;
    transition: all var(--transition);
}

.content-intro-readmore:hover {
    background: var(--green-primary);
    color: white;
}

.content-sidebar-cta {
    background: var(--charcoal);
    border-radius: var(--radius);
    padding: 1.75rem;
    position: sticky;
    top: 100px;
}

.content-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background: var(--green-primary);
    color: white;
    border-radius: var(--radius-sm);
    padding: 1rem;
    font-family: 'Barlow', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    transition: background var(--transition);
}

.content-cta-phone:hover {
    background: var(--green-dark);
    color: white;
}

.content-cta-usps h4 {
    color: white;
    font-size: .9rem;
    margin-bottom: .75rem;
}

.content-cta-usp-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: rgba(255,255,255,.75);
    font-size: .85rem;
    padding: .3rem 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.content-cta-usp-item:last-child { border-bottom: none; }

.content-cta-usp-item i {
    color: var(--green-light);
    flex-shrink: 0;
}

/* ─── CTA balk onder intro ─── */
.content-cta-bar {
    background: var(--charcoal);
    padding: 1.25rem 0;
}

.content-cta-bar-text {
    color: white;
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
}

/* ─── Stappenplan ─── */
.stappenplan-section {
    padding: var(--sp-section) 0;
    background: var(--green-pale);
}

.stappenplan-item {
    padding: 1rem .5rem;
}

.stappenplan-num {
    width: 36px;
    height: 36px;
    background: var(--green-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    margin: 0 auto .75rem;
}

.stappenplan-icon {
    font-size: 1.75rem;
    color: var(--green-primary);
    margin-bottom: .5rem;
}

.stappenplan-title {
    font-size: .88rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: .35rem;
    line-height: 1.3;
}

.stappenplan-text {
    font-size: .78rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* ─── Gerelateerde pagina's ─── */
.gerelateerd-section {
    padding: var(--sp-section) 0;
    background: var(--off-white);
    border-top: 1px solid var(--gray-light);
}

@media (max-width: 991.98px) {
    .content-sidebar-cta { position: static; margin-top: 2rem; }
    .content-intro-section { padding: 2rem 0 0; }
}

@media (max-width: 767.98px) {
    .content-cta-bar .d-flex { flex-direction: column; gap: .75rem; }
    .content-cta-bar .btn-primary-green,
    .content-cta-bar .btn-outline-green { width: 100%; justify-content: center; }
}

/* ─── Content intro sectie ─── */
.content-intro-section {
    background: var(--off-white);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.content-intro-inner {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.content-intro-body {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.content-intro-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    align-self: flex-start;
}

.content-intro-text {
    flex: 1;
    font-size: .97rem;
    line-height: 1.75;
    color: var(--charcoal-medium);
}

.content-intro-text p { margin-bottom: .75rem; }
.content-intro-text p:last-child { margin-bottom: 0; }

.content-intro-readmore {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1.25rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: .88rem;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
    border-radius: 50px;
    padding: .35rem 1rem;
    transition: all var(--transition);
}

.content-intro-readmore:hover {
    background: var(--green-primary);
    color: white;
}

/* ─── Sidebar CTA (intro sectie) ─── */
.content-sidebar-cta {
    background: var(--charcoal);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: var(--green-primary);
    color: white;
    border-radius: var(--radius-sm);
    padding: .9rem 1rem;
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    transition: background var(--transition);
    text-align: center;
    line-height: 1.2;
}

.content-cta-phone:hover {
    background: var(--green-dark);
    color: white;
}

.content-cta-phone i { font-size: 1rem; flex-shrink: 0; }

.content-cta-usps { margin-bottom: 1.25rem; }

.content-cta-usps h4 {
    color: white;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.content-cta-usp-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: rgba(255,255,255,.75);
    font-size: .85rem;
    padding: .35rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    line-height: 1.3;
}

.content-cta-usp-item:last-child { border-bottom: none; }

.content-cta-usp-item i {
    color: var(--green-light);
    flex-shrink: 0;
    font-size: .9rem;
}

/* ─── CTA balk ─── */
.content-cta-bar {
    background: var(--charcoal);
    padding: 1.1rem 0;
    border-top: 3px solid var(--green-primary);
}

.content-cta-bar-text {
    color: white;
    font-family: 'Barlow', sans-serif;
    font-size: 1.05rem;
}

/* ─── Stappenplan ─── */
.stappenplan-section {
    padding: var(--sp-section) 0;
    background: var(--green-pale);
}

.stappenplan-item {
    background: white;
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border-top: 3px solid var(--green-primary);
}

.stappenplan-num {
    width: 52px;
    height: 52px;
    background: var(--green-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
}

.stappenplan-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: .4rem;
    line-height: 1.3;
}

.stappenplan-text {
    font-size: .75rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* ─── Gerelateerde pagina's ─── */
.gerelateerd-section {
    padding: var(--sp-section) 0;
    background: var(--off-white);
    border-top: 1px solid var(--gray-light);
}

/* ─── Responsive content intro ─── */
@media (max-width: 991.98px) {
    .content-intro-section { padding: 2rem 0; }
    .content-sidebar-cta { margin-top: 0; }
    .content-intro-img { width: 110px; height: 110px; }
}

@media (max-width: 767.98px) {
    .content-cta-bar .d-flex { flex-direction: column; gap: .75rem; }
    .content-cta-bar .btn-primary-green,
    .content-cta-bar .btn-outline-green { width: 100%; justify-content: center; }
    .content-intro-img { width: 90px; height: 90px; margin-right: 1rem; }
    .stappenplan-item { padding: 1rem .75rem; }
}

@media (max-width: 575.98px) {
    .content-intro-inner { padding: 1.25rem; }
    .content-intro-img { float: none; display: block; margin: 0 auto 1rem; width: 100px; height: 100px; }
}

/* ─── Sidebar widget (content pages) ─── */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.sidebar-widget-title {
    font-size: .88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--charcoal);
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--green-primary);
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    border-bottom: 1px solid var(--gray-light);
}

.sidebar-links li:last-child {
    border-bottom: none;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 0;
    font-size: .88rem;
    color: var(--charcoal);
    font-weight: 500;
    transition: all var(--transition);
}

.sidebar-links a i {
    color: var(--green-primary);
    font-size: .7rem;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.sidebar-links a:hover {
    color: var(--green-primary);
    padding-left: .35rem;
}

.sidebar-links a:hover i {
    transform: translateX(3px);
}

/* ─── Responsive content intro ─── */
@media (max-width: 575.98px) {
    .content-intro-body { flex-direction: column; align-items: center; text-align: center; }
    .content-intro-img { width: 120px; height: 120px; }
    .content-intro-inner { padding: 1.25rem; }
}

/* ─── Accordion (FAQ) ─── */
.accordion-item {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm) !important;
    margin-bottom: .5rem;
    overflow: hidden;
}

.accordion-button {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: var(--charcoal);
    background: var(--white);
    padding: 1.1rem 1.25rem;
    border-radius: var(--radius-sm) !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--green-primary);
    background: var(--green-pale);
    box-shadow: none !important;
}

.accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23857550'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23857550'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--green-light);
}

.accordion-body {
    font-size: .92rem;
    color: var(--gray);
    line-height: 1.75;
    padding: 1rem 1.25rem 1.25rem;
    background: var(--white);
    border-top: 1px solid var(--gray-light);
}

/* ─── Over ons hero afbeelding ─── */
.about-hero-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-hero-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
