/* =====================
   RESET & BASE
   ===================== */

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

:root {
    --color-primary:      #1e3a5f;
    --color-accent:       #2563eb;
    --color-accent-hover: #1d4ed8;
    --color-bg:           #f8fafc;
    --color-bg-alt:       #eef2f7;
    --color-white:        #ffffff;
    --color-text:         #1e293b;
    --color-text-muted:   #64748b;
    --color-border:       #e2e8f0;
    --font-family:        'Segoe UI', system-ui, -apple-system, sans-serif;
    --border-radius:      8px;
    --max-width:          1100px;
    --shadow:             0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-blue:        0 8px 24px rgba(37, 99, 235, 0.18);
    --gradient-primary:   linear-gradient(135deg, var(--color-primary) 0%, #0f2340 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
}

/* =====================
   CONTAINER
   ===================== */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =====================
   HEADER & NAV
   ===================== */

header {
    background-color: rgba(32, 58, 96, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

header.scrolled {
    background-color: #2a5080;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: calc(var(--scroll-progress, 0) * 1%);
    background: linear-gradient(90deg, #60a5fa, var(--color-accent), #93c5fd);
    pointer-events: none;
    z-index: 1;
    transition: width 0.1s linear;
}

nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.75rem 1.5rem 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: block;
}

.logo img {
    height: 64px;
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

nav ul a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.4rem 0.75rem;
    border-radius: var(--border-radius);
    transition: color 0.2s, background-color 0.2s;
}

nav ul a:hover {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.12);
}

nav ul a.nav-active {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.18);
    font-weight: 600;
}

/* Dropdown */

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    cursor: pointer;
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    min-width: 220px;
    flex-direction: column;
    gap: 0;
    padding: 0.4rem 0;
    z-index: 200;
}

.nav-dropdown > a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
}

.nav-dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 0.55rem 1rem;
    color: var(--color-text) !important;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background-color 0.15s;
}

.dropdown-menu li a:hover {
    background-color: var(--color-bg);
    color: var(--color-accent) !important;
}

.btn-nav {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.45rem 1.1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-nav:hover,
.btn-nav.nav-active {
    background-color: var(--color-accent-hover);
    color: var(--color-white);
}

/* =====================
   BUTTONS
   ===================== */

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent) 0%, #1a4fc8 100%);
    color: var(--color-white);
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent-hover) 0%, #163ea8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.42);
}

/* =====================
   SECTION H2 ACCENT LINES
   ===================== */

main section h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    margin-top: 0.65rem;
}

.index-final-cta h2::after,
.netwerk-final-cta h2::after,
.diensten-cta h2::after,
.werkwijze-index h2::after,
.waarom-section h2::after {
    margin-left: auto;
    margin-right: auto;
}

.index-final-cta h2::after,
.netwerk-final-cta h2::after,
.waarom-section h2::after {
    background: rgba(255, 255, 255, 0.4);
}

.tarieven-sectie-kop h2::after {
    display: none;
}

/* =====================
   HERO
   ===================== */

.hero {
    background-image: linear-gradient(rgba(10, 26, 50, 0.72), rgba(30, 58, 95, 0.68)), url('media/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 8.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
    animation: fadeInUp 0.7s ease both;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    animation: fadeInUp 0.7s 0.15s ease both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.7s 0.3s ease both;
}

.hero .btn-primary,
.hero .btn-secondary {
    animation: none;
}

/* =====================
   SECTION COMMON
   ===================== */

section {
    padding: 5rem 0;
    scroll-margin-top: 64px;
}

section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

/* =====================
   SERVICES
   ===================== */

.services {
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-top: 3px solid transparent;
    border-radius: var(--border-radius);
    padding: 1.75rem;
    transition: box-shadow 0.25s, transform 0.25s, border-top-color 0.25s, background-color 0.2s;
}

.service-card:hover {
    box-shadow: var(--shadow-blue);
    transform: translateY(-5px);
    background-color: var(--color-white);
}

.service-card:nth-child(1) { border-top-color: #2563eb; }
.service-card:nth-child(2) { border-top-color: #0891b2; }
.service-card:nth-child(3) { border-top-color: #7c3aed; }
.service-card:nth-child(4) { border-top-color: #1e40af; }
.service-card:nth-child(5) { border-top-color: #059669; }
.service-card:nth-child(6) { border-top-color: #d97706; }
.service-card:nth-child(7) { border-top-color: #10b981; }

.service-icon {
    font-size: 1.6rem;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.25s, background 0.25s;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    transition: color 0.2s;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.service-card-meer {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: transform 0.2s;
}

.service-card:hover .service-card-meer {
    transform: translateX(5px);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #bfdbfe 0%, #dbeafe 100%);
}

.service-card:hover h3 {
    color: var(--color-accent);
}

/* =====================
   WAAROM MENTEN IT
   ===================== */

.waarom-section {
    background-image: var(--gradient-primary);
    padding: 5rem 0;
    text-align: center;
}

.waarom-section h2 {
    color: var(--color-white);
}

.waarom-subtitle {
    color: rgba(255, 255, 255, 0.68);
}

.waarom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.waarom-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: background 0.25s, transform 0.25s;
}

.waarom-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.waarom-icon {
    font-size: 2rem;
    width: 68px;
    height: 68px;
    background: rgba(37, 99, 235, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.waarom-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.waarom-item p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

/* =====================
   WERKWIJZE INDEX
   ===================== */

.werkwijze-index {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.werkwijze-index h2 {
    text-align: center;
}

.werkwijze-index .section-subtitle {
    text-align: center;
}

.werkwijze-index-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3.5rem;
    position: relative;
}

.werkwijze-index-stap {
    padding: 0 2rem 2rem;
    text-align: center;
    position: relative;
}

.werkwijze-index-nummer {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.werkwijze-index-connector {
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), #93c5fd);
    z-index: 0;
}

.werkwijze-index-stap h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.6rem;
}

.werkwijze-index-stap p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}

/* =====================
   EUROPEAN TEASER (index)
   ===================== */

.european-teaser {
    background: var(--color-white);
    padding: 5rem 0;
    border-top: 1px solid var(--color-border);
}

.european-teaser-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.european-teaser-text {
    flex: 1;
}

.european-teaser-text h2 {
    margin-bottom: 1rem;
}

.european-teaser-text p {
    color: var(--color-text-muted);
    margin-bottom: 1.75rem;
    max-width: 520px;
}

.btn-secondary-dark {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.btn-secondary-dark:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.european-teaser-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.european-teaser-logos img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0.75;
    transition: opacity 0.2s, transform 0.2s;
    filter: grayscale(20%);
}

.european-teaser-logos img:hover {
    opacity: 1;
    transform: scale(1.15);
    filter: grayscale(0%);
}

/* =====================
   INDEX FINAL CTA
   ===================== */

.index-final-cta {
    background-image: var(--gradient-primary);
    color: var(--color-white);
    padding: calc(5rem + 16px) 0 5rem;
    text-align: center;
    clip-path: polygon(0 16px, 100% 0, 100% 100%, 0 100%);
}

.index-final-cta h2 {
    color: var(--color-white);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 1rem;
}

.index-final-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.diensten-detail--alt {
    background-color: var(--color-bg-alt);
}

.diensten-cta {
    background: var(--gradient-primary);
    color: var(--color-white);
    text-align: center;
    padding: 4.5rem 1.5rem;
}

.diensten-cta h2 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.diensten-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* =====================
   EUROPESE TOOLS PAGE
   ===================== */

.tools-logobalk {
    background: var(--color-white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.tools-logobalk-inner {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tools-logobalk-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    flex-shrink: 0;
    padding-right: 0.5rem;
    border-right: 1px solid var(--color-border);
}

.tools-logobalk img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    opacity: 0.55;
    transition: opacity 0.2s, transform 0.2s, filter 0.2s;
    filter: grayscale(40%);
}

.tools-logobalk img:hover {
    opacity: 1;
    transform: scale(1.18);
    filter: grayscale(0%);
}

.tools-waarom {
    background-color: var(--color-white);
    padding: 4rem 0;
}

.tools-waarom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.tools-waarom-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.tools-waarom-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

/* =====================
   LUCIDE SVG ICONS
   ===================== */

.service-icon svg,
.netwerk-dienst-icon svg,
.check-icon svg,
.tarieven-sectie-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-accent);
    stroke-width: 1.75;
    fill: none;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg,
.netwerk-dienst-card:hover .netwerk-dienst-icon svg {
    transform: rotate(6deg);
}

.waarom-icon svg {
    width: 30px;
    height: 30px;
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 1.75;
    fill: none;
}

.tools-waarom-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--color-accent);
    stroke-width: 1.75;
    fill: none;
}

.tools-waarom-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.tools-waarom-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.tools-sectie {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.tools-sectie h2 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.tools-sectie-intro {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-accent);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.25s, transform 0.25s, background-color 0.2s;
}

.tool-card:hover {
    box-shadow: var(--shadow-blue);
    transform: translateY(-4px);
    background-color: var(--color-white);
}

.tool-card--neutral {
    border-top-color: var(--color-text-muted);
}

.tool-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tool-card-logo {
    width: 24px;
    height: 24px;
}

.tool-card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.tool-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.tool-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.tool-card ul li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    padding-left: 1rem;
    position: relative;
}

.tool-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 0.8rem;
}

.tool-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    align-self: flex-start;
}

.tool-badge--eu {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.tool-badge--open {
    background-color: #dcfce7;
    color: #16a34a;
}

.tool-badge--us {
    background-color: #f1f5f9;
    color: var(--color-text-muted);
}

.eu-slogan {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* =====================
   IT-GEZONDHEIDSCHECK PAGE
   ===================== */

.gezondheid-intro {
    background-color: var(--color-white);
    padding: 4rem 0;
}

.gezondheid-intro-content {
    max-width: 760px;
}

.gezondheid-intro-content p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.gezondheid-wat {
    padding: 4rem 0;
}

.gezondheid-wat h2 {
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.check-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 1.25rem;
}

.check-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.check-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.check-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.gezondheid-rapport {
    background-color: var(--color-white);
    padding: 4rem 0;
}

.rapport-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.rapport-text {
    flex: 1;
}

.rapport-text h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.rapport-text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
}

.rapport-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
    width: 220px;
}

.rapport-box-item {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
}

.rapport-box-item--good {
    background-color: #dcfce7;
    color: #16a34a;
}

.rapport-box-item--attention {
    background-color: #fef9c3;
    color: #b45309;
}

.rapport-box-item--urgent {
    background-color: #fee2e2;
    color: #dc2626;
}

.gezondheid-voor {
    padding: 4rem 0;
}

.gezondheid-voor h2 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.voor-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 680px;
}

.voor-list li {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    padding-left: 2.1rem;
    position: relative;
}

.voor-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 21px;
    height: 21px;
    background-color: rgba(37, 99, 235, 0.1);
    border: 1.5px solid var(--color-accent);
    border-radius: 50%;
    color: var(--color-accent);
    font-size: 0.65rem;
    font-weight: 900;
    text-align: center;
    line-height: 18px;
}

.prijs-note {
    font-size: 0.9rem;
    font-style: italic;
}


/* =====================
   CONTACT PAGE
   ===================== */

.contact-page {
    background-color: var(--color-bg);
    padding: 4rem 0;
}

.contact-page h2 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

#contact-form {
    flex: 1;
}

.contact-sidebar {
    width: 240px;
    flex-shrink: 0;
    padding: 1.75rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-accent);
    border-radius: var(--border-radius);
    align-self: flex-start;
}

.contact-sidebar h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.contact-phone {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    margin-bottom: 0.4rem;
}

.contact-phone:hover {
    color: var(--color-accent);
}

.contact-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 1.5rem 0;
}

.contact-email {
    display: block;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-email:hover {
    text-decoration: underline;
}

.contact-usp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 0.25rem;
}

.contact-usp-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.contact-sidebar-location {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.label-optional {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--color-text);
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 0.65rem 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-group textarea {
    resize: vertical;
}

.form-privacy {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.form-privacy a {
    color: inherit;
    text-decoration: underline;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.form-status--success {
    color: #16a34a;
}

.form-status--error {
    color: #dc2626;
}

/* =====================
   NETWERK & INFRASTRUCTUUR PAGE
   ===================== */

/* Hero */
.netwerk-hero {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 1.75rem 0 0;
    position: relative;
    overflow: hidden;
}

.netwerk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.netwerk-hero::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.netwerk-hero .container {
    position: relative;
    z-index: 1;
}

.netwerk-badge {
    display: inline-block;
    background-color: rgba(37, 99, 235, 0.25);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(37, 99, 235, 0.45);
    padding: 0.3rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.netwerk-badge--groen   { background-color: rgba(5, 150, 105, 0.25);   border-color: rgba(5, 150, 105, 0.45); }
.netwerk-badge--paars   { background-color: rgba(124, 58, 237, 0.25);  border-color: rgba(124, 58, 237, 0.45); }
.netwerk-badge--amber   { background-color: rgba(217, 119, 6, 0.25);   border-color: rgba(217, 119, 6, 0.45); }
.netwerk-badge--indigo  { background-color: rgba(79, 70, 229, 0.25);   border-color: rgba(79, 70, 229, 0.45); }
.netwerk-badge--cyaan   { background-color: rgba(8, 145, 178, 0.25);   border-color: rgba(8, 145, 178, 0.45); }
.netwerk-badge--emerald { background-color: rgba(16, 185, 129, 0.25);  border-color: rgba(16, 185, 129, 0.45); }
.netwerk-badge--teal    { background-color: rgba(13, 148, 136, 0.25);  border-color: rgba(13, 148, 136, 0.45); }
.netwerk-badge--slate   { background-color: rgba(71, 85, 105, 0.25);   border-color: rgba(71, 85, 105, 0.45); }

.netwerk-hero-inner {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.netwerk-hero-text {
    flex: 1;
    padding-bottom: 2.5rem;
}

.contact-hero-text {
    padding-bottom: 3.5rem;
}

.netwerk-hero-text h1 {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    margin-top: 0.75rem;
}

.netwerk-hero-text p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    max-width: 580px;
}

.netwerk-hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.linux-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.linux-hero-image img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.35));
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-white);
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: border-color 0.2s, background-color 0.2s;
}

.btn-secondary:hover {
    border-color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Diensten grid */
.netwerk-diensten-section {
    background-color: var(--color-white);
    padding: 5rem 0;
}

.netwerk-diensten-section > .container > h2 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.netwerk-diensten-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.netwerk-diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.25rem;
}

.netwerk-dienst-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-top: 3px solid transparent;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: box-shadow 0.25s, border-top-color 0.25s, transform 0.25s, background-color 0.2s;
}

.netwerk-dienst-card:hover {
    box-shadow: var(--shadow-blue);
    border-top-color: var(--color-accent);
    transform: translateY(-4px);
    background-color: var(--color-white);
}

.netwerk-dienst-card:hover .netwerk-dienst-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #bfdbfe 0%, #dbeafe 100%);
}

.netwerk-dienst-card:hover h3 {
    color: var(--color-accent);
}

.netwerk-dienst-icon {
    font-size: 1.5rem;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
    transition: transform 0.25s, background 0.25s;
}

.netwerk-dienst-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
    transition: color 0.2s;
}

.netwerk-dienst-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Voor wie */
.netwerk-voor-wie {
    padding: 5rem 0;
}

.netwerk-voor-wie h2 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.netwerk-voor-wie-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* Werkwijze */
.netwerk-werkwijze {
    background-color: var(--color-white);
    padding: 5rem 0;
}

.netwerk-werkwijze h2 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.werkwijze-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.werkwijze-stappen {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2rem;
    counter-reset: stap-teller;
}

.werkwijze-stap {
    padding: 1.25rem;
    padding-top: 4rem;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--color-accent);
    transition: box-shadow 0.2s, transform 0.2s;
    counter-increment: stap-teller;
    position: relative;
}

.werkwijze-stap::before {
    content: counter(stap-teller);
    position: absolute;
    top: 1.1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-bg);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.35);
}

.werkwijze-stap:hover {
    box-shadow: var(--shadow-blue);
    transform: translateY(-2px);
}

.werkwijze-stap-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.6rem;
}

.werkwijze-stap h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.werkwijze-stap p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Tarieven */
.netwerk-tarieven {
    padding: 5rem 0;
}

.netwerk-tarieven h2 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.netwerk-tarieven h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.tarieven-sectie {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-accent);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s;
}

.tarieven-sectie:hover {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.tarieven-sectie:last-of-type {
    margin-bottom: 0;
}

.tarieven-sectie:nth-child(1) { border-top-color: #059669; }
.tarieven-sectie:nth-child(2) { border-top-color: #7c3aed; }
.tarieven-sectie:nth-child(3) { border-top-color: var(--color-accent); }
.tarieven-sectie:nth-child(4) { border-top-color: #d97706; }
.tarieven-sectie:nth-child(5) { border-top-color: #4f46e5; }
.tarieven-sectie:nth-child(6) { border-top-color: #0891b2; }
.tarieven-sectie:nth-child(7) { border-top-color: #10b981; }
.tarieven-sectie:nth-child(8) { border-top-color: #dc2626; }

.tarieven-sectie-kop {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.tarieven-sectie-kop h2 {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
    margin-bottom: 0;
}

.tarieven-sectie-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
}

.tarieven-sectie:hover .tarieven-sectie-icon {
    background: linear-gradient(135deg, #bfdbfe 0%, #dbeafe 100%);
}

.tarieven-sectie:hover .tarieven-sectie-icon svg {
    transform: rotate(8deg) scale(1.08);
}

.tarieven-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.prijs-tabel {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.prijs-tabel thead tr {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.prijs-tabel th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: 600;
}

.prijs-tabel td {
    padding: 0.7rem 1rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
}

.prijs-tabel tbody tr:last-child td {
    border-bottom: none;
}

.prijs-tabel tbody tr:nth-child(even) {
    background-color: var(--color-bg-alt);
}

.prijs-tabel td:last-child {
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
}

.offerte-stappen {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 680px;
    margin-bottom: 2rem;
}

.offerte-stap {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
}

.stap-nummer {
    flex-shrink: 0;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stap-inhoud h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

.stap-inhoud p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Waarom Menten IT */
.netwerk-waarom-full {
    background-color: var(--color-white);
    padding: 5rem 0;
}

.netwerk-waarom-full-content {
    max-width: 760px;
}

.netwerk-waarom-full h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.netwerk-waarom-full p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.netwerk-quote {
    border-left: 4px solid var(--color-accent);
    padding: 1rem 1.5rem;
    margin-top: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.netwerk-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-primary) !important;
    margin: 0 !important;
    font-weight: 500;
}

/* Eind-CTA */
.netwerk-final-cta {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 5rem 0;
    text-align: center;
}

.netwerk-final-cta h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.netwerk-final-cta p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 2rem;
}

.netwerk-final-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.netwerk-final-cta-phone {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.netwerk-final-cta-phone a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
}

.netwerk-final-cta-phone a:hover {
    color: var(--color-white);
}

/* =====================
   IT-ADVIES PAGE
   ===================== */

/* Probleem-sectie */
.advies-probleem {
    background-color: var(--color-white);
    padding: 5rem 0;
}

.advies-probleem h2 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.advies-probleem-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.advies-scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.advies-scenario {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: box-shadow 0.25s, transform 0.25s, background-color 0.2s;
}

.advies-scenario:hover {
    box-shadow: var(--shadow-blue);
    transform: translateY(-3px);
    background-color: var(--color-white);
}

.advies-scenario-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: 0.6rem;
}

.advies-scenario h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.advies-scenario p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.advies-probleem-conclusie {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    padding-left: 1rem;
    border-left: 3px solid var(--color-accent);
}

/* Laptop-profieltabel */
.advies-laptop {
    padding: 5rem 0;
}

.advies-laptop h2 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.laptop-tabel-wrapper {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.laptop-tabel {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    white-space: nowrap;
}

.laptop-tabel thead tr {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.laptop-tabel th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: 600;
}

.laptop-tabel td {
    padding: 0.7rem 1rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    white-space: normal;
}

.laptop-tabel td:first-child {
    white-space: nowrap;
    color: var(--color-text);
}

.laptop-tabel tbody tr:last-child td {
    border-bottom: none;
}

.laptop-tabel tbody tr:nth-child(even) {
    background-color: var(--color-bg);
}

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

/* =====================
   FOUNDER CARD
   ===================== */

.founder-card {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-accent);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.founder-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.founder-avatar svg {
    width: 52px;
    height: 52px;
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 1.5;
    fill: none;
}

.founder-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
}

.founder-role {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.founder-bio {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    max-width: 600px;
}

.founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.founder-tag {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* =====================
   FOOTER
   ===================== */

footer {
    background: linear-gradient(135deg, #0c1a2e 0%, #1a2f4e 100%);
    color: rgba(255, 255, 255, 0.55);
    padding: 2.75rem 0 1.25rem;
    font-size: 0.875rem;
}

/* =====================
   FOOTER INNER
   ===================== */

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
    height: 30px;
    width: auto;
    display: block;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-copy {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-copy a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-copy a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.footer-location {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
}

/* =====================
   USP BAR
   ===================== */

.usp-bar {
    background: linear-gradient(90deg, #162d4e 0%, #1e3a5f 50%, #162d4e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1rem 1.5rem calc(1rem + 16px);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), 0 100%);
}

.usp-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.usp-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.875rem;
    font-weight: 500;
}

.usp-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: var(--color-accent);
    border-radius: 50%;
    font-size: 0.65rem;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

/* =====================
   SCROLL ANIMATIONS
   ===================== */

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Badge animation in hero pages */
.netwerk-badge {
    animation: fadeInUp 0.5s ease both;
}

.netwerk-hero-text h1 {
    animation: fadeInUp 0.65s 0.1s ease both;
}

.netwerk-hero-text > p {
    animation: fadeInUp 0.65s 0.22s ease both;
}

.netwerk-hero-actions {
    animation: fadeInUp 0.65s 0.34s ease both;
}

/* =====================
   CHECK ITEMS
   ===================== */

.check-item {
    transition: box-shadow 0.25s, transform 0.25s, background-color 0.2s;
}

.check-item:hover {
    box-shadow: var(--shadow-blue);
    transform: translateY(-2px);
    background-color: var(--color-white);
}

.check-icon {
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =====================
   HAMBURGER NAVIGATIE
   ===================== */

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 13px 9px;
    margin: -13px -9px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.28s ease, width 0.28s ease;
}

.nav-toggle span:nth-child(2) {
    width: 75%;
}

header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    width: 100%;
}

header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =====================
   RESPONSIVE - MOBIEL (≤ 768px)
   ===================== */

@media (max-width: 768px) {
    /* Hamburger zichtbaar */
    .nav-toggle {
        display: flex;
    }

    /* Verberg standaard alle nav-items */
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--gradient-primary);
        flex-direction: column;
        padding: 0.5rem 0 1.25rem;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
        gap: 0;
        z-index: 300;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    header.nav-open nav ul {
        display: flex;
    }

    /* Overschrijf bestaande "verberg alle li" regel */
    nav ul li,
    nav ul li:not(:last-child) {
        display: block !important;
    }

    nav ul a {
        display: block;
        padding: 0.8rem 1.5rem;
        border-radius: 0;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.88) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    nav ul a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white !important;
    }

    /* Dropdown: altijd zichtbaar in mobiel menu */
    .dropdown-menu {
        display: flex !important;
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        background: rgba(0, 0, 0, 0.18);
    }

    .nav-dropdown > a {
        border-bottom: none;
    }

    .dropdown-menu li a {
        padding: 0.65rem 2.5rem;
        color: rgba(255, 255, 255, 0.65) !important;
        font-size: 0.875rem;
    }

    .dropdown-menu li a:hover {
        color: white !important;
        background-color: rgba(255, 255, 255, 0.07);
    }

    .btn-nav {
        margin: 0.75rem 1rem 0;
        display: block;
        text-align: center;
        border-radius: var(--border-radius);
    }

    /* Hero */
    .hero {
        padding: 5.5rem 1.25rem;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 7vw, 2.6rem);
    }

    .hero-actions {
        justify-content: center;
    }

    /* Secties */
    section {
        padding: 3.5rem 0;
    }

    /* Grids → 1 kolom op mobiel */
    .services-grid,
    .netwerk-diensten-grid,
    .check-grid,
    .tools-grid,
    .advies-scenario-grid {
        grid-template-columns: 1fr;
    }

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

    .werkwijze-stappen {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Knoppen stapelen op mobiel */
    .netwerk-hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .netwerk-hero-actions .btn-primary,
    .netwerk-hero-actions .btn-secondary {
        text-align: center;
    }

    .netwerk-final-cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    /* Waarom sectie */
    .waarom-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* European teaser */
    .european-teaser-inner {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .european-teaser-text p {
        max-width: 100%;
    }

    /* Werkwijze index */
    .werkwijze-index-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .werkwijze-index-connector {
        display: none;
    }

    .werkwijze-index-stap {
        padding: 0 1rem 1rem;
    }

    /* USP bar */
    .usp-list {
        flex-direction: column;
        gap: 0.6rem;
        align-items: flex-start;
    }

    /* Founder card */
    .founder-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.75rem;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-nav {
        gap: 0.75rem 1.25rem;
        flex-wrap: wrap;
    }

    /* Prijstabel */
    .prijs-tabel {
        font-size: 0.875rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .prijs-tabel td,
    .prijs-tabel th {
        padding: 0.6rem 0.75rem;
    }

    /* Contact-layout stapelen op mobiel */
    .contact-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-sidebar {
        width: 100%;
    }

}

/* =====================
   RESPONSIVE - KLEIN MOBIEL (≤ 480px)
   ===================== */

@media (max-width: 480px) {
    .hero {
        padding: 4.5rem 1rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .service-card,
    .netwerk-dienst-card {
        padding: 1.25rem;
    }

    .netwerk-hero-text {
        padding-left: 0;
        padding-right: 0;
    }

    .tools-waarom-grid {
        grid-template-columns: 1fr;
    }

    .prijs-tabel td,
    .prijs-tabel th {
        padding: 0.5rem 0.6rem;
        font-size: 0.82rem;
    }


    .tarieven-sectie-kop {
        gap: 0.75rem;
    }

}

/* =====================
   RESPONSIVE - TABLET (641px – 1024px)
   ===================== */

@media (min-width: 641px) and (max-width: 1024px) {
    /* 2-koloms grids op tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

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

    /* Netwerk hero: stapelen op tablet */
    .netwerk-hero-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .netwerk-hero-text {
        padding-bottom: 0;
    }

    /* Rapport naast elkaar houden */
    .rapport-box {
        flex-direction: row;
    }

    .rapport-box-item {
        flex: 1;
    }
}

/* =====================
   PRIVACY PAGE
   ===================== */

.privacy-content {
    padding: 4rem 0 6rem;
}

.privacy-container {
    max-width: 760px;
}

.privacy-container h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 2.5rem 0 0.6rem;
    color: var(--color-text);
}

.privacy-container h2:first-of-type {
    margin-top: 0;
}

.privacy-container p,
.privacy-container ul {
    font-size: 0.97rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.privacy-container ul {
    padding-left: 1.4rem;
}

.privacy-container ul li {
    margin-bottom: 0.3rem;
}

.privacy-container a {
    color: var(--color-accent);
    text-decoration: underline;
}

/* =====================
   RESPONSIVE - GROOT SCHERM (≥ 1440px)
   ===================== */

@media (min-width: 1440px) {
    :root {
        --max-width: 1260px;
    }

    .hero {
        padding: 10rem 2rem;
    }

    section {
        padding: 6rem 0;
    }
}

/* =====================
   REDUCED MOTION
   ===================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-content,
    .hero-content > * {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
