/* ============================================
   UwWerkplek - Stylesheet
   ============================================ */

:root {
    /* Brand Colors - matching logo */
    --primary: #2c5e8a;
    --primary-dark: #1e4266;
    --primary-light: #e8f0f7;
    --accent: #7ab648;
    --accent-dark: #5e9a2f;

    /* Neutrals */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fb;
    --bg-dark: #0f1729;
    --bg-dark-card: #1a2540;
    --text-primary: #1a1a2e;
    --text-secondary: #5a6377;
    --text-muted: #8b95a8;
    --border: #e2e6ed;
    --border-light: #f0f2f5;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1160px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.1);

    /* Transitions */
    --transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
    padding: 10px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

/* Show white logo by default (hero), dark on scroll */
.logo-dark {
    display: none;
}

#navbar.scrolled .logo-white {
    display: none;
}

#navbar.scrolled .logo-dark {
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

#navbar.scrolled .nav-link {
    color: var(--text-secondary);
}

#navbar.scrolled .nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    margin-left: 8px;
    border-radius: var(--radius-sm) !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

#navbar.scrolled .nav-toggle span {
    background: var(--text-primary);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1729 0%, #1a3350 50%, #2c5e8a 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(122,182,72,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(44,94,138,0.2) 0%, transparent 50%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 24px 80px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: rgba(122,182,72,0.15);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 28px;
    border: 1px solid rgba(122,182,72,0.25);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), #a3d977);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-brands {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero-brand {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
}

.hero-brand-divider {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--accent);
}

/* Hero Server Rack */
.hero-server {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.server-rack {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Rack handles */
.rack-handle {
    width: 90%;
    height: 6px;
    background: linear-gradient(180deg, #3a3a3a, #222);
    border-radius: 3px 3px 0 0;
}
.rack-handle.bottom {
    border-radius: 0 0 3px 3px;
    background: linear-gradient(180deg, #222, #1a1a1a);
}

/* Rack body */
.rack-body {
    width: 100%;
    background: linear-gradient(180deg, #1a1a1a, #111);
    border-left: 3px solid #2a2a2a;
    border-right: 3px solid #2a2a2a;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        0 0 80px rgba(122,182,72,0.04),
        inset 0 0 30px rgba(0,0,0,0.3);
    overflow: hidden;
}

/* Rack unit - each 1U */
.rack-unit {
    border-bottom: 1px solid #222;
    position: relative;
}

/* Screen unit */
.rack-screen-unit {
    height: 180px;
    padding: 4px;
}

.rack-screen {
    width: 100%;
    height: 100%;
    background: #0a0f1a;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    border: 1px solid #1a2a1a;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.matrix-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.monitor-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.06) 2px,
        rgba(0,0,0,0.06) 4px
    );
    pointer-events: none;
}

/* Rack panel (each server unit) */
.rack-panel {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 6px;
    background: linear-gradient(180deg, #1e1e1e, #161616);
    border-top: 1px solid #2a2a2a;
}

/* Rack screws */
.rack-screws {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rack-screws span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #444, #222);
    border: 1px solid #333;
}

/* Drive bays */
.rack-drives {
    display: flex;
    gap: 4px;
    flex: 1;
}
.rack-drive {
    flex: 1;
    height: 22px;
    background: linear-gradient(180deg, #1a1a1a, #111);
    border: 1px solid #2a2a2a;
    border-radius: 2px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2px;
}
.drive-led {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #333;
}
.drive-led.on {
    background: var(--accent);
    box-shadow: 0 0 4px var(--accent);
}

/* Vent holes */
.rack-vents {
    display: flex;
    gap: 6px;
    flex: 1;
}
.rack-vents span {
    flex: 1;
    height: 18px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        #0a0a0a 2px,
        #0a0a0a 4px
    );
    border-radius: 1px;
}

/* Power LED */
.rack-power-led {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #333;
}
.rack-power-led.on {
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
}

/* Network ports */
.rack-ports {
    display: flex;
    gap: 3px;
    flex: 1;
}
.port {
    width: 10px;
    height: 12px;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 1px;
    position: relative;
}
.port.active::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 3px var(--accent);
}

/* Rack labels */
.rack-label {
    font-family: 'Inter', monospace;
    font-size: 0.55rem;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    min-width: 36px;
    text-align: center;
}

/* Network switch variant */
.rack-switch {
    background: linear-gradient(180deg, #1c1c1c, #141414);
}

/* Rack feet */
.rack-feet {
    display: flex;
    justify-content: space-between;
    width: 85%;
    margin-top: 2px;
}
.rack-feet span {
    width: 24px;
    height: 6px;
    background: linear-gradient(180deg, #1a1a1a, #111);
    border-radius: 0 0 3px 3px;
}

/* Ambient glow behind rack */
.server-rack::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(122,182,72,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,120,212,0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0,120,212,0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(122,182,72,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.stat div {
    text-align: left;
}

.stat strong {
    display: block;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.stat span:not(.stat-icon):not(.stat-counter) {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--section-padding);
}

.section-alt {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.service-arrow {
    display: inline-block;
    margin-top: 16px;
    font-size: 1.2rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== SPLIT CONTENT ===== */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse > * {
    direction: ltr;
}

.split-text h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.split-text > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #e6f7f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-icon svg {
    width: 14px;
    height: 14px;
    color: #16a34a;
}

.feature-list li strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-list li span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== VISUAL CARDS ===== */
.visual-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-card.dark {
    background: var(--bg-dark);
    border-color: rgba(255,255,255,0.08);
}

.visual-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.visual-card.dark .visual-card-header {
    border-color: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
}

.visual-dots {
    display: flex;
    gap: 6px;
}

.visual-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.visual-dots span:first-child { background: #ff5f57; }
.visual-dots span:nth-child(2) { background: #febc2e; }
.visual-dots span:last-child { background: #28c840; }

.visual-card-body {
    padding: 24px;
}

/* Stat rows */
.visual-stat-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.visual-stat-row:last-child {
    border-bottom: none;
}

.visual-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-width: 130px;
}

.visual-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    min-width: 40px;
    text-align: right;
}

.visual-value.accent {
    color: var(--primary);
    font-size: 1.3rem;
}

.visual-bar {
    flex: 1;
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}

.visual-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    transition: width 1s ease;
}

.bar-green .visual-bar-fill {
    background: #16a34a;
}

/* Backup styles */
.backup-status {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.backup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.06);
}

.backup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
    box-shadow: 0 0 8px rgba(22,163,74,0.5);
}

.backup-name {
    flex: 1;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.backup-time {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.backup-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.backup-metric {
    text-align: center;
    padding: 16px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.06);
}

.backup-metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.backup-metric-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

/* Flow diagram */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 24px;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.flow-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.flow-step.active .flow-icon {
    background: var(--primary-light);
    border-color: var(--primary);
}

.flow-icon svg {
    width: 26px;
    height: 26px;
    color: var(--text-secondary);
}

.flow-step.active .flow-icon svg {
    color: var(--primary);
}

.flow-step span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.flow-arrow {
    flex: 0;
}

.flow-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--border);
}

/* Log entries */
.flow-log {
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.log-entry {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    padding: 6px 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

.log-entry.success {
    color: #16a34a;
    background: #f0fdf4;
}

.log-time {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    font-size: 0.72rem;
    color: var(--text-muted);
    min-width: 36px;
}

.log-entry.success .log-time {
    color: #16a34a;
}

/* Log entry scroll animation */
.log-entry.log-animate {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.log-entry.log-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== DETACHERING ===== */
.detachering-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.detach-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.detach-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.detach-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detach-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.detach-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.detach-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.detachering-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a3350 100%);
    border-radius: var(--radius-xl);
    color: #fff;
}

.detachering-cta p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.8);
}

/* ===== MSP WERKWIJZE ===== */
.section-msp {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.msp-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 8px;
}

.msp-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.msp-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.msp-feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.msp-feature strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.msp-feature p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.msp-card {
    border: none;
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.msp-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.msp-card-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.msp-badge {
    padding: 4px 12px;
    background: rgba(122,182,72,0.15);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: 1px solid rgba(122,182,72,0.25);
}

.msp-team-preview {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.msp-member {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.msp-member:hover {
    background: rgba(255,255,255,0.07);
}

.msp-member-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(44,94,138,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.msp-member-avatar svg {
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.5);
}

.msp-member strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.msp-member span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

/* ===== TIMELINE / HISTORIE ===== */
.section-dark {
    background: var(--bg-dark);
    color: #fff;
}

.section-dark .section-header h2 {
    color: #fff;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.6);
}

.section-label.light {
    color: var(--accent);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid rgba(255,255,255,0.2);
    z-index: 1;
}

.timeline-item.active::before {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(122,182,72,0.4);
}

.timeline-year {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin-bottom: 8px;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

.timeline-content p strong {
    color: #fff;
}

/* ===== TEAM ===== */
.team-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    margin-top: 48px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.team-subtitle:first-of-type {
    margin-top: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 16px;
}

.team-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.team-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-sm);
}

.team-card.flex .avatar-placeholder {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    box-shadow: 0 0 0 2px #dcfce7;
}

.team-card.flex .avatar-placeholder svg {
    color: #16a34a;
}

.team-avatar {
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 88px;
    height: 88px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, #e0ecff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 0 2px var(--primary-light);
}

.avatar-placeholder svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.team-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.team-card > p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.team-tag {
    padding: 4px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.team-socials {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.team-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.team-social:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.team-social svg {
    width: 16px;
    height: 16px;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.contact-form-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox grid for services */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.checkbox-label:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.form-group-small {
    max-width: 140px;
}

/* Form feedback */
.form-success {
    margin-top: 16px;
    padding: 16px;
    background: rgba(122,182,72,0.1);
    color: var(--accent-dark);
    border: 1px solid rgba(122,182,72,0.3);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    text-align: center;
}

.form-error {
    margin-top: 16px;
    padding: 16px;
    background: rgba(220,53,69,0.1);
    color: #dc3545;
    border: 1px solid rgba(220,53,69,0.3);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    text-align: center;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-method svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    min-width: 24px;
}

.contact-method strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-method span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.trust-badge svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.trust-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
    color: rgba(255,255,255,0.5);
}

.footer .logo-img {
    height: 32px;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== VACATURE CARDS ===== */
.team-card.vacancy {
    cursor: pointer;
    border: 2px dashed #7ab648;
    background: rgba(122,182,72,0.04);
    transition: all 0.3s ease;
}

.team-card.vacancy:hover {
    border-color: #7ab648;
    background: rgba(122,182,72,0.1);
    transform: translateY(-4px);
}

.avatar-placeholder.vacancy-icon {
    color: #7ab648;
}

.team-tag.vacancy-tag {
    background: rgba(122,182,72,0.15);
    color: #7ab648;
}

/* Vacancy Modal */
.vacancy-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.vacancy-modal-overlay.active {
    display: flex;
}

.vacancy-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.vacancy-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.vacancy-close:hover {
    background: #f0f0f0;
    color: #333;
}

.vacancy-badge {
    display: inline-block;
    background: rgba(122,182,72,0.12);
    color: #7ab648;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.vacancy-content h2 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.vacancy-intro {
    color: #666;
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.vacancy-content h4 {
    color: #2c5e8a;
    font-size: 1rem;
    margin: 24px 0 10px;
}

.vacancy-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vacancy-content ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.vacancy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: #7ab648;
    border-radius: 50%;
}

.vacancy-cta {
    margin-top: 32px;
    padding: 24px;
    background: #f6f9fc;
    border-radius: 12px;
    text-align: center;
}

.vacancy-cta p {
    color: #555;
    margin-bottom: 16px;
}

/* ===== OFFERTE PAGINA ===== */
.offerte-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    max-width: 900px;
    margin: 0 auto;
}

.offerte-form-title {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.offerte-form-desc {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.product-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card {
    display: grid;
    grid-template-columns: auto 1fr 150px;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    background: #fafbfc;
    transition: all 0.2s ease;
}

.product-card:hover {
    border-color: #c8d4e0;
}

.product-card.selected {
    border-color: #7ab648;
    background: rgba(122,182,72,0.04);
}

.product-check {
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.product-check input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #7ab648;
}

.product-info {
    flex: 1;
}

.product-info h4 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.product-info p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.product-aantal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    gap: 4px;
    flex-shrink: 0;
    min-width: 120px;
}

.product-aantal label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.aantal-input {
    width: 120px;
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #2c5e8a;
    transition: border-color 0.2s;
}

.aantal-input:focus {
    outline: none;
    border-color: #7ab648;
}

.aantal-input:disabled {
    background: #f0f0f0;
    color: #bbb;
    cursor: not-allowed;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.success-icon {
    text-align: center;
    margin-bottom: 16px;
}

/* ===== RESPONSIVE ===== */

/* Touch & mobile base improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets on touch devices */
    .btn { min-height: 48px; }
    .nav-link { min-height: 44px; display: flex; align-items: center; }
    .nav-toggle { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }

    /* Remove hover effects that don't work on touch */
    .service-card:hover,
    .detach-card:hover,
    .team-card:hover { transform: none; }

    /* Disable tap highlight */
    * { -webkit-tap-highlight-color: transparent; }
}

/* Tablet landscape */
@media (max-width: 1024px) {
    .services-grid,
    .detachering-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-content.reverse {
        direction: ltr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet portrait & large phones */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    html {
        scroll-padding-top: 60px;
    }

    .container {
        padding: 0 16px;
    }

    /* Navbar mobile */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15,23,41,0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 999;
        padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.9) !important;
        padding: 14px 28px;
        width: 80%;
        text-align: center;
        border-radius: var(--radius-sm);
    }

    .nav-link:hover,
    .nav-link:active {
        background: rgba(255,255,255,0.1);
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 8px;
        width: 80% !important;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .nav-toggle.active span:first-child {
        transform: rotate(45deg) translateY(7px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:last-child {
        transform: rotate(-45deg) translateY(-7px);
    }

    #navbar {
        padding: 10px 0;
    }

    .logo-img {
        height: 36px;
    }

    /* Hero mobile */
    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 100px 16px 48px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
        line-height: 1.65;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-brands {
        justify-content: center;
    }

    .hero-brand {
        font-size: 0.85rem;
        padding: 5px 14px;
    }

    .hero-server {
        order: -1;
    }

    .server-rack {
        max-width: 220px;
    }

    .rack-screen-unit {
        height: 130px;
    }

    /* Hero stats mobile */
    .hero-stats {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .stat {
        padding: 14px 20px;
        border-radius: 12px;
        gap: 12px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat strong {
        font-size: 1.3rem;
    }

    .stat span:not(.stat-icon):not(.stat-counter) {
        font-size: 0.78rem;
    }

    /* Sections mobile */
    .section-header {
        margin-bottom: 36px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.92rem;
    }

    .section-label {
        font-size: 0.72rem;
    }

    /* Grids mobile */
    .services-grid,
    .detachering-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .service-arrow {
        display: none;
    }

    /* Split content mobile */
    .split-text h2 {
        font-size: 1.5rem;
    }

    .split-text > p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .feature-list {
        gap: 16px;
    }

    .feature-list li strong {
        font-size: 0.88rem;
    }

    .feature-list li span {
        font-size: 0.82rem;
    }

    /* Visual cards mobile */
    .visual-card-body {
        padding: 16px;
    }

    .visual-label {
        min-width: 100px;
        font-size: 0.78rem;
    }

    .visual-value.accent {
        font-size: 1.1rem;
    }

    .backup-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .backup-name {
        font-size: 0.78rem;
    }

    .backup-time {
        font-size: 0.68rem;
    }

    .backup-metric-value {
        font-size: 1.2rem;
    }

    /* Flow diagram mobile */
    .flow-diagram {
        flex-direction: column;
        gap: 12px;
    }

    .flow-arrow svg {
        transform: rotate(90deg);
    }

    .flow-step span {
        font-size: 0.7rem;
    }

    .flow-icon {
        width: 48px;
        height: 48px;
    }

    .log-entry {
        font-size: 0.72rem;
        padding: 5px 10px;
    }

    /* MSP features mobile */
    .msp-feature {
        gap: 12px;
    }

    .msp-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .msp-feature strong {
        font-size: 0.88rem;
    }

    .msp-feature p {
        font-size: 0.82rem;
    }

    .msp-team-preview {
        padding: 16px;
    }

    .msp-member {
        padding: 12px;
        gap: 10px;
    }

    /* Detachering mobile */
    .detachering-cta {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }

    .detachering-cta p {
        font-size: 0.95rem;
    }

    /* Timeline mobile */
    .timeline {
        padding-left: 36px;
    }

    .timeline::before {
        left: 12px;
    }

    .timeline-item::before {
        left: -30px;
        width: 12px;
        height: 12px;
    }

    .timeline-item {
        padding-bottom: 28px;
    }

    .timeline-content h3 {
        font-size: 0.98rem;
    }

    .timeline-content p {
        font-size: 0.82rem;
    }

    /* Team mobile */
    .team-card {
        padding: 20px 16px;
    }

    .avatar-placeholder {
        width: 64px;
        height: 64px;
    }

    .avatar-placeholder svg {
        width: 28px;
        height: 28px;
    }

    .team-card h3 {
        font-size: 0.92rem;
    }

    .team-role {
        font-size: 0.7rem;
    }

    .team-tags {
        margin-bottom: 10px;
    }

    .team-tag {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .team-subtitle {
        font-size: 0.95rem;
        margin-top: 32px;
    }

    /* Contact mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .form-group-small {
        max-width: none;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 24px 20px;
    }

    .trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-badge {
        flex: 1;
        min-width: 140px;
        padding: 12px 14px;
        font-size: 0.78rem;
    }

    /* Footer mobile */
    .footer {
        padding-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer .logo-img {
        height: 28px;
    }

    .footer-brand p {
        font-size: 0.82rem;
    }

    .footer-links h4 {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 0.82rem;
    }

    .footer-bottom {
        padding: 16px 0;
        padding-bottom: calc(16px + env(safe-area-inset-bottom));
    }

    .footer-bottom p {
        font-size: 0.72rem;
    }

    /* Buttons mobile */
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 16px 28px;
        font-size: 1rem;
    }

    /* Offerte mobile */
    .offerte-form-card {
        padding: 20px 16px;
    }

    .offerte-form-title {
        font-size: 1.1rem;
    }

    .product-card {
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 14px 16px;
    }

    .product-aantal {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-width: 0;
    }

    .product-info p {
        display: none;
    }

    .aantal-input {
        width: 100px;
        padding: 10px 12px;
        font-size: 1rem;
    }

    .offerte-hero {
        padding-top: 80px;
    }

    /* Vacancy modal mobile */
    .vacancy-modal {
        padding: 28px 20px;
        max-height: 90vh;
        border-radius: 12px;
    }

    .vacancy-modal-overlay {
        padding: 12px;
    }

    .vacancy-content h2 {
        font-size: 1.3rem;
        padding-right: 32px;
    }

    .vacancy-content h4 {
        font-size: 0.9rem;
    }

    .vacancy-content ul li {
        font-size: 0.88rem;
    }

    .vacancy-cta {
        padding: 20px 16px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-content {
        padding: 90px 12px 36px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.88rem;
    }

    .server-rack {
        max-width: 180px;
    }

    .rack-screen-unit {
        height: 100px;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .split-text h2 {
        font-size: 1.3rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .team-card {
        padding: 20px;
    }

    .stat {
        padding: 12px 16px;
    }

    .stat strong {
        font-size: 1.2rem;
    }

    .visual-stat-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .visual-bar {
        width: 100%;
        order: 3;
    }

    .backup-summary {
        grid-template-columns: 1fr;
    }

    .msp-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .contact-form-card {
        padding: 20px 14px;
    }

    .offerte-form-card {
        padding: 16px 12px;
    }

    .product-card {
        padding: 12px;
    }

    .product-info h4 {
        font-size: 0.88rem;
    }

    /* Prevent content overflow */
    .timeline-content p,
    .vacancy-content ul li,
    .feature-list li span,
    .msp-feature p,
    .footer-brand p {
        word-break: break-word;
    }
}

/* Safe area for notched devices (iPhone X+) */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer-bottom {
        padding-bottom: calc(16px + env(safe-area-inset-bottom));
    }

    #navbar {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .nav-menu.active {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .hero-content {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-content {
        padding-top: 80px;
        padding-bottom: 32px;
    }

    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .hero-server {
        order: 0;
    }

    .server-rack {
        max-width: 200px;
    }

    .rack-screen-unit {
        height: 120px;
    }

    .hero-stats {
        flex-direction: row;
    }

    .nav-menu.active {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 10px 16px;
        width: auto;
    }
}

/* Print */
@media print {
    .hero, .nav-toggle, #navbar { display: none !important; }
    .section { padding: 20px 0; }
    .service-card, .team-card, .detach-card { break-inside: avoid; }
}
