        :root {
            --blue: #0075c9;
            --gray: #828282;
            --dark: #22252C;
            --box: #f7f7f7;
            --green: #9AC93B;
            --white: #ffffff;
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: 'ClearSans', sans-serif;
            color: var(--dark);
            background: var(--white);
            overflow-x: hidden;
        }

        /* ── NAV ── */
        nav {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
            background: transparent;
            backdrop-filter: none;
            display: flex; align-items: center; justify-content: space-between;
            padding: 20px 5% 0;
            height: 90px;
            transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s, height 0.3s;
        }
        nav.scrolled {
            background: rgba(0,117,201,0.97);
            backdrop-filter: blur(12px);
            padding: 0 5%;
            height: 70px;
        }

        .nav-logo { display: flex; align-items: center; text-decoration: none; }
        .nav-logo svg { height: 60px; transition: height 0.3s;}
        nav.scrolled .nav-logo svg { height: 38px; }

        .nav-links { display: flex; gap: 2rem; list-style: none; display: flex; align-items:center}
        .nav-links a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-family: 'ClearSans', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.03em;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--green); }

        .nav-cta {
            background: var(--green);
            color: var(--white) !important;
            padding: 0.5rem 1.2rem;
            border-radius: 4px;
            font-weight: 600 !important;
            transition: opacity 0.2s !important;
        }
        .nav-cta:hover { opacity: 0.88; }

        .nav-login {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            border: 1.5px solid rgba(255,255,255,0.5);
            color: var(--white) !important;
            padding: 0.5rem 1.2rem;
            border-radius: 4px;
            font-family: 'ClearSans', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s;
        }
        .nav-login svg { width: 14px; height: 14px; }
        .nav-login:hover { background: rgba(255,255,255,0.12); border-color: white; }

        /* ── HAMBURGER ── */
        .nav-hamburger {
            display: none;
            flex-direction: column; justify-content: center; gap: 5px;
            width: 40px; height: 40px;
            background: none; border: none; cursor: pointer; padding: 4px;
        }
        .nav-hamburger span {
            display: block; height: 2px; width: 24px;
            background: white; border-radius: 2px;
            transition: transform 0.3s, opacity 0.3s;
        }
        .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav-hamburger.open span:nth-child(2) { opacity: 0; }
        .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ── MOBIEL MENU ── */
        .nav-mobile {
            display: none;
            position: fixed; top: 70px; left: 0; width: 100%; z-index: 99;
            background: rgba(0,117,201,0.97);
            backdrop-filter: blur(12px);
            flex-direction: column;
            padding: 1rem 5% 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.15);
        }
        .nav-mobile.open { display: flex; }

        .nav-mobile-link {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            padding: 0.85rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: color 0.2s;
        }
        .nav-mobile-link:last-child { border-bottom: none; }
        .nav-mobile-link:hover { color: white; }

        .nav-mobile-cta {
            color: var(--green) !important;
            font-weight: 600;
        }

        .nav-mobile-login {
            display: inline-flex; align-items: center; gap: 0.5rem;
            margin-top: 0.5rem;
        }
        .nav-mobile-login svg { width: 15px; height: 15px; }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            background: url('hero-bg.jpeg') center center / cover no-repeat;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            text-align: center;
            padding: 100px 5% 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(0,117,201,0.45) 0%, rgba(0,65,110,0.60) 100%);
            pointer-events: none;
        }

        .hero-badges {
            display: flex;
            gap: 0.6rem;
            justify-content: center;
            margin-bottom: 1.5rem;
            animation: fadeUp 0.7s ease both;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.35);
            color: white;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 0.4rem 1.1rem;
            border-radius: 100px;
        }
        .hero-badge--green {
            background: rgba(154,201,59,0.25);
            border-color: rgba(154,201,59,0.6);
            color: var(--green);
        }

        .hero h1 {
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            max-width: 800px;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 24px rgba(0,0,0,0.35);
            animation: fadeUp 0.7s 0.1s ease both;
        }

        .hero h1 span { color: var(--green); }

        .hero p {
            margin-top: 1.5rem;
            font-size: 1.15rem;
            color: rgba(255,255,255,0.8);
            max-width: 560px;
            line-height: 1.7;
            font-weight: 300;
            animation: fadeUp 0.7s 0.2s ease both;
        }

        .hero-buttons {
            display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; justify-content: center;
            animation: fadeUp 0.7s 0.3s ease both;
        }

        .btn-primary {
            background: var(--green);
            color: var(--white);
            padding: 0.85rem 2rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 20px rgba(154,201,59,0.4);
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(154,201,59,0.5); }

        .btn-outline {
            border: 1.5px solid rgba(255,255,255,0.5);
            color: var(--white);
            padding: 0.85rem 2rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            text-decoration: none;
            transition: border-color 0.2s, background 0.2s;
        }
        .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

        .hero-stats {
            display: flex; gap: 3rem; margin-top: 4rem; flex-wrap: wrap; justify-content: center;
            animation: fadeUp 0.7s 0.4s ease both;
        }

        .stat { text-align: center; }
        .stat-num {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--white);
        }
        .stat-num span { color: var(--green); }
        .stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 0.2rem; letter-spacing: 0.05em; }

        /* ── SECTIONS ── */
        section { padding: 100px 5%; }

        .section-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 0.8rem;
        }

        h2 {
            font-size: clamp(1.9rem, 3.5vw, 2.8rem);
            font-weight: 800;
            color: var(--blue);
            line-height: 1.15;
        }

        .sub-h2 {
            font-size: 1rem;
            color: var(--gray);
            max-width: 560px;
            line-height: 1.7;
            margin-top: 1rem;
        }

        /* ── EXPERTISE ── */
        .expertise { background: var(--white); }

        .expertise-inner {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
        }

        .expertise-cards { display: flex; flex-direction: column; gap: 1rem; }

        .exp-card {
            background: var(--box);
            border-radius: 10px;
            padding: 1.8rem 2rem;
            border-left: 4px solid transparent;
            transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
            cursor: default;
        }
        .exp-card:hover {
            border-left-color: var(--blue);
            box-shadow: 0 8px 30px rgba(0,117,201,0.1);
            transform: translateX(4px);
        }

        .exp-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .exp-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

        .exp-icon {
            width: 36px; height: 36px;
            background: var(--blue);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1rem;
        }
        .exp-icon svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 2; }

        /* ── OPLOSSINGEN ── */
        .solutions { background: var(--white); }

        .solutions-inner { max-width: 1200px; margin: 0 auto; }

        .solutions-header { margin-bottom: 3rem; }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
        }

        .sol-card {
            background: var(--white);
            border-radius: 10px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: box-shadow 0.25s, transform 0.25s;
            border-top: 3px solid transparent;
        }
        .sol-card:hover {
            box-shadow: 0 12px 35px rgba(0,0,0,0.08);
            transform: translateY(-4px);
            border-top-color: var(--green);
        }

        .sol-icon {
            width: 52px; height: 52px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, var(--blue), #005fa0);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
        }
        .sol-icon svg { width: 24px; height: 24px; fill: none; stroke: white; stroke-width: 1.8; }

        .sol-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .sol-tags { display: flex; flex-direction: column; gap: 0.3rem; margin-top: 0.8rem; }
        .sol-tag {
            font-size: 0.72rem;
            color: var(--gray);
            background: var(--box);
            border-radius: 4px;
            padding: 0.2rem 0.5rem;
        }

        /* ── SOFTWARE ── */
        .software {
            background: #eef6ff;
            position: relative; overflow: hidden;
        }

        .software::before {
            content: '';
            position: absolute;
            right: -100px; top: -100px;
            width: 500px; height: 500px;
            border-radius: 50%;
            background: rgba(255,255,255,0.04);
        }

        .software-inner {
            max-width: 1200px; margin: 0 auto;
        }
        .sw-dummy {
            max-width: 500px;
            margin: 2rem auto 0;
        }

        .software h2 { color: var(--blue); }
        .software .section-label { color: var(--blue); }

        .software p {
            color: var(--gray);
            line-height: 1.75;
            margin-top: 1rem;
            font-size: 1rem;
        }

        /* Module grid */
        .sw-module-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            max-width: 1200px;
            margin: 3rem auto 3rem;
        }
        .sw-mod-card {
            background: var(--white);
            border: 1px solid rgba(0,117,201,0.12);
            border-radius: 14px;
            padding: 1.3rem;
        }
        .sw-mod-icon {
            width: 38px; height: 38px;
            background: rgba(154,201,59,0.18);
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 0.8rem;
        }
        .sw-mod-icon svg {
            width: 18px; height: 18px;
            fill: none; stroke: var(--green); stroke-width: 2; stroke-linecap: round;
        }
        .sw-mod-card h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.6rem;
        }
        .sw-mod-card ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }
        .sw-mod-card ul li {
            font-size: 0.8rem;
            color: var(--gray);
            padding-left: 0.8rem;
            position: relative;
        }
        .sw-mod-card ul li::before {
            content: '–';
            position: absolute;
            left: 0;
            color: var(--green);
        }

        /* Platform features */
        .sw-platform {
            max-width: 1200px;
            margin: 0 auto 3rem;
        }
        .sw-platform-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        .sw-platform-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.2rem;
        }
        .sw-pfeat {
            display: flex;
            gap: 0.9rem;
            align-items: flex-start;
        }
        .sw-pfeat-icon {
            width: 36px; height: 36px; flex-shrink: 0;
            background: rgba(0,117,201,0.25);
            border-radius: 9px;
            display: flex; align-items: center; justify-content: center;
        }
        .sw-pfeat-icon svg {
            width: 16px; height: 16px;
            fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round;
        }
        .sw-pfeat div { display: flex; flex-direction: column; gap: 0.2rem; }
        .sw-pfeat strong { font-size: 0.88rem; color: var(--dark); }
        .sw-pfeat span { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }

        .sw-dummy { max-width: 1200px; margin: 0 auto; padding: 0 0 2rem; }

        .software-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }

        .sw-feat {
            display: flex; align-items: center; gap: 0.8rem;
            color: rgba(255,255,255,0.85);
            font-size: 0.92rem;
        }

        .sw-feat::before {
            content: '';
            width: 20px; height: 20px; flex-shrink: 0;
            background: var(--green);
            border-radius: 50%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
            background-size: 12px;
            background-repeat: no-repeat;
            background-position: center;
        }

        .software-visual {
            background: var(--white);
            border: 1px solid rgba(0,117,201,0.15);
            border-radius: 16px;
            padding: 2.5rem;
        }

        .sw-logo-wrap {
            display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
        }

        .sw-product-name {
            font-size: 2rem;
            font-weight: 800;
            color: var(--blue);
        }

        .sw-badge {
            background: var(--green);
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            padding: 0.25rem 0.6rem;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .sw-desc {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.65;
            margin-bottom: 1.5rem;
        }

        .sw-pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
        .sw-pill {
            background: #eef6ff;
            border: 1px solid rgba(0,117,201,0.2);
            color: var(--blue);
            font-size: 0.78rem;
            padding: 0.3rem 0.8rem;
            border-radius: 100px;
        }

        /* ── ABOUT ── */
        .about { background: var(--white); }

        .about-inner {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
        }

        .about p {
            color: #444;
            line-height: 1.8;
            font-size: 0.97rem;
            margin-top: 1.2rem;
        }

        .mv-cards { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 0.5rem; }

        .mv-card {
            background: var(--box);
            border-radius: 10px;
            padding: 1.8rem;
            position: relative;
            overflow: hidden;
        }

        .mv-card::before {
            content: '';
            position: absolute; top: 0; left: 0;
            width: 4px; height: 100%;
            background: var(--blue);
        }

        .mv-card.green::before { background: var(--green); }

        .mv-card h3 {
            
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--gray);
            margin-bottom: 0.6rem;
        }

        .mv-card p {
            font-size: 0.9rem;
            color: var(--dark);
            line-height: 1.65;
            margin-top: 0;
        }

        /* ── SUPPORT ── */
        .support { background: var(--box); padding-top: 50px; }

        .support-inner {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
        }

        .support-contact-details { margin-top: 2rem; }

        .support-inner h3 {
            font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem;
        }

        .support-remote p { color: #555; line-height: 1.7; margin-bottom: 0.75rem; }

        .support-steps {
            list-style: none; margin: 0.75rem 0 1.5rem;
        }

        .support-steps li {
            padding: 0.35rem 0 0.35rem 1.5rem;
            position: relative; color: #555; line-height: 1.6;
        }

        .support-steps li::before {
            content: '–';
            position: absolute; left: 0; color: var(--green);
        }

        .isl-box {
            display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
            margin-top: 0.5rem;
        }

        .isl-box input {
            flex: 1; min-width: 160px;
            padding: 0.6rem 1rem; border: 1.5px solid #ddd; border-radius: 4px;
            font-family: 'ClearSans', sans-serif; font-size: 0.95rem; color: var(--dark);
            outline: none; transition: border-color 0.2s;
        }

        .isl-box input:focus { border-color: var(--green); }

        .isl-box button {
            padding: 0.6rem 1.4rem; background: var(--green); color: white;
            border: none; border-radius: 4px; font-family: 'ClearSans', sans-serif;
            font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: opacity 0.2s;
        }

        .isl-box button:hover { opacity: 0.88; }

        #isl-status {
            width: 100%; font-size: 0.9rem; color: #555; margin-top: 0.25rem;
        }

        /* ── CONTACT ── */
        .contact { background: var(--white); }

        .contact-inner {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
        }

        .contact-detail {
            display: flex; align-items: flex-start; gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 42px; height: 42px; flex-shrink: 0;
            background: var(--blue);
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
        }
        .contact-icon svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 2; }

        .contact-text strong {
            display: block;
            font-weight: 600;
            color: var(--dark);
            font-size: 0.85rem;
            margin-bottom: 0.2rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }
        .contact-text span { color: var(--gray); font-size: 0.95rem; }
        .contact-text a { color: var(--blue); text-decoration: none; }
        .contact-text a:hover { text-decoration: underline; }

        .contact-right { position: relative; }

        .contact-cta-box {
            background: var(--blue);
            border-radius: 16px;
            padding: 3rem;
            text-align: center;
        }

        .contact-cta-box h3 {
            
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 0.8rem;
        }

        .contact-cta-box p {
            color: rgba(255,255,255,0.75);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }

        .cta-box-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1.8rem;
        }

        .cta-box-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            width: 100%;
            padding: 0.85rem 1.5rem;
            border-radius: 8px;
            font-family: 'ClearSans', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            background: var(--green);
            color: white;
            transition: opacity 0.2s, transform 0.2s;
        }
        .cta-box-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
        .cta-box-btn:hover { opacity: 0.88; transform: translateY(-1px); }

        .cta-box-btn--outline {
            background: transparent;
            border: 1.5px solid rgba(255,255,255,0.45);
            color: white;
        }
        .cta-box-btn--outline:hover { background: rgba(255,255,255,0.1); opacity: 1; }

        /* ── CONTACTFORMULIER ── */
        .contact-form-wrap {
            display: none;
            background: var(--white);
            border-radius: 16px;
            border: 1px solid rgba(0,117,201,0.15);
            padding: 2.5rem;
        }
        .contact-form-wrap.visible { display: block; }

        .contact-form-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
        }
        .contact-form-header h3 {
            
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--blue);
        }
        .contact-form-close {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.3rem;
            color: var(--gray);
            transition: color 0.2s;
        }
        .contact-form-close:hover { color: var(--dark); }
        .contact-form-close svg { width: 20px; height: 20px; display: block; }

        .cf-row { display: flex; gap: 1.2rem; }
        .cf-row--2 > .cf-field { flex: 1; }

        .cf-field {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            margin-bottom: 1.2rem;
        }
        .cf-field label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--dark);
        }
        .cf-req { color: var(--blue); }

        .cf-field input,
        .cf-field select,
        .cf-field textarea {
            border: 1.5px solid #d0dce8;
            border-radius: 8px;
            padding: 0.7rem 1rem;
            font-family: 'ClearSans', sans-serif;
            font-size: 0.92rem;
            color: var(--dark);
            background: var(--white);
            transition: border-color 0.2s, box-shadow 0.2s;
            outline: none;
        }
        .cf-field input:focus,
        .cf-field select:focus,
        .cf-field textarea:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(0,117,201,0.1);
        }
        .cf-field textarea { resize: vertical; }
        .cf-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23828282' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

        .cf-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }
        .cf-privacy { font-size: 0.78rem; color: var(--gray); }

        .cf-submit {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
        }
        .cf-submit-icon { width: 15px; height: 15px; }

        .cf-feedback {
            margin-top: 1rem;
            font-size: 0.9rem;
            font-weight: 600;
            min-height: 1.4rem;
        }
        .cf-feedback.success { color: #5a7a1a; }
        .cf-feedback.error   { color: #c0392b; }

        @media (max-width: 768px) {
            .cf-row--2 { flex-direction: column; gap: 0; }
        }

        /* ── PHISHED ── */
        .phished {
            background: var(--box);
            position: relative;
            overflow: hidden;
        }

        .phished::before {
            content: '';
            position: absolute;
            left: -150px; bottom: -150px;
            width: 600px; height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,117,201,0.06) 0%, transparent 70%);
        }

        .phished::after {
            content: '';
            position: absolute;
            right: -100px; top: -100px;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(154,201,59,0.05) 0%, transparent 70%);
        }

        .phished-inner {
            max-width: 1200px; margin: 0 auto;
            position: relative; z-index: 1;
        }

        .phished .section-label { color: var(--blue); }
        .phished h2 { color: var(--dark); }
        .phished .sub-h2 { color: var(--gray); }

        /* Phished logo */
        .ph-logo-wrap { margin-bottom: 2.5rem; }
        .ph-logo-svg { height: 44px; }

        /* Blokken */
        .ph-block { margin-bottom: 2.5rem; }
        .ph-h3 {
            
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 0.8rem;
        }
        .ph-block p { color: var(--dark); line-height: 1.75; }

        /* Split: tekst + features */
        .ph-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
            margin-top: 3.5rem;
            margin-bottom: 2.5rem;
        }
        .ph-split-text h3.ph-h3 { margin-bottom: 0.8rem; }
        .ph-split-text p { color: var(--dark); line-height: 1.75; }

        .ph-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .ph-features li {
            display: flex;
            flex-direction: column;
            padding-left: 1.2rem;
            border-left: 3px solid var(--blue);
        }
        .ph-features li strong { font-size: 0.95rem; color: var(--dark); }
        .ph-features li span { font-size: 0.85rem; color: var(--gray); }

        /* Vergelijkingstabel */
        .ph-compare {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 3rem;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.08);
        }
        .ph-compare-col { padding: 0; }
        .ph-compare-header {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.9rem 1.4rem;
        }
        .ph-ours .ph-compare-header { background: rgba(154,201,59,0.15); color: #5a7a1a; }
        .ph-theirs .ph-compare-header { background: rgba(231,76,60,0.1); color: #c0392b; }
        .ph-compare-col ul { list-style: none; }
        .ph-compare-col ul li {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            padding: 0.85rem 1.4rem;
            font-size: 0.88rem;
            color: var(--dark);
            line-height: 1.5;
            border-top: 1px solid rgba(0,0,0,0.06);
        }
        .ph-compare-col ul li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

        /* Statistieken */
        .ph-stats {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        .ph-stat-card {
            flex: 1;
            min-width: 160px;
            background: var(--white);
            border: 1px solid rgba(0,117,201,0.15);
            border-radius: 14px;
            padding: 1.8rem 1.5rem;
            text-align: center;
        }
        .ph-stat-card--green { border-color: rgba(154,201,59,0.4); }
        .ph-stat-card--green .ph-stat-num { color: var(--green); }
        .ph-stat-num {
            
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--blue);
            margin-bottom: 0.5rem;
        }
        .ph-stat-label { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }
        .ph-stat-arrow { font-size: 1.5rem; color: var(--gray); flex-shrink: 0; }

        /* Stappen */
        .ph-steps {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            margin-bottom: 3rem;
        }
        .ph-step {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: var(--white);
            border: 1px solid rgba(0,117,201,0.1);
            border-radius: 12px;
            padding: 1.2rem 1.4rem;
        }
        .ph-step-num {
            width: 34px; height: 34px; flex-shrink: 0;
            background: var(--blue);
            color: white;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }
        .ph-step-text { font-size: 0.9rem; color: var(--dark); line-height: 1.6; }
        .ph-step-text strong { color: var(--blue); }

        /* Quote */
        .ph-quote {
            background: linear-gradient(135deg, rgba(0,117,201,0.06), rgba(154,201,59,0.06));
            border-left: 4px solid var(--blue);
            border-radius: 0 12px 12px 0;
            padding: 1.8rem 2rem;
            margin-bottom: 2.5rem;
        }
        .ph-quote p {
            
            font-size: 1.1rem;
            font-style: italic;
            color: var(--blue);
            line-height: 1.6;
        }

        .phished-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-phished {
            background: var(--blue);
            color: white;
            padding: 0.85rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: background 0.2s, transform 0.2s;
            display: inline-block;
        }

        .btn-phished:hover {
            background: #005fa3;
            transform: translateY(-2px);
        }

        /* ── TRUSTED BY ── */
        .trusted {
            background: #eef6ff;
            padding: 70px 5%;
            overflow: hidden;
        }

        .trusted-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .trusted-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .trusted-label {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gray);
            margin-bottom: 0.5rem;
        }

        .trusted-header h2 {
            
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            font-weight: 800;
            color: var(--dark);
        }

        .trusted-header h2 span { color: var(--blue); }

        .trusted-track-wrap {
            position: relative;
            overflow: hidden;
        }




        .trusted-track {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .trusted-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 1.5rem;
        }

        .trusted-logo img {
            height: 60px;
            width: auto;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.65;
            transition: filter 0.3s, opacity 0.3s;
        }

        .trusted-logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        .trusted-logo svg {
            height: 60px;
            width: auto;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.65;
            transition: filter 0.3s, opacity 0.3s;
        }

        .trusted-logo:hover svg {
            filter: grayscale(0%);
            opacity: 1;
        }


        .trusted-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 3.5rem;
            flex-wrap: wrap;
        }

        .trusted-stat {
            text-align: center;
        }

        .trusted-stat-num {
            
            font-size: 2rem;
            font-weight: 800;
            color: var(--blue);
            line-height: 1;
        }

        .trusted-stat-num span { color: var(--green); }

        .trusted-stat-label {
            font-size: 0.82rem;
            color: var(--gray);
            margin-top: 0.35rem;
        }

        /* ── FOOTER ── */
        footer {
            background: var(--dark);
            color: rgba(255,255,255,0.55);
            padding: 60px 5% 0;
            font-size: 0.88rem;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .footer-logo svg {
            height: 44px;
            width: auto;
            display: block;
            margin-bottom: 1.4rem;
        }

        .footer-address {
            font-style: normal;
            line-height: 1.9;
            color: rgba(255,255,255,0.5);
            font-size: 0.88rem;
            margin-bottom: 1.2rem;
        }

        .footer-linkedin {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }
        .footer-linkedin svg { width: 16px; height: 16px; }
        .footer-linkedin:hover { color: var(--green); }

        .footer-heading {
            
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: rgba(255,255,255,0.35);
            margin-bottom: 1.2rem;
        }

        .footer-nav {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .footer-nav a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        .footer-nav a:hover { color: var(--green); }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.2rem 0;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.3);
        }

        @media (max-width: 768px) {
            .footer-inner { grid-template-columns: 1fr 1fr; }
            .footer-col--brand { grid-column: 1 / -1; }
        }

        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .sw-module-grid { grid-template-columns: 1fr 1fr; }
            .sw-platform-grid { grid-template-columns: 1fr; }
            .ph-split, .ph-compare, .ph-steps { grid-template-columns: 1fr; }
            .ph-stats { flex-direction: column; }
            .ph-stat-arrow { transform: rotate(90deg); }
            .expertise-inner, .software-inner, .about-inner, .contact-inner, .support-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .nav-links { display: none; }
            .nav-hamburger { display: flex; }
            .hero-stats { gap: 1.5rem; }
            .phished-stats-row { grid-template-columns: 1fr 1fr; }
        }
