/* ==========================================================================
   HV Makelaardij — Zakelijk Preview
   Archetype: corporate-flow
   Fonts: Playfair Display (headings) + Source Sans 3 (body)
   Kleuren: Donker teal #005A72 + Warm navy #1B3A5C + Geel-groen #E8F000
   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --hv-primary: #005A72;
    --hv-primary-hover: #004A5E;
    --hv-secondary: #1B3A5C;
    --hv-accent: #E8F000;
    --hv-accent-hover: #D4DC00;
    --hv-text: #2D2E3F;
    --hv-text-muted: #6B7280;
    --hv-bg: #FAFBFC;
    --hv-bg-alt: #F0F2F5;
    --hv-bg-teal-light: #E8F4F8;
    --hv-white: #FFFFFF;
    --hv-border: #E5E7EB;
    --hv-footer-bg: #1B3A5C;
    --hv-footer-text: rgba(255,255,255,0.85);
    --hv-footer-link: rgba(255,255,255,0.7);
    --hv-footer-link-hover: #FFFFFF;
    --hv-input-border: #D1D5DB;
    --hv-input-focus: #005A72;
    --hv-error: #DC3545;
    --hv-radius: 6px;
    --hv-radius-lg: 12px;
    --hv-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --hv-shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --hv-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --hv-max-width: 1200px;
    --hv-transition: 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--hv-text);
    background: var(--hv-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--hv-text);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: 2.625rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--hv-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.bg-white { background: var(--hv-white); }
.bg-light { background: var(--hv-bg-alt); }
.bg-teal-light { background: var(--hv-bg-teal-light); }
.bg-teal { background: var(--hv-primary); color: var(--hv-white); }
.bg-navy { background: var(--hv-secondary); color: var(--hv-white); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--hv-radius);
    cursor: pointer;
    transition: all var(--hv-transition);
    text-decoration: none;
    line-height: 1.2;
}

.btn-accent {
    background: var(--hv-accent);
    color: var(--hv-text);
    border-color: var(--hv-accent);
}
.btn-accent:hover {
    background: var(--hv-accent-hover);
    border-color: var(--hv-accent-hover);
    color: var(--hv-text);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 240, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--hv-white);
    border-color: var(--hv-white);
}
.btn-outline:hover {
    background: var(--hv-white);
    color: var(--hv-primary);
}

.btn-outline-dark {
    background: transparent;
    color: var(--hv-primary);
    border-color: var(--hv-primary);
}
.btn-outline-dark:hover {
    background: var(--hv-primary);
    color: var(--hv-white);
}

.btn-teal {
    background: var(--hv-primary);
    color: var(--hv-white);
    border-color: var(--hv-primary);
}
.btn-teal:hover {
    background: var(--hv-primary-hover);
    border-color: var(--hv-primary-hover);
    color: var(--hv-white);
    transform: translateY(-1px);
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.9rem; }

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--hv-white);
    border-bottom: 1px solid var(--hv-border);
    transition: box-shadow var(--hv-transition), height var(--hv-transition);
}

.site-header.scrolled {
    box-shadow: var(--hv-shadow-md);
}

.header-top {
    background: var(--hv-secondary);
    color: var(--hv-white);
    font-size: 0.8125rem;
    padding: 0.375rem 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a {
    color: var(--hv-footer-text);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.header-top a:hover { color: var(--hv-white); }

.header-top-left {
    display: flex;
    gap: 1.5rem;
}

.header-top-right {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background var(--hv-transition);
}
.social-link:hover { background: rgba(255,255,255,0.25); }

.header-main {
    padding: 0.75rem 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-logo img {
    height: 48px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav a {
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--hv-text);
    border-radius: var(--hv-radius);
    transition: color var(--hv-transition), background var(--hv-transition);
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--hv-primary);
    background: var(--hv-bg-teal-light);
}

.nav-cta {
    margin-left: 0.5rem;
}

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

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--hv-white);
    z-index: 150;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-overlay a {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--hv-text);
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}
.mobile-nav-overlay.open a { opacity: 1; transform: translateY(0); }
.mobile-nav-overlay.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav-overlay.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav-overlay.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav-overlay.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav-overlay.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav-overlay.open a:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav-overlay.open a:nth-child(7) { transition-delay: 0.35s; }
.mobile-nav-overlay.open a:nth-child(8) { transition-delay: 0.4s; }
.mobile-nav-overlay a:hover { color: var(--hv-primary); }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-full { min-height: 85vh; }

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 90, 114, 0.85) 0%, rgba(27, 58, 92, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-content h1 {
    color: var(--hv-white);
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-content .hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Page-level smaller hero */
.hero-page {
    min-height: 320px;
    padding: 4rem 0;
}

.hero-page .hero-content h1 {
    font-size: 2.625rem;
}

/* Breadcrumbs */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--hv-white); }
.breadcrumb .sep { color: rgba(255,255,255,0.5); }
.breadcrumb .current { color: rgba(255,255,255,0.95); }

/* --- Social Proof Bar --- */
.proof-bar {
    background: var(--hv-primary);
    padding: 1rem 0;
}

.proof-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--hv-white);
    font-size: 0.9375rem;
    font-weight: 600;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.proof-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.3);
}

/* --- Service Cards --- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--hv-white);
    border-radius: var(--hv-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--hv-shadow-sm);
    transition: transform var(--hv-transition), box-shadow var(--hv-transition);
    border: 1px solid var(--hv-border);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hv-shadow-lg);
}

.service-card .icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card .icon-wrap img {
    width: 64px;
    height: 64px;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--hv-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.service-card .card-link {
    font-weight: 600;
    color: var(--hv-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.service-card .card-link:hover { gap: 0.625rem; }

/* --- Team Scroll --- */
.team-scroll-wrap {
    overflow-x: auto;
    padding-bottom: 1rem;
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--hv-primary) transparent;
}
.team-scroll-wrap::-webkit-scrollbar { height: 6px; }
.team-scroll-wrap::-webkit-scrollbar-track { background: transparent; }
.team-scroll-wrap::-webkit-scrollbar-thumb { background: var(--hv-primary); border-radius: 3px; }

.team-scroll {
    display: flex;
    gap: 1.5rem;
    min-width: min-content;
    padding-right: 1.5rem;
}

.team-card {
    flex: 0 0 220px;
    text-align: center;
}

.team-card .photo-wrap {
    width: 180px;
    height: 220px;
    border-radius: var(--hv-radius-lg);
    overflow: hidden;
    margin: 0 auto 1rem;
    position: relative;
}
.team-card .photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}
.team-card:hover .photo-wrap img { filter: grayscale(0%); }
.team-card h4 { font-family: var(--font-body); font-weight: 600; }
.team-card .role { color: var(--hv-text-muted); font-size: 0.875rem; }

/* --- Team Grid (Over HV page) --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-grid .team-member {
    text-align: center;
}

.team-grid .member-photo {
    width: 200px;
    height: 250px;
    border-radius: var(--hv-radius-lg);
    overflow: hidden;
    margin: 0 auto 1rem;
}
.team-grid .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}
.team-grid .team-member:hover .member-photo img { filter: grayscale(0%); }
.team-grid .member-name { font-weight: 700; font-size: 1.0625rem; }
.team-grid .member-role { color: var(--hv-primary); font-size: 0.875rem; font-weight: 600; }
.team-grid .member-dept { color: var(--hv-text-muted); font-size: 0.8125rem; }

/* --- Testimonial --- */
.testimonial-block {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 800px;
}

.testimonial-accent {
    width: 4px;
    min-height: 80px;
    background: var(--hv-accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--hv-text);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.9375rem;
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.125rem;
    letter-spacing: 2px;
}

/* --- Partner Wall --- */
.partner-wall {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-wall img {
    height: 40px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity var(--hv-transition), filter var(--hv-transition);
}
.partner-wall img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* --- News Preview --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.news-card {
    background: var(--hv-white);
    border-radius: var(--hv-radius-lg);
    overflow: hidden;
    border: 1px solid var(--hv-border);
    transition: box-shadow var(--hv-transition), transform var(--hv-transition);
}
.news-card:hover {
    box-shadow: var(--hv-shadow-md);
    transform: translateY(-2px);
}

.news-card .card-content { padding: 1.5rem; }
.news-card .card-meta { font-size: 0.8125rem; color: var(--hv-text-muted); margin-bottom: 0.5rem; }
.news-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.news-card h3 a { color: var(--hv-text); }
.news-card h3 a:hover { color: var(--hv-primary); }

/* --- CTA Section --- */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section h2 { color: var(--hv-white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.125rem; max-width: 600px; margin: 0 auto 2rem; }

/* --- Footer --- */
.site-footer {
    background: var(--hv-footer-bg);
    color: var(--hv-footer-text);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-col h4 {
    color: var(--hv-white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.footer-col p { font-size: 0.9rem; line-height: 1.7; }
.footer-col a { color: var(--hv-footer-link); font-size: 0.9rem; }
.footer-col a:hover { color: var(--hv-footer-link-hover); }

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-logo { height: 40px; width: auto; margin-bottom: 1rem; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-partner-logos {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1.5rem;
}
.footer-partner-logos img {
    height: 32px;
    width: auto;
    opacity: 0.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--hv-white); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* --- Diensten (page) blocks --- */
.dienst-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--hv-border);
}
.dienst-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.dienst-block.reverse { direction: rtl; }
.dienst-block.reverse > * { direction: ltr; }

.dienst-img { border-radius: var(--hv-radius-lg); overflow: hidden; }
.dienst-img img { width: 100%; height: 300px; object-fit: cover; }

/* --- Steps / Process --- */
.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    counter-reset: step;
}

.step-item {
    position: relative;
    padding: 1.5rem;
    background: var(--hv-white);
    border-radius: var(--hv-radius-lg);
    border: 1px solid var(--hv-border);
    counter-increment: step;
}

.step-item::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--hv-primary);
    color: var(--hv-white);
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.step-item h4 { font-family: var(--font-body); font-weight: 700; margin-bottom: 0.375rem; }
.step-item p { font-size: 0.875rem; color: var(--hv-text-muted); }

/* --- FAQ Accordion --- */
.faq-category { margin-bottom: 2.5rem; }
.faq-category h3 { margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--hv-primary); display: inline-block; }

.faq-item {
    border: 1px solid var(--hv-border);
    border-radius: var(--hv-radius);
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--hv-white);
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--hv-text);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--hv-transition);
}
.faq-question:hover { background: var(--hv-bg-alt); }
.faq-question .faq-icon {
    transition: transform var(--hv-transition);
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item.open .faq-question .faq-icon { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
    padding: 0 1.25rem 1.25rem;
    color: var(--hv-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--hv-input-border);
    border-radius: var(--hv-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--hv-transition), box-shadow var(--hv-transition);
    background: var(--hv-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--hv-input-focus);
    box-shadow: 0 0 0 3px rgba(0, 90, 114, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--hv-text-muted);
}
.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--hv-primary);
    flex-shrink: 0;
}

.contact-info-block h3 { margin-bottom: 1.5rem; }

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.contact-detail .icon {
    width: 20px;
    flex-shrink: 0;
    color: var(--hv-primary);
    margin-top: 3px;
}

.opening-hours { margin-top: 1.5rem; }
.opening-hours h4 { font-family: var(--font-body); margin-bottom: 0.5rem; }
.opening-hours p { font-size: 0.9375rem; margin-bottom: 0.25rem; }

.map-embed {
    margin-top: 2rem;
    border-radius: var(--hv-radius-lg);
    overflow: hidden;
    border: 1px solid var(--hv-border);
}
.map-embed iframe { width: 100%; height: 300px; border: none; display: block; }

/* --- Timeline --- */
.timeline {
    position: relative;
    padding-left: 3rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--hv-primary);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 0;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--hv-primary);
    border-radius: 50%;
    border: 3px solid var(--hv-bg-teal-light);
    margin-left: 5px;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--hv-primary);
    font-weight: 700;
    margin-bottom: 0.375rem;
}

/* --- Verzekeringen product grid --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.product-card {
    background: var(--hv-white);
    border: 1px solid var(--hv-border);
    border-radius: var(--hv-radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--hv-transition), border-color var(--hv-transition);
}
.product-card:hover {
    box-shadow: var(--hv-shadow-md);
    border-color: var(--hv-primary);
}

.product-card h4 { margin-bottom: 0.5rem; }
.product-card p { font-size: 0.9rem; color: var(--hv-text-muted); flex: 1; }
.product-card .card-link { margin-top: 1rem; }

/* --- Facts Bar --- */
.facts-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.fact-item .fact-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--hv-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.bg-navy .fact-item .fact-number,
.bg-teal .fact-item .fact-number { color: var(--hv-accent); }

.fact-item .fact-label {
    font-size: 0.9375rem;
    opacity: 0.85;
}

/* --- Values Section --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--hv-bg-teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--hv-primary);
}

/* --- Nieuws page grid --- */
.news-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.news-list { display: flex; flex-direction: column; gap: 1.5rem; }

.news-list-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    background: var(--hv-white);
    border-radius: var(--hv-radius-lg);
    overflow: hidden;
    border: 1px solid var(--hv-border);
    transition: box-shadow var(--hv-transition);
}
.news-list-card:hover { box-shadow: var(--hv-shadow-md); }

.news-list-card .thumb { width: 100%; height: 160px; object-fit: cover; }
.news-list-card .card-body { padding: 1.25rem 1.25rem 1.25rem 0; display: flex; flex-direction: column; justify-content: center; }
.news-list-card .card-meta { font-size: 0.8125rem; color: var(--hv-text-muted); margin-bottom: 0.375rem; }
.news-list-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.news-list-card p { font-size: 0.875rem; color: var(--hv-text-muted); }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 2rem; }

.sidebar-block {
    background: var(--hv-white);
    border: 1px solid var(--hv-border);
    border-radius: var(--hv-radius-lg);
    padding: 1.5rem;
}
.sidebar-block h4 {
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--hv-primary);
}

.sidebar-block ul { display: flex; flex-direction: column; gap: 0.625rem; }
.sidebar-block li a {
    font-size: 0.9375rem;
    color: var(--hv-text);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}
.sidebar-block li a:hover { color: var(--hv-primary); }

/* --- Profile block --- */
.profile-block {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin: 2rem 0;
}

.profile-photo {
    width: 160px;
    height: 200px;
    flex-shrink: 0;
    border-radius: var(--hv-radius-lg);
    overflow: hidden;
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }

.profile-info blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--hv-primary);
    border-left: 3px solid var(--hv-accent);
    padding-left: 1rem;
    margin-bottom: 1rem;
}

/* --- Woningaanbod --- */
.werkgebied-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.werkgebied-item {
    padding: 1rem 1.25rem;
    background: var(--hv-white);
    border: 1px solid var(--hv-border);
    border-radius: var(--hv-radius);
    font-weight: 600;
    text-align: center;
    transition: border-color var(--hv-transition), background var(--hv-transition);
}
.werkgebied-item:hover { border-color: var(--hv-primary); background: var(--hv-bg-teal-light); }

/* --- Nieuwbouw page --- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    counter-reset: pstep;
}

.process-step {
    text-align: center;
    counter-increment: pstep;
    padding: 1.5rem 1rem;
    background: var(--hv-white);
    border-radius: var(--hv-radius-lg);
    border: 1px solid var(--hv-border);
    position: relative;
}
.process-step::before {
    content: counter(pstep);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--hv-accent);
    color: var(--hv-text);
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
}
.process-step h4 { font-family: var(--font-body); font-size: 0.9375rem; }

/* --- Utility --- */
.text-center { text-align: center; }
.text-muted { color: var(--hv-text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.section-header { max-width: 640px; margin-bottom: 3rem; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header p { color: var(--hv-text-muted); font-size: 1.0625rem; }
.link-arrow { display: inline-flex; align-items: center; gap: 0.375rem; font-weight: 600; }
.link-arrow:hover { gap: 0.625rem; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .news-page-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .facts-bar { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(3, 1fr); }
    .dienst-block { grid-template-columns: 1fr; }
    .dienst-block.reverse { direction: ltr; }
    .values-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    .section { padding: 3rem 0; }
    .section-lg { padding: 4rem 0; }

    .header-top { display: none; }
    .main-nav { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-nav-overlay { display: flex; }

    .hero-full { min-height: 70vh; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content .hero-subtitle { font-size: 1.0625rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }

    .hero-page .hero-content h1 { font-size: 1.75rem; }

    .service-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

    .proof-bar-inner { gap: 0.75rem; font-size: 0.8125rem; }
    .proof-divider { display: none; }

    .partner-wall { gap: 1.5rem; }
    .partner-wall img { height: 28px; }

    .testimonial-block { flex-direction: column; gap: 1rem; }
    .testimonial-accent { width: 40px; height: 4px; min-height: unset; }

    .profile-block { flex-direction: column; }
    .profile-photo { width: 120px; height: 150px; }

    .process-steps { grid-template-columns: repeat(2, 1fr); }

    .news-list-card { grid-template-columns: 1fr; }
    .news-list-card .thumb { height: 180px; }
    .news-list-card .card-body { padding: 1.25rem; }

    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .team-grid .member-photo { width: 140px; height: 175px; }

    .facts-bar { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .process-steps { grid-template-columns: 1fr; }
    .werkgebied-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Sticky mobile CTA --- */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 0.75rem 1rem;
    background: var(--hv-white);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    text-align: center;
}
.mobile-sticky-cta .btn { width: 100%; justify-content: center; }

@media (max-width: 768px) {
    .mobile-sticky-cta { display: block; }
    body { padding-bottom: 72px; }
}

/* --- KVK Info --- */
.kvk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.kvk-item {
    padding: 1rem;
    background: var(--hv-bg-alt);
    border-radius: var(--hv-radius);
    text-align: center;
}
.kvk-item .kvk-label { font-size: 0.8125rem; color: var(--hv-text-muted); }
.kvk-item .kvk-number { font-weight: 700; font-size: 1.0625rem; }

@media (max-width: 768px) {
    .kvk-grid { grid-template-columns: 1fr; }
}

/* --- Category filter tags --- */
.filter-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-tag {
    padding: 0.5rem 1rem;
    border: 1px solid var(--hv-border);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--hv-white);
    cursor: pointer;
    transition: all var(--hv-transition);
    color: var(--hv-text);
    font-family: var(--font-body);
}
.filter-tag:hover,
.filter-tag.active {
    background: var(--hv-primary);
    color: var(--hv-white);
    border-color: var(--hv-primary);
}

/* --- Funda highlight --- */
.funda-highlight {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--hv-white);
    border: 1px solid var(--hv-border);
    border-radius: var(--hv-radius-lg);
    padding: 2rem;
}

.funda-score {
    text-align: center;
    min-width: 100px;
}
.funda-score .score {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--hv-primary);
    line-height: 1;
}
.funda-score .score-label { font-size: 0.8125rem; color: var(--hv-text-muted); }

@media (max-width: 640px) {
    .funda-highlight { flex-direction: column; text-align: center; }
}

/* --- Downloads list --- */
.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: var(--hv-white);
    border: 1px solid var(--hv-border);
    border-radius: var(--hv-radius);
    transition: border-color var(--hv-transition);
}
.download-item:hover { border-color: var(--hv-primary); }
.download-icon { color: var(--hv-primary); flex-shrink: 0; }
