/**
 * Beco Installatietechniek - Premium Design
 * Bold, Dynamic, Professional
 * @version 4.0.0
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    /* Brand Colors - BeCo Blauw & Zwart */
    --primary: #3b9ab0;
    --primary-dark: #2d7a8c;
    --primary-darker: #1f5a68;
    --primary-light: #e8f4f7;
    --primary-glow: rgba(59, 154, 176, 0.35);
    
    /* Accent is nu donkerblauw/zwart ipv oranje */
    --accent: #1a1a2e;
    --accent-dark: #0f0f1a;
    --accent-light: #e8e8ec;
    --accent-glow: rgba(26, 26, 46, 0.3);
    
    /* Neutrals */
    --dark: #0a1628;
    --dark-blue: #0f1d32;
    --gray-900: #1a2332;
    --gray-800: #2d3748;
    --gray-700: #4a5568;
    --gray-600: #718096;
    --gray-500: #a0aec0;
    --gray-400: #cbd5e0;
    --gray-300: #e2e8f0;
    --gray-200: #edf2f7;
    --gray-100: #f7fafc;
    --white: #ffffff;
    
    /* Status */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', var(--font-body);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
    --shadow-xl: 0 30px 70px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 40px var(--primary-glow);
    --shadow-glow-accent: 0 0 40px var(--accent-glow);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); }
h4 { font-size: 1.25rem; }

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

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

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

::selection {
    background: var(--primary);
    color: var(--white);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Header - Sleek & Compact
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s var(--ease);
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    border-bottom-color: var(--gray-200);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    overflow: hidden;
}

.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.header__logo-img {
    height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(59, 154, 176, 0.25));
    transition: all 0.3s var(--ease);
}

.header__logo:hover .header__logo-img {
    filter: drop-shadow(0 4px 16px rgba(59, 154, 176, 0.4));
    transform: scale(1.02);
}

/* Logo badge/highlight voor extra opvallendheid */
.header__logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.3s var(--ease);
}

.header__logo:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.header__logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.header__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: 0 4px 20px var(--primary-glow);
}

/* Navigation */
.header__nav {
    display: none;
}

@media (min-width: 1024px) {
    .header__nav {
        display: flex;
        flex: 1;
        justify-content: center;
    }
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.header__menu > li {
    position: relative;
}

.header__menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}

.header__menu > li > a:hover,
.header__menu > li.current-menu-item > a,
.header__menu > li.current_page_item > a {
    color: var(--primary);
    background: var(--primary-light);
}

/* Dropdown */
.header__menu .dropdown-menu,
.header__menu .sub-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}

.header__menu .dropdown-menu::before,
.header__menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: var(--white);
}

.header__menu li:hover > .dropdown-menu,
.header__menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.header__menu .dropdown-menu a,
.header__menu .sub-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: all 0.2s var(--ease);
}

.header__menu .dropdown-menu a:hover,
.header__menu .sub-menu a:hover {
    color: var(--primary);
    background: var(--primary-light);
    padding-left: 20px;
}

/* Header CTA */
.header__cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__phone {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark);
    background: var(--gray-100);
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease);
}

.header__phone:hover {
    color: var(--white);
    background: var(--primary);
    box-shadow: var(--shadow-glow);
}

.header__phone i {
    font-size: 1rem;
}

@media (min-width: 768px) {
    .header__phone {
        display: flex;
    }
}

/* Mobile Toggle */
.header__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.header__toggle:hover {
    background: var(--primary);
}

.header__toggle:hover span,
.header__toggle:hover span::before,
.header__toggle:hover span::after {
    background: var(--white);
}

.header__toggle span {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.header__toggle span::before,
.header__toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.header__toggle span::before { top: -7px; }
.header__toggle span::after { bottom: -7px; width: 14px; }

@media (min-width: 1024px) {
    .header__toggle { display: none; }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 380px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu__overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    z-index: 1000;
}

.mobile-menu__overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu__logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
}

.mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--gray-700);
    transition: all 0.3s var(--ease);
}

.mobile-menu__close:hover {
    background: var(--error);
    color: var(--white);
}

.mobile-menu__nav {
    flex: 1;
    padding: 24px;
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
}

.mobile-menu__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease);
}

.mobile-menu__list a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.mobile-menu__list li:last-child a {
    border-bottom: none;
}

.mobile-menu__footer {
    padding: 24px;
    background: var(--gray-100);
}

.mobile-menu__contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
}

.mobile-menu__contact i {
    width: 24px;
    color: var(--primary);
}

/* ==========================================================================
   Buttons - Bold & Dynamic
   ========================================================================== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease);
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
    color: var(--white);
}

.btn--accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn--accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--accent-glow);
    color: var(--white);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    box-shadow: inset 0 0 0 2px var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: inset 0 0 0 2px var(--primary), 0 8px 25px var(--primary-glow);
}

.btn--white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow);
}

.btn--white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

.btn--ghost {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn--ghost:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    transform: translateY(-3px);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn--block {
    width: 100%;
}

.btn i {
    font-size: 1em;
    transition: transform 0.3s var(--ease);
}

.btn:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   Hero Section - Dramatic & Immersive
   ========================================================================== */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--dark);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg img,
.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(59, 154, 176, 0.6) 100%),
        radial-gradient(ellipse at 20% 80%, rgba(245, 166, 35, 0.15) 0%, transparent 50%);
}

/* Decorative Elements */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(59, 154, 176, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 28px;
}

.hero__badge i {
    color: var(--accent);
    font-size: 1.125rem;
}

.hero__title {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hero__title span {
    position: relative;
    color: #3b9ab0;
    display: inline-block;
}

.hero__text {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 540px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ==========================================================================
   Stats Bar - Bold Numbers
   ========================================================================== */
.stats {
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.stats__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .stats__inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stats__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 28px;
    background: var(--gray-100);
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.stats__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transition: height 0.4s var(--ease);
}

.stats__item:hover::before {
    height: 100%;
}

.stats__item:hover {
    background: var(--gray-200);
}

.stats__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--gray-200);
}

.stats__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(59, 154, 176, 0.2) 100%);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.stats__item:hover .stats__icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: scale(1.1);
}

.stats__content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 4px;
}

.stats__content p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .section {
        padding: 120px 0;
    }
}

.section--gray {
    background: var(--gray-100);
}

.section--after-stats {
    padding-top: 140px;
    margin-top: -40px;
}

.section--dark {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 100%);
    color: var(--white);
}

.section--dark::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(59, 154, 176, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section--dark h2,
.section--dark h3 {
    color: var(--white);
}

.section--pattern {
    background-color: var(--gray-100);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 154, 176, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.06) 0%, transparent 40%);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section__label::before,
.section__label::after {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section--dark .section__label {
    color: var(--accent);
}

.section--dark .section__label::before,
.section--dark .section__label::after {
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.section__title {
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section__desc {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.section--dark .section__desc {
    color: var(--gray-400);
}

/* ==========================================================================
   Service Cards - Premium Look
   ========================================================================== */
.services-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s var(--ease);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__image img {
    transform: scale(1.1);
}

.service-card__icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 1.375rem;
    box-shadow: 0 8px 20px var(--primary-glow);
    z-index: 2;
    transition: all 0.4s var(--ease);
}

.service-card:hover .service-card__icon {
    transform: rotate(10deg) scale(1.1);
}

.service-card__body {
    padding: 24px 28px 28px;
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card__title a {
    color: var(--dark);
    transition: color 0.3s var(--ease);
}

.service-card__title a:hover {
    color: var(--primary);
}

.service-card__text {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
}

.service-card__link i {
    transition: transform 0.3s var(--ease);
}

.service-card__link:hover i {
    transform: translateX(6px);
}

/* ==========================================================================
   About Section - Visual Impact
   ========================================================================== */
.about {
    display: grid;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.about__images {
    position: relative;
}

.about__image-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image-main::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--white);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.about__image-main img {
    width: 100%;
    height: auto;
}

/* Decorative frame */
.about__images::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    z-index: -1;
}

.about__images::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 40%;
    height: 40%;
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(245, 166, 35, 0.1) 100%);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.about__badge {
    position: absolute;
    top: -30px;
    left: -20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-xl);
    color: var(--white);
    box-shadow: 0 10px 30px var(--accent-glow);
    z-index: 10;
}

.about__badge-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.about__badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.about__content {
    max-width: 540px;
}

.about__text {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 28px;
}

.about__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
    padding-left: 0;
    list-style: none;
}

.about__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-800);
}

.about__list li i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--success-light);
    border-radius: var(--radius);
    color: var(--success);
    font-size: 0.875rem;
}

/* ==========================================================================
   Projects - Stunning Gallery
   ========================================================================== */
.projects-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 380px;
    cursor: pointer;
}

.project-card__image {
    position: absolute;
    inset: 0;
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.project-card:hover .project-card__image img {
    transform: scale(1.1);
}

.project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 22, 40, 0.95) 0%,
        rgba(10, 22, 40, 0.4) 50%,
        transparent 100%
    );
    transition: all 0.5s var(--ease);
}

.project-card:hover .project-card__overlay {
    background: linear-gradient(
        to top,
        rgba(10, 22, 40, 0.98) 0%,
        rgba(59, 154, 176, 0.4) 50%,
        rgba(59, 154, 176, 0.2) 100%
    );
}

.project-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease);
}

.project-card:hover .project-card__content {
    transform: translateY(0);
}

.project-card__category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245, 166, 35, 0.2);
    border: 1px solid var(--accent);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.project-card__title {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.project-card__title a {
    color: var(--white);
}

.project-card__title a:hover {
    color: var(--accent);
}

.project-card__link {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 1.125rem;
    opacity: 0;
    transform: translateY(-20px) rotate(-45deg);
    transition: all 0.4s var(--ease);
    z-index: 2;
}

.project-card:hover .project-card__link {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.project-card__link:hover {
    background: var(--primary);
    color: var(--white);
}

/* ==========================================================================
   Projects Showcase - Creative Layout
   ========================================================================== */
.projects-showcase {
    overflow: visible;
    position: relative;
}

/* Background decoration */
.projects-showcase__decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.projects-showcase__circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 154, 176, 0.15) 0%, transparent 70%);
}

.projects-showcase__circle--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.projects-showcase__circle--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Floating Stats Cards */
.floating-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .floating-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.floating-stat {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.floating-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.floating-stat:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.floating-stat:hover::before {
    transform: scaleX(1);
}

.floating-stat--highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
}

.floating-stat--highlight:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.floating-stat__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.floating-stat--highlight .floating-stat__icon {
    background: rgba(255, 255, 255, 0.2);
}

.floating-stat__content {
    flex: 1;
    min-width: 0;
}

.floating-stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.floating-stat__number small {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
}

.floating-stat--highlight .floating-stat__number small {
    color: rgba(255, 255, 255, 0.8);
}

.floating-stat__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.floating-stat--highlight .floating-stat__label {
    color: rgba(255, 255, 255, 0.8);
}

/* Section header light variant */
.section__header--light .section__title {
    color: var(--white);
}

.section__header--light .section__desc {
    color: rgba(255, 255, 255, 0.7);
}

.section__label--accent {
    color: var(--accent);
    background: rgba(245, 166, 35, 0.15);
}

/* Masonry Grid */
.projects-masonry {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .projects-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }
    
    .projects-masonry__item--featured {
        grid-row: span 2;
    }
    
    .projects-masonry__item--wide {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .projects-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 300px;
    }
}

.projects-masonry__item {
    min-height: 280px;
}

/* Project Card V2 */
.project-card-v2 {
    position: relative;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--dark);
}

.project-card-v2__image {
    position: absolute;
    inset: 0;
}

.project-card-v2__image img,
.project-card-v2__image .default-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.project-card-v2:hover .project-card-v2__image img,
.project-card-v2:hover .project-card-v2__image .default-placeholder {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.project-card-v2__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 30%,
        rgba(10, 22, 40, 0.5) 60%,
        rgba(10, 22, 40, 0.95) 100%
    );
    transition: all 0.5s var(--ease);
}

.project-card-v2:hover .project-card-v2__overlay {
    background: linear-gradient(
        180deg,
        rgba(59, 154, 176, 0.1) 0%,
        rgba(59, 154, 176, 0.2) 30%,
        rgba(10, 22, 40, 0.7) 60%,
        rgba(10, 22, 40, 0.98) 100%
    );
}

.project-card-v2__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.7s var(--ease);
}

.project-card-v2:hover .project-card-v2__shine {
    left: 150%;
}

.project-card-v2__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease);
}

.project-card-v2:hover .project-card-v2__content {
    transform: translateY(0);
}

.project-card-v2__tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(59, 154, 176, 0.9);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.project-card-v2__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}

.project-card-v2__title a {
    color: var(--white);
    transition: color 0.3s var(--ease);
}

.project-card-v2__title a:hover {
    color: var(--primary-light);
}

.projects-masonry__item--featured .project-card-v2__title {
    font-size: 1.75rem;
}

.projects-masonry__item--featured .project-card-v2__content {
    padding: 36px;
}

.project-card-v2__desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease) 0.1s;
}

.project-card-v2:hover .project-card-v2__desc {
    opacity: 1;
    transform: translateY(0);
}

.project-card-v2__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    color: var(--dark);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease) 0.15s;
}

.project-card-v2:hover .project-card-v2__btn {
    opacity: 1;
    transform: translateY(0);
}

.project-card-v2__btn:hover {
    background: var(--primary);
    color: var(--white);
}

.project-card-v2__btn i {
    transition: transform 0.3s var(--ease);
}

.project-card-v2__btn:hover i {
    transform: translateX(4px);
}

/* Glow Button */
.btn--glow {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    overflow: hidden;
}

.btn--glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s var(--ease);
}

.btn--glow:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
}

.btn--glow:hover::before {
    opacity: 1;
}
}
    transform: scale(1.1);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--primary-light);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.testimonial-card__rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 1rem;
}

.testimonial-card__text {
    position: relative;
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    z-index: 1;
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
}

.testimonial-card__author strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-card__author span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    gap: 60px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.contact-info__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease);
}

.contact-info__item:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
    transform: translateX(8px);
}

.contact-info__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(59, 154, 176, 0.2) 100%);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-size: 1.375rem;
    flex-shrink: 0;
}

.contact-info__content h4 {
    font-size: 1.0625rem;
    margin-bottom: 6px;
}

.contact-info__content a,
.contact-info__content span {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.contact-info__content a:hover {
    color: var(--primary);
}

.contact-info__note {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--gray-600);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-required {
    color: var(--error);
    font-weight: 700;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    /* 16px op mobile voorkomt dat iOS Safari inzoomt bij focus */
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    color: var(--dark);
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius);
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
    /* iOS-specifieke styling reset */
    -webkit-appearance: none;
    appearance: none;
}

/* Select pijltje terug, want -webkit-appearance: none verbergt hem */
select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

@media (min-width: 768px) {
    .form-control {
        /* Op desktop mag het iets kleiner */
        font-size: 1rem;
    }
}

.form-control:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.form-control::placeholder {
    color: var(--gray-500);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
}

/* Row - 1 kolom op mobile, 2 op tablet+ */
.form-row {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* Honeypot: visueel & voor screenreaders verbergen, maar wel in DOM houden */
.beco-form__hp {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Privacy checkbox */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.form-check-input {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-check-label {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--gray-700);
    cursor: pointer;
}

.form-check-label a {
    color: var(--primary);
    text-decoration: underline;
}

.form-check-label a:hover {
    color: var(--primary-dark);
}

/* Status message (success/error) */
.form-status {
    display: none;
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: var(--radius);
    font-size: 0.9375rem;
    line-height: 1.5;
    gap: 10px;
    align-items: flex-start;
}

.form-status--success,
.form-status--error {
    display: flex;
}

.form-status--success {
    background: var(--success-light, #d1fae5);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status--error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-status__icon {
    flex-shrink: 0;
    font-size: 1.15rem;
    line-height: 1;
    margin-top: 1px;
}

.form-status--success .form-status__icon { color: var(--success, #10b981); }
.form-status--error .form-status__icon   { color: var(--error, #ef4444); }

/* Submit loading state */
.form-submit {
    transition: opacity 0.2s var(--ease);
}

.form-submit.is-loading {
    opacity: 0.7;
    cursor: wait;
}

.form-submit.is-loading .bi-send {
    animation: beco-spin 1s linear infinite;
}

@keyframes beco-spin {
    to { transform: rotate(360deg); }
}

.form-note {
    text-align: center;
    margin-top: 14px;
    color: var(--gray-500);
}

/* ==========================================================================
   CTA Section - Bold & Compelling
   ========================================================================== */
.cta {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(245, 166, 35, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta__inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    z-index: 1;
}

.cta__content h2 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.cta__content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    margin: 0;
}

.cta__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Footer - Professional & Complete
   ========================================================================== */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding-top: 80px;
}

.footer__grid {
    display: grid;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__logo i {
    color: var(--accent);
}

.footer__logo img {
    height: 50px;
    width: auto;
    background: #fff;
    border-radius: 8px;
    padding: 6px 10px;
}

.footer__desc {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1.125rem;
    transition: all 0.3s var(--ease);
}

.footer__social a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.footer__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__menu a {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: all 0.3s var(--ease);
}

.footer__menu a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9375rem;
}

.footer__contact-item i {
    color: var(--primary);
    margin-top: 4px;
}

.footer__contact-item a {
    color: var(--gray-400);
}

.footer__contact-item a:hover {
    color: var(--white);
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
}

.footer__copyright {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.footer__copyright-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__credit {
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin: 0;
}

.footer__credit a {
    color: var(--gray-500);
    transition: color 0.3s var(--ease);
}

.footer__credit a:hover {
    color: var(--white);
}

.footer__links {
    display: flex;
    gap: 28px;
}

.footer__links a {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer__links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Page Hero
   ========================================================================== */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--dark);
    overflow: hidden;
}

.page-hero--compact {
    padding: 120px 0 60px;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(59, 154, 176, 0.7) 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--gray-100) 0%, transparent 100%);
    z-index: 1;
}

.section--dark + .page-hero::before,
.page-hero + .section:not(.section--gray)::before {
    display: none;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.page-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.page-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-hero__desc {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-100); }
.bg-dark { background: var(--dark); }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.pb-0 { padding-bottom: 0; }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }

/* Placeholder */
.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--gray-200) 100%);
    color: var(--gray-400);
    font-size: 2.5rem;
}

/* Default placeholder - professionele gradient achtergrond */
.default-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: 
        linear-gradient(135deg, 
            rgba(59, 154, 176, 0.08) 0%, 
            rgba(59, 154, 176, 0.03) 50%,
            rgba(245, 166, 35, 0.05) 100%
        ),
        linear-gradient(45deg, 
            var(--gray-100) 25%, 
            transparent 25%, 
            transparent 75%, 
            var(--gray-100) 75%
        ),
        linear-gradient(45deg, 
            var(--gray-100) 25%, 
            var(--gray-200) 25%, 
            var(--gray-200) 75%, 
            var(--gray-100) 75%
        );
    background-size: 100% 100%, 40px 40px, 40px 40px;
    background-position: 0 0, 0 0, 20px 20px;
}

/* About sectie placeholder */
.about-placeholder {
    min-height: 450px;
    border-radius: var(--radius-xl);
}

/* Service card placeholder */
.service-card__image .default-placeholder {
    min-height: 220px;
}

/* Project card placeholder */
.project-card__image .default-placeholder {
    min-height: 100%;
    position: absolute;
    inset: 0;
}

/* Page hero placeholder */
.page-hero__bg .default-placeholder {
    min-height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

/* Lead text */
.lead {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.9;
}

/* Content block */
.content-block {
    color: var(--gray-700);
    line-height: 1.9;
}

.content-block h2 { margin-top: 48px; margin-bottom: 24px; }
.content-block h3 { margin-top: 36px; margin-bottom: 20px; }
.content-block p { margin-bottom: 24px; }
.content-block ul, .content-block ol { margin: 24px 0; padding-left: 28px; }
.content-block li { margin-bottom: 12px; }
.content-block img { border-radius: var(--radius-xl); margin: 40px 0; }

/* Check list */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    margin: 28px 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.0625rem;
    color: var(--gray-700);
}

.check-list li i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success-light);
    border-radius: var(--radius-sm);
    color: var(--success);
    font-size: 0.75rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ==========================================================================
   Additional Components
   ========================================================================== */

/* Feature Cards */
.features-grid {
    display: grid;
    gap: 28px;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(59, 154, 176, 0.15) 100%);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: all 0.4s var(--ease);
}

.feature-card:hover .feature-card__icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: scale(1.1);
}

.feature-card__title {
    font-size: 1.1875rem;
    margin-bottom: 12px;
}

.feature-card__text {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Process Steps */
.process-grid {
    display: grid;
    gap: 28px;
}

@media (min-width: 768px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
    position: relative;
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
}

.process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 8px 20px var(--primary-glow);
}

.process-step__title {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.process-step__text {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Intro Block */
.intro-block {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .intro-block {
        grid-template-columns: 1.5fr 1fr;
        gap: 80px;
    }
}

.intro-block__content h2 {
    margin-bottom: 24px;
}

.intro-block__content p {
    color: var(--gray-600);
    line-height: 1.9;
}

.intro-block__stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.stat-item__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-item__label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* Service Cards Large/Horizontal */
.services-grid--large {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card--horizontal {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .service-card--horizontal {
        grid-template-columns: 350px 1fr;
    }
    
    .service-card--horizontal .service-card__image {
        height: 100%;
        min-height: 320px;
    }
    
    .service-card--horizontal .service-card__body {
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.service-card--horizontal .service-card__title {
    font-size: 1.5rem;
}

.service-card--horizontal .service-card__text {
    font-size: 1.0625rem;
}

.service-card__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 24px 0;
    padding: 0;
}

@media (min-width: 500px) {
    .service-card__features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
}

.service-card__features li i {
    color: var(--success);
}

/* Sidebar */
.service-detail,
.project-detail,
.article-layout {
    display: grid;
    gap: 48px;
}

@media (min-width: 1024px) {
    .service-detail,
    .project-detail,
    .article-layout {
        grid-template-columns: 1fr 380px;
    }
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}

.sidebar-card:last-child { margin-bottom: 0; }

.sidebar-card h4 {
    font-size: 1.1875rem;
    margin-bottom: 16px;
}

.sidebar-card p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.sidebar-card--cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
    color: var(--white);
}

.sidebar-card--cta h4 { color: var(--white); }
.sidebar-card--cta p { color: rgba(255,255,255,0.85); }

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
    list-style: none;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--gray-100);
    border-radius: var(--radius);
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s var(--ease);
}

.sidebar-menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 24px;
}

.sidebar-menu a i { color: var(--primary); }

.sidebar-usps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 0;
    list-style: none;
}

.sidebar-usps li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.sidebar-usps li i { color: var(--success); }

/* Project specs */
.project-specs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.project-specs li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gray-200);
}

.project-specs li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.project-specs__label {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.project-specs__value {
    font-weight: 700;
    color: var(--dark);
}

/* Gallery */
.gallery-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    margin: 36px 0;
}

@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* Contact Emergency */
.contact-emergency {
    display: flex;
    gap: 24px;
    padding: 28px;
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(245, 166, 35, 0.15) 100%);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--accent);
    margin-top: 36px;
}

.contact-emergency__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-emergency__content h4 {
    color: var(--accent-dark);
    margin-bottom: 10px;
}

.contact-emergency__content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* FAQ */
.faq-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease);
}

.faq-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.faq-item__question {
    font-size: 1.0625rem;
    margin-bottom: 14px;
}

.faq-item__answer {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Map */
.map-section {
    height: 450px;
    background: var(--gray-200);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Filter Bar */
.filter-bar {
    padding: 28px 0;
    background: var(--gray-100);
}

.filter-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.filter-bar__label {
    font-weight: 700;
    color: var(--gray-600);
}

.filter-bar__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xs);
    transition: all 0.3s var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    background: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* Stats Block */
.stats-block {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .stats-block { grid-template-columns: repeat(4, 1fr); }
}

.stats-block__item {
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
}

.stats-block__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stats-block__label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
}

/* Empty State & Error Page */
.empty-state {
    text-align: center;
    padding: 100px 20px;
}

.empty-state i {
    font-size: 5rem;
    color: var(--gray-300);
    margin-bottom: 28px;
}

.empty-state h3 { margin-bottom: 14px; }
.empty-state p { color: var(--gray-600); margin-bottom: 36px; }

.empty-state__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.error-page {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 100px 0;
    background: var(--gray-100);
}

.error-page__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-page__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(59, 154, 176, 0.2) 100%);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 28px;
}

.error-page__code {
    display: block;
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.error-page__title { margin-bottom: 16px; }

.error-page__text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 36px;
}

.error-page__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
}

.error-page__search {
    padding: 36px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    margin-bottom: 56px;
}

.error-page__search p {
    margin-bottom: 20px;
    color: var(--gray-600);
}

.error-page__links h4 { margin-bottom: 24px; }

.error-page__links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.error-page__links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--gray-700);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.error-page__links a:hover {
    color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.error-page__links a i { color: var(--primary); }

/* Search */
.search-form {
    display: flex;
    gap: 12px;
}

.search-form input {
    flex: 1;
    padding: 14px 20px;
    font-size: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.search-form button {
    padding: 14px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.search-form button:hover {
    background: var(--primary-dark);
}

.search-form--large input { padding: 18px 24px; font-size: 1.125rem; }
.search-form--large button { padding: 18px 32px; }

.search-header { margin-bottom: 56px; }

.search-results {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.search-result {
    display: flex;
    gap: 28px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s var(--ease);
}

.search-result:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.search-result__content { flex: 1; }

.search-result__type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.search-result__title {
    font-size: 1.375rem;
    margin-bottom: 10px;
}

.search-result__title a { color: var(--dark); }
.search-result__title a:hover { color: var(--primary); }

.search-result__excerpt {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 14px;
    line-height: 1.7;
}

.search-result__link {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.search-result__image {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.search-result__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pagination */
.pagination-wrapper { margin-top: 56px; }

.pagination, .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    background: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

/* Article styles */
.article-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--dark);
}

.article-hero__bg {
    position: absolute;
    inset: 0;
}

.article-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.article-hero__bg .default-placeholder {
    position: absolute;
    inset: 0;
    min-height: 100%;
    opacity: 0.4;
}

.article-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark) 0%, rgba(10, 22, 40, 0.7) 100%);
}

.article-hero__content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.article-hero__category {
    display: inline-block;
    padding: 8px 18px;
    background: var(--primary);
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.article-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 24px;
}

.article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.article-hero__meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
}

.article-intro {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--gray-200);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
}

.article-tags__label {
    font-weight: 700;
    color: var(--gray-600);
}

.article-tag {
    padding: 8px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.3s var(--ease);
}

.article-tag:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.article-share__label {
    font-weight: 700;
    color: var(--gray-600);
}

.article-share__buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    color: var(--white);
    transition: all 0.3s var(--ease);
}

.share-btn--facebook { background: #1877f2; }
.share-btn--twitter { background: #000; }
.share-btn--linkedin { background: #0a66c2; }
.share-btn--email { background: var(--gray-600); }

.share-btn:hover {
    transform: translateY(-4px);
    color: var(--white);
}

/* Post Cards */
.posts-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .posts-grid { grid-template-columns: repeat(3, 1fr); }
}

.post-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s var(--ease);
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.post-card__image {
    height: 220px;
    overflow: hidden;
}

.post-card__image .default-placeholder {
    min-height: 220px;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.post-card:hover .post-card__image img {
    transform: scale(1.08);
}

.post-card__body { padding: 28px; }

.post-card__date {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-500);
}

.post-card__title {
    font-size: 1.1875rem;
    margin: 10px 0 14px;
}

.post-card__title a { color: var(--dark); }
.post-card__title a:hover { color: var(--primary); }

.post-card__excerpt {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 18px;
    line-height: 1.7;
}

.post-card__link {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Project meta */
.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 28px;
}

.project-meta__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
}

.project-meta__item i { color: var(--accent); }

/* Project card meta */
.project-card__meta {
    display: flex;
    gap: 20px;
    margin-top: 14px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.project-card__meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Page content */
.page-content {
    max-width: 850px;
    margin: 0 auto;
}

/* Service Benefits */
.service-benefits {
    margin: 48px 0;
    padding: 36px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
}

.service-benefits h3 { margin-bottom: 24px; }

/* Galleries */
.service-gallery, .project-gallery {
    margin-top: 48px;
}

.service-gallery h3, .project-gallery h3 {
    margin-bottom: 24px;
}

.project-intro { margin-bottom: 36px; }

/* Button block spacing */
.btn--block + .btn--block { margin-top: 14px; }

/* Featured Post */
.featured-post {
    display: grid;
    gap: 36px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
    .featured-post {
        grid-template-columns: 1.2fr 1fr;
    }
}

.featured-post__image {
    height: 320px;
}

.featured-post__image .default-placeholder {
    min-height: 320px;
}

@media (min-width: 1024px) {
    .featured-post__image {
        height: 100%;
        min-height: 450px;
    }
    
    .featured-post__image .default-placeholder {
        min-height: 450px;
    }
}

.featured-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post__content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post__category {
    display: inline-block;
    padding: 8px 18px;
    background: var(--primary-light);
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.featured-post__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 18px;
}

.featured-post__title a { color: var(--dark); }
.featured-post__title a:hover { color: var(--primary); }

.featured-post__excerpt {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.featured-post__meta {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
}

.featured-post__meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* =====================
   Diensten Nav & Blocks
   ===================== */
.diensten-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 10px;
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .diensten-nav {
        gap: 16px;
        margin-bottom: 56px;
    }
}
/* Desktop: 5 kolommen (5 + 4 over 2 rijen bij 9 items) */
@media (min-width: 1024px) {
    .diensten-nav {
        grid-template-columns: repeat(5, 1fr);
    }
}

.diensten-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Icoon altijd boven */
    gap: 10px;
    padding: 18px 10px 16px;
    background: var(--white, #fff);
    border-radius: var(--radius-lg, 12px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
    height: 100%; /* vult de grid-row */
    min-height: 120px;
}
@media (min-width: 768px) {
    .diensten-nav__item {
        padding: 22px 14px 18px;
        min-height: 140px;
    }
}
.diensten-nav__item:hover {
    border-color: var(--primary, #3b9ab0);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(59,154,176,0.15);
}

.diensten-nav__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light, #e8f4f7);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--primary, #3b9ab0);
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}
@media (min-width: 768px) {
    .diensten-nav__icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
}
.diensten-nav__item:hover .diensten-nav__icon {
    background: var(--primary, #3b9ab0);
    color: #fff;
}

.diensten-nav__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark, #1a1a2e);
    line-height: 1.3;
    /* Balans: lange woorden afbreken, tekst netjes centreren */
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
    /* Vul de resterende verticale ruimte zodat icoon bovenaan blijft staan
       en korte labels niet het midden 'omhoogtrekken' */
    margin-top: auto;
    margin-bottom: auto;
}
@media (min-width: 768px) {
    .diensten-nav__label {
        font-size: 0.8125rem;
    }
}

.diensten-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.dienst-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--white, #fff);
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s ease;
    scroll-margin-top: 100px;
}
.dienst-block:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
@media (min-width: 768px) {
    .dienst-block {
        grid-template-columns: 1fr 1.2fr;
    }
    .dienst-block--reverse {
        grid-template-columns: 1.2fr 1fr;
    }
    .dienst-block--reverse .dienst-block__image {
        order: 2;
    }
    .dienst-block--reverse .dienst-block__content {
        order: 1;
    }
}

.dienst-block__image {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}
.dienst-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}
.dienst-block:hover .dienst-block__image img {
    transform: scale(1.05);
}

.dienst-block__icon-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary, #3b9ab0);
    color: #fff;
    border-radius: 12px;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(59,154,176,0.4);
}

.dienst-block__number {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    z-index: 1;
}

.dienst-block__content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 768px) {
    .dienst-block__content { padding: 40px 44px; }
}

.dienst-block__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.dienst-block__title a {
    color: var(--dark, #1a1a2e);
    text-decoration: none;
}
.dienst-block__title a:hover {
    color: var(--primary, #3b9ab0);
}

.dienst-block__text {
    color: var(--gray-600, #6b7280);
    line-height: 1.7;
    margin-bottom: 20px;
}

.dienst-block__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
@media (min-width: 500px) {
    .dienst-block__features { grid-template-columns: 1fr 1fr; }
}
.dienst-block__features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gray-700, #374151);
    line-height: 1.5;
}
.dienst-block__features li i {
    color: var(--primary, #3b9ab0);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.dienst-block__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Keurmerken Banner */
.keurmerken-banner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    padding: 40px;
    background: var(--white, #fff);
    border-radius: var(--radius-lg, 12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
@media (min-width: 768px) {
    .keurmerken-banner {
        grid-template-columns: 1.4fr 1fr;
        padding: 48px 56px;
    }
}

.keurmerken-banner__text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark, #1a1a2e);
    margin-bottom: 12px;
}
.keurmerken-banner__text p {
    color: var(--gray-600, #6b7280);
    line-height: 1.7;
    margin: 0;
}

.keurmerken-banner__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.keurmerken-banner__logos img {
    max-height: 60px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
.keurmerken-banner__logos img:hover {
    opacity: 1;
}

/* Footer Certifications */
.footer__certifications {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    margin-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer__certifications-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}
.footer__certifications-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer__certifications-logos img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.55;
    transition: opacity 0.3s ease;
}
.footer__certifications-logos img:hover {
    opacity: 0.85;
}

/* =====================
   Ons Werk Gallery
   ===================== */
.filter-btn__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    margin-left: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(0,0,0,0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}
.filter-btn.active .filter-btn__count,
.filter-btn:hover .filter-btn__count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.werk-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 991px) {
    .werk-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .werk-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.werk-gallery__item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.werk-gallery__item.hidden {
    display: none;
}

.werk-card {
    position: relative;
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.werk-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.werk-card__image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
}
.werk-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.werk-card:hover .werk-card__image img {
    transform: scale(1.08);
}

.werk-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.werk-card:hover .werk-card__overlay {
    opacity: 1;
}

.werk-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}
.werk-card:hover .werk-card__content {
    transform: translateY(0);
    opacity: 1;
}

.werk-card__tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--primary, #3b9ab0);
    border-radius: 20px;
    margin-bottom: 8px;
}

.werk-card__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.werk-card__zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    color: var(--dark, #1a1a2e);
    font-size: 1rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 2;
}
.werk-card:hover .werk-card__zoom {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox */
.werk-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.werk-lightbox.active {
    display: flex;
}

.werk-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(10px);
}

.werk-lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.werk-lightbox__content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.werk-lightbox__caption {
    color: #fff;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 16px;
    opacity: 0.85;
}

.werk-lightbox__close,
.werk-lightbox__prev,
.werk-lightbox__next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.werk-lightbox__close:hover,
.werk-lightbox__prev:hover,
.werk-lightbox__next:hover {
    background: var(--primary, #3b9ab0);
    border-color: var(--primary, #3b9ab0);
}

.werk-lightbox__close {
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
}

.werk-lightbox__prev,
.werk-lightbox__next {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
}
.werk-lightbox__prev { left: -70px; }
.werk-lightbox__next { right: -70px; }

@media (max-width: 991px) {
    .werk-lightbox__prev { left: 10px; }
    .werk-lightbox__next { right: 10px; }
    .werk-lightbox__close { top: 10px; right: 10px; }
}

/* Ons Werk Showcase on Homepage */
.werk-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
}
.werk-showcase .werk-card {
    aspect-ratio: auto;
    height: 100%;
}
.werk-showcase__item--featured {
    grid-column: span 2;
    grid-row: span 2;
}
@media (max-width: 991px) {
    .werk-showcase {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 180px);
    }
    .werk-showcase__item--featured {
        grid-column: span 2;
        grid-row: span 2;
    }
}
@media (max-width: 767px) {
    .werk-showcase {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 12px;
    }
    .werk-showcase .werk-card {
        aspect-ratio: 1 / 1;
    }
    .werk-showcase__item--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* ==========================================================================
   Mobile & Tablet polish (v1.6.0 - livegang)
   ========================================================================== */

/* Base — voorkom horizontaal scrollen door breder-dan-viewport content */
html, body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    -webkit-tap-highlight-color: rgba(59, 154, 176, 0.15);
}

/* Images & media flexibel maken */
img, video, iframe {
    max-width: 100%;
}

iframe {
    display: block;
}

/* Alle interactieve elementen voldoen aan WCAG tap target (44x44) */
a.btn, button.btn, .header__toggle, .mobile-menu__close {
    min-height: 44px;
}

/* Alle inputs en selects: minimaal 44px hoog zodat je ze met een vinger raakt */
.form-control,
.form-check-input {
    min-height: 44px;
}

.form-check-input {
    min-height: 22px; /* checkbox is uitzondering */
}

@media (max-width: 767px) {

    /* Container padding iets strakker op klein scherm */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* --- Header op mobiel --- */
    .header__inner {
        gap: 8px;
    }
    .header__cta {
        gap: 8px;
    }
    /* "Offerte" knop kleiner op klein scherm zodat alles past */
    .header__cta .btn--sm {
        padding: 10px 14px;
        font-size: 0.8125rem;
    }
    .header__cta .btn--sm i {
        display: none;
    }

    /* Page hero: meer ruimte onder fixed header, compactere bottom + type */
    .page-hero {
        padding-top: 130px;
        padding-bottom: 56px;
    }
    .page-hero--compact {
        padding-top: 120px;
        padding-bottom: 48px;
    }
    .page-hero__label {
        font-size: 0.8125rem;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }
    .page-hero__title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        line-height: 1.15;
    }
    .page-hero__desc {
        font-size: 1rem;
    }

    /* Section-spacing compacter op mobiel */
    .section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    /* --- Homepage hero op mobiel --- */
    .hero__title {
        /* Was clamp(2.75rem, 7vw, 4.5rem) — "installatietechniek" viel uit het scherm */
        font-size: clamp(2rem, 9vw, 2.75rem);
        line-height: 1.1;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    .hero__text {
        font-size: 1.0625rem;
        line-height: 1.65;
        margin-bottom: 28px;
    }
    .hero__badge {
        font-size: 0.8125rem;
    }
    .hero__actions {
        gap: 12px;
    }
    .hero__actions .btn {
        width: 100%;
    }

    /* --- Stats blok op mobiel --- 
       Was: 2 kolommen met icoon+tekst naast elkaar → tekst sneed af.
       Nu:  2 kolommen, verticaal gestapeld (icoon boven, tekst eronder). */
    .stats {
        margin-top: -32px;
    }
    .stats__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 16px;
        text-align: left;
    }
    .stats__icon {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
        border-radius: var(--radius);
    }
    .stats__content {
        width: 100%;
        min-width: 0;
    }
    .stats__content h4 {
        font-size: 1rem;
        line-height: 1.25;
        margin: 0 0 4px;
        /* Voorkom afsnijden */
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .stats__content p {
        font-size: 0.8125rem;
        line-height: 1.4;
    }
    /* Kolom-scheiding is visueel te druk in 2-koloms mobile - vervangen door subtiele borders */
    .stats__item:not(:last-child)::after {
        display: none;
    }
    .stats__item {
        border-right: 1px solid var(--gray-200);
        border-bottom: 1px solid var(--gray-200);
    }
    .stats__item:nth-child(2n) { border-right: none; }
    .stats__item:nth-last-child(-n+2) { border-bottom: none; }

    /* --- Ruimte tussen stats en volgende sectie --- */
    .section--after-stats {
        padding-top: 64px !important;
        margin-top: 0;
    }
    .section__header {
        margin-bottom: 32px;
    }

    /* --- Contact pagina --- */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .contact-info__list {
        gap: 20px;
    }

    .contact-info__item {
        gap: 14px;
    }

    .contact-info__icon {
        flex-shrink: 0;
    }

    /* Spoed-box: stack op mobiel */
    .contact-emergency {
        flex-direction: column;
        text-align: left;
        gap: 16px;
    }
    .contact-emergency .btn {
        width: 100%;
    }

    /* Form spacing ietsje compacter */
    .contact-form {
        padding: 24px 20px;
    }
    .contact-form h3 {
        font-size: 1.25rem;
    }

    /* Footer grid naar 1 kolom met goede spacing */
    .footer__grid {
        gap: 32px;
    }
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
    }
    .footer__certifications {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    /* Map iets kleiner op mobiel */
    .map-section iframe {
        height: 320px;
    }

    /* FAQ op 1 kolom */
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    /* Buttons: grotere tap target op mobiel */
    .btn {
        padding: 14px 22px;
    }
    .btn--sm {
        padding: 10px 16px;
    }
    .btn--lg {
        padding: 16px 26px;
        font-size: 1rem;
    }

    /* Breadcrumb op mobiel */
    .breadcrumb-nav {
        font-size: 0.8125rem;
    }
    .breadcrumb {
        flex-wrap: wrap;
    }
}

/* Tablet tussenvorm (768-1023) — mobile menu toggle werkt nog, maar layout breder */
@media (min-width: 768px) and (max-width: 1023px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 48px;
    }
    .footer__grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .page-hero__title {
        font-size: clamp(2rem, 5vw, 2.75rem);
    }
}

/* Mobile menu: betere toegankelijkheid */
@media (max-width: 1023px) {
    .mobile-menu__list a {
        min-height: 48px;
        padding: 14px 0;
        font-size: 1rem;
    }
    .mobile-menu__contact {
        padding: 12px 0;
        min-height: 44px;
    }
}

/* Reduceer animaties voor mensen die dat willen */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print */
@media print {
    .header, .footer, .btn, .mobile-menu, .cta {
        display: none !important;
    }
    .main { padding-top: 0; }
}
