/* ===== H-HOSTING SHARED STYLESHEET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0e1a;
  --bg2:       #0f1528;
  --bg3:       #141c35;
  --card:      #111827;
  --border:    rgba(59,130,246,.18);
  --blue:      #3b82f6;
  --blue-dark: #1d4ed8;
  --cyan:      #38bdf8;
  --text:      #f1f5f9;
  --muted:     #94a3b8;
  --radius:    12px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }

/* UTILITY */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.3); color: var(--cyan); font-size: 13px; font-weight: 600; padding: 4px 14px; border-radius: 999px; letter-spacing: .3px; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 8px; cursor: pointer; transition: all .2s; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; box-shadow: 0 0 24px rgba(59,130,246,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(59,130,246,.55); }
.btn-ghost { background: transparent; border: 1.5px solid rgba(59,130,246,.4); color: var(--text); }
.btn-ghost:hover { border-color: var(--blue); background: rgba(59,130,246,.08); }

/* NAVBAR */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; border-bottom: 1px solid var(--border); backdrop-filter: blur(18px); background: rgba(10,14,26,.85); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand { font-size: 18px; font-weight: 800; color: var(--text); }
.nav-logo-text .sub { font-size: 10px; color: var(--muted); font-weight: 500; letter-spacing: .5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--muted); font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--text); }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; transition: transform .2s; margin-top: 1px; }
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 8px 8px; min-width: 220px; box-shadow: 0 16px 48px rgba(0,0,0,.5); z-index: 200; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .15s ease, visibility .15s ease; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-size: 13px; color: var(--muted); font-weight: 500; transition: background .15s, color .15s; white-space: nowrap; }
.dropdown-menu a:hover { background: rgba(59,130,246,.1); color: var(--text); }
.dropdown-menu a svg { flex-shrink: 0; color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* BREADCRUMB */
.breadcrumb-bar { margin-top: 64px; padding: 12px 0; background: var(--bg2); border-bottom: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.breadcrumb-bar a { color: var(--blue); }
.breadcrumb-bar a:hover { text-decoration: underline; }
.breadcrumb-bar span { margin: 0 6px; }

/* PAGE HERO */
.page-hero { padding: 72px 0 80px; text-align: center; background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37,99,235,.22) 0%, transparent 70%); }
.page-hero-icon { width: 72px; height: 72px; border-radius: 18px; background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--blue); }
.page-hero h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 900; letter-spacing: -1.2px; line-height: 1.08; margin-bottom: 20px; }
.page-hero h1 span { background: linear-gradient(135deg, var(--blue), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto 36px; }
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* SECTIONS */
.section { padding: 80px 0; }
.section-label { text-align: center; margin-bottom: 16px; }
.section h2 { text-align: center; font-size: clamp(26px, 4vw, 42px); font-weight: 800; letter-spacing: -.8px; margin-bottom: 14px; }
.section-sub { text-align: center; color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto 52px; }
.alt-bg { background: var(--bg2); }

/* FEATURES GRID */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: border-color .2s; }
.feature-item:hover { border-color: rgba(59,130,246,.4); }
.feature-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(59,130,246,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); }
.feature-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* SPEC TABLE */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th, .spec-table td { padding: 14px 20px; text-align: center; border-bottom: 1px solid var(--border); }
.spec-table th:first-child, .spec-table td:first-child { text-align: left; color: var(--muted); font-weight: 500; }
.spec-table thead th { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); background: var(--bg3); }
.spec-table tbody tr:last-child td { border-bottom: none; font-weight: 700; }
.spec-table .highlight { color: var(--blue); font-weight: 600; background: rgba(59,130,246,.06); }
.spec-table thead .highlight { color: var(--cyan); }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.step { text-align: center; padding: 36px 28px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; font-size: 20px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* PRICING CARDS */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; position: relative; transition: all .25s; }
.price-card.featured { border-color: var(--blue); box-shadow: 0 0 48px rgba(59,130,246,.2); }
.price-card-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 16px; border-radius: 999px; white-space: nowrap; }
.price-card .plan-name { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.price-card .plan-price { font-size: 44px; font-weight: 900; letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
.price-card .plan-price span { font-size: 16px; font-weight: 600; color: var(--muted); }
.price-card .plan-period { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.price-card ul { list-style: none; margin-bottom: 28px; }
.price-card ul li { display: flex; align-items: center; gap: 10px; font-size: 14px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.05); color: var(--muted); }
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li svg { color: var(--blue); flex-shrink: 0; }
.price-card .btn { width: 100%; justify-content: center; }

.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100% !important; background: transparent !important; border: none !important; outline: none !important; box-shadow: none !important; color: var(--text) !important; font-family: inherit !important; font-size: 16px !important; font-weight: 600 !important; padding: 20px 24px !important; text-align: left !important; cursor: pointer !important; display: flex !important; justify-content: space-between !important; align-items: center !important; gap: 16px !important; line-height: 1.4 !important; transition: background .15s ease, color .15s ease !important; }
.faq-q:hover { background: rgba(59,130,246,.05) !important; color: var(--blue) !important; }
.faq-q:focus { outline: none !important; }
.faq-q svg { flex-shrink: 0; transition: transform .25s ease; color: var(--muted); min-width: 18px; }
.faq-item.open > .faq-q { background: rgba(59,130,246,.06) !important; color: var(--blue) !important; }
.faq-item.open > .faq-q svg { transform: rotate(180deg); color: var(--blue); }
.faq-a { font-size: 15px; color: var(--muted); line-height: 1.75; overflow: hidden; max-height: 0; transition: max-height .35s ease, padding .35s ease; padding: 0 24px; }
.faq-item.open > .faq-a { max-height: 400px; padding: 0 24px 20px; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, #0f1e3d 0%, #0a0e1a 100%); border: 1px solid rgba(59,130,246,.25); border-radius: 20px; padding: 72px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 500px; height: 300px; background: radial-gradient(ellipse, rgba(37,99,235,.25) 0%, transparent 70%); pointer-events: none; }
.cta-banner h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; letter-spacing: -.8px; margin-bottom: 16px; }
.cta-banner p { color: var(--muted); font-size: 17px; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 48px 0 32px; background: var(--bg2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 16px 0 20px; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: color .15s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--text); }
.footer-bottom-left { display: flex; align-items: center; gap: 12px; }
.footer-hit-icon { display: flex; align-items: center; flex-shrink: 0; opacity: .8; transition: opacity .2s; }
.footer-hit-icon:hover { opacity: 1; }
.footer-hit-icon svg { display: block; }
.sublabel-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.2); color: var(--muted); font-size: 12px; font-weight: 500; padding: 4px 12px; border-radius: 999px; }
.sublabel-badge strong { color: var(--blue); }

/* Hekkelman I.T. partner block in footer */
.hekkelman-partner {
  display: inline-flex; align-items: center;
  background: rgba(15,30,64,.5); border: 1px solid rgba(59,130,246,.18);
  border-radius: 12px; padding: 10px 16px; margin-top: 4px;
  transition: border-color .2s, background .2s;
  text-decoration: none;
}
.hekkelman-partner:hover { border-color: rgba(59,130,246,.45); background: rgba(15,30,64,.85); }
.hekkelman-partner img { display: block; height: 44px; width: auto; }


/* FOOTER CONTACT INFO */
.footer-contact-item { display: flex; flex-direction: column; gap: 2px; font-size: 13px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.footer-contact-item:last-child { border-bottom: none; }
.footer-contact-item span { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: var(--blue); font-weight: 700; }
.footer-contact-item a, .footer-contact-item p { color: var(--muted); line-height: 1.5; margin: 0; font-size: 13px; }
.footer-contact-item a:hover { color: var(--text); }
.footer-kvk { margin-top: 14px; font-size: 11px; color: var(--muted); opacity: .65; line-height: 1.6; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 48px 24px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dropdown > a::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; transition: transform .2s; margin-top: 1px; }
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 8px 8px; min-width: 220px; box-shadow: 0 16px 48px rgba(0,0,0,.5); z-index: 200; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .15s ease, visibility .15s ease; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-size: 13px; color: var(--muted); font-weight: 500; transition: background .15s, color .15s; white-space: nowrap; }
.dropdown-menu a:hover { background: rgba(59,130,246,.1); color: var(--text); }
.dropdown-menu a svg { flex-shrink: 0; color: var(--blue); }

/* ========================================
   HOMEPAGE-SPECIFIC STYLES (from index.html)
   ======================================== */

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

    :root {
      --bg:        #0a0e1a;
      --bg2:       #0f1528;
      --bg3:       #141c35;
      --card:      #111827;
      --border:    rgba(59,130,246,.18);
      --blue:      #3b82f6;
      --blue-dark: #1d4ed8;
      --blue-glow: #2563eb;
      --cyan:      #38bdf8;
      --text:      #f1f5f9;
      --muted:     #94a3b8;
      --radius:    12px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; }

    /* ===== UTILITY ===== */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.3);
      color: var(--cyan); font-size: 13px; font-weight: 600;
      padding: 4px 14px; border-radius: 999px; letter-spacing: .3px;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 15px; font-weight: 700; padding: 14px 28px;
      border-radius: 8px; cursor: pointer; transition: all .2s; border: none;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
      color: #fff; box-shadow: 0 0 24px rgba(59,130,246,.35);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(59,130,246,.55); }
    .btn-ghost {
      background: transparent; border: 1.5px solid rgba(59,130,246,.4);
      color: var(--text);
    }
    .btn-ghost:hover { border-color: var(--blue); background: rgba(59,130,246,.08); }

    /* ===== NAVBAR ===== */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(18px); background: rgba(10,14,26,.85);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; }
    .nav-logo svg { width: 36px; height: 36px; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .nav-logo-text .brand { font-size: 18px; font-weight: 800; color: var(--text); }
    .nav-logo-text .sub { font-size: 10px; color: var(--muted); font-weight: 500; letter-spacing: .5px; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a { font-size: 14px; color: var(--muted); font-weight: 500; transition: color .15s; }
    .nav-links a:hover { color: var(--text); }
    .nav-cta { display: flex; align-items: center; gap: 10px; }

    /* ===== HERO ===== */
    .hero {
      padding: 148px 0 96px;
      background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(37,99,235,.22) 0%, transparent 70%);
      text-align: center; position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none; opacity: .6;
    }
    .hero-badge { margin-bottom: 24px; }
    .hero h1 {
      font-size: clamp(36px, 6vw, 72px); font-weight: 900; line-height: 1.05;
      letter-spacing: -1.5px; margin-bottom: 24px;
    }
    .hero h1 span {
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto 40px;
      line-height: 1.7;
    }
    .hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
    .hero-trust {
      margin-top: 64px; display: flex; justify-content: center; align-items: center;
      gap: 32px; flex-wrap: wrap;
    }
    .trust-item { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 500; }
    .trust-item svg { color: var(--blue); }

    /* ===== SERVICES ===== */
    .section { padding: 88px 0; }
    .section-label { text-align: center; margin-bottom: 16px; }
    .section h2 {
      text-align: center; font-size: clamp(28px, 4vw, 44px); font-weight: 800;
      letter-spacing: -.8px; margin-bottom: 16px;
    }
    .section-sub { text-align: center; color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto 56px; }
    .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
    .card {
      background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 32px 28px; transition: all .25s; position: relative; overflow: hidden;
    }
    .card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--blue), var(--cyan));
      opacity: 0; transition: opacity .25s;
    }
    .card:hover { border-color: rgba(59,130,246,.4); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
    .card:hover::before { opacity: 1; }
    .card-icon {
      width: 52px; height: 52px; border-radius: 12px;
      background: rgba(59,130,246,.12); display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .card-icon svg { width: 26px; height: 26px; color: var(--blue); }
    .card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
    .card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
    .card-link { font-size: 14px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 4px; }
    .card-link:hover { color: var(--cyan); }

    /* ===== PRICING ===== */
    .pricing-bg { background: var(--bg2); }
    .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
    .plan {
      background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 36px 32px; position: relative; transition: all .25s;
    }
    .plan.featured {
      border-color: var(--blue); box-shadow: 0 0 48px rgba(59,130,246,.2);
      background: linear-gradient(135deg, #111827 0%, #0f1e3d 100%);
    }
    .plan-badge {
      position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      color: #fff; font-size: 11px; font-weight: 700; padding: 3px 16px;
      border-radius: 999px; letter-spacing: .5px; white-space: nowrap;
    }
    .plan-name { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
    .plan-price { font-size: 48px; font-weight: 900; letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
    .plan-price span { font-size: 18px; font-weight: 600; color: var(--muted); }
    .plan-period { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
    .plan-features { list-style: none; margin-bottom: 32px; }
    .plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
    .plan-features li:last-child { border-bottom: none; }
    .plan-features li svg { color: var(--blue); flex-shrink: 0; }
    .plan .btn { width: 100%; justify-content: center; }

    /* ===== WHY ===== */
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .why-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
    .why-item { display: flex; align-items: flex-start; gap: 16px; }
    .why-icon {
      width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
      background: rgba(59,130,246,.12); display: flex; align-items: center; justify-content: center;
    }
    .why-icon svg { width: 22px; height: 22px; color: var(--cyan); }
    .why-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
    .why-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }
    .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-card {
      background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 28px 24px;
    }
    .stat-card .num { font-size: 40px; font-weight: 900; color: var(--blue); letter-spacing: -1px; }
    .stat-card .label { font-size: 13px; color: var(--muted); margin-top: 4px; }

    /* ===== CTA BANNER ===== */
    .cta-banner {
      background: linear-gradient(135deg, #0f1e3d 0%, #0a0e1a 100%);
      border: 1px solid rgba(59,130,246,.25); border-radius: 20px;
      padding: 72px 48px; text-align: center; margin: 0 0 88px;
      position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: ''; position: absolute;
      top: -80px; left: 50%; transform: translateX(-50%);
      width: 500px; height: 300px;
      background: radial-gradient(ellipse, rgba(37,99,235,.25) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-banner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -.8px; margin-bottom: 16px; }
    .cta-banner p { color: var(--muted); font-size: 17px; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
    .cta-banner .hero-actions { margin-bottom: 0; }

    /* ===== FOOTER ===== */
    .footer {
      border-top: 1px solid var(--border); padding: 48px 0 32px;
      background: var(--bg2);
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
    .footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 16px 0 20px; max-width: 280px; }
    .footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: 14px; color: var(--muted); transition: color .15s; }
    .footer-col ul li a:hover { color: var(--text); }
    .footer-bottom {
      border-top: 1px solid var(--border); padding-top: 28px;
      display: flex; align-items: center; justify-content: space-between;
      font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom a { color: var(--muted); }
    .footer-bottom a:hover { color: var(--text); }
    /* FOOTER CONTACT INFO */
    .footer-contact-item { display: flex; flex-direction: column; gap: 2px; font-size: 13px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
    .footer-contact-item:last-child { border-bottom: none; }
    .footer-contact-item span { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: var(--blue); font-weight: 700; }
    .footer-contact-item a, .footer-contact-item p { color: var(--muted); line-height: 1.5; margin: 0; font-size: 13px; }
    .footer-contact-item a:hover { color: var(--text); }
    .footer-kvk { margin-top: 14px; font-size: 11px; color: var(--muted); opacity: .65; line-height: 1.6; }
    /* DROPDOWN */
    .nav-dropdown { position: relative; }
    .nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
    .nav-dropdown > a::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; transition: transform .2s; margin-top: 1px; }
    .nav-dropdown:hover > a::after { transform: rotate(180deg); }
    .dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 8px 8px; min-width: 220px; box-shadow: 0 16px 48px rgba(0,0,0,.5); z-index: 200; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .15s ease, visibility .15s ease; }
    .nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; }
    .dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-size: 13px; color: var(--muted); font-weight: 500; transition: background .15s, color .15s; white-space: nowrap; }
    .dropdown-menu a:hover { background: rgba(59,130,246,.1); color: var(--text); }
    .dropdown-menu a svg { flex-shrink: 0; color: var(--blue); }
    .footer-bottom-left { display: flex; align-items: center; gap: 12px; }
    .footer-hit-icon { display: flex; align-items: center; flex-shrink: 0; opacity: .8; transition: opacity .2s; }
    .footer-hit-icon:hover { opacity: 1; }
    .footer-hit-icon svg { display: block; }
    .sublabel-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.2);
      color: var(--muted); font-size: 12px; font-weight: 500;
      padding: 4px 12px; border-radius: 999px;
    }
    .sublabel-badge strong { color: var(--blue); }
    .hekkelman-partner {
      display: inline-flex; align-items: center;
      background: rgba(15,30,64,.5); border: 1px solid rgba(59,130,246,.18);
      border-radius: 12px; padding: 10px 16px; margin-top: 4px;
      transition: border-color .2s, background .2s;
      text-decoration: none;
    }
    .hekkelman-partner:hover { border-color: rgba(59,130,246,.45); background: rgba(15,30,64,.85); }
    .hekkelman-partner img { display: block; height: 44px; width: auto; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .nav-links, .nav-cta .btn-ghost { display: none; }
      .why-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .cta-banner { padding: 48px 24px; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; }
      .plan { padding: 28px 20px; }
    }

/* ===== LOCAL HERO ===== */
.local-hero {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg3) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.local-hero::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(59,130,246,.08) 0%, transparent 65%);
  pointer-events: none;
}
.local-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.local-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.local-contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.local-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.local-contact-item:last-of-type { border-bottom: none; }
.local-contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(59,130,246,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.local-contact-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--blue);
  margin-bottom: 4px;
}
.local-contact-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.local-contact-item a {
  color: var(--muted);
  transition: color .15s;
}
.local-contact-item a:hover { color: var(--text); }
.local-contact-kvk {
  margin-top: 16px;
  font-size: 11px;
  color: var(--muted);
  opacity: .55;
  text-align: center;
  letter-spacing: .3px;
}
@media (max-width: 768px) {
  .local-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .local-hero { padding: 64px 0; }
}


/* ===== DIENSTEN SPOTLIGHT ===== */
.services-spotlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.spotlight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.spotlight-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59,130,246,.15);
}
.spotlight-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.spotlight-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.spotlight-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.spotlight-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.spotlight-features li {
  font-size: 13.5px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.spotlight-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.spotlight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 8px;
}
.spotlight-price {
  font-size: 13px;
  color: var(--muted);
}
.spotlight-price strong {
  color: var(--text);
  font-size: 15px;
}
.spotlight-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
}
.spotlight-link:hover { opacity: .75; }

@media (max-width: 900px) {
  .services-spotlight { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-spotlight { grid-template-columns: 1fr; }
}

/* ===== HOE HET WERKT v2 ===== */
.steps-section { background: var(--bg); }
.steps-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  align-items: start;
}
.step-v2 { display: flex; flex-direction: column; gap: 24px; }
.step-visual {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px 24px;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.step-bg-num {
  position: absolute;
  top: -10px; right: 12px;
  font-size: 90px;
  font-weight: 900;
  font-family: 'Courier New', monospace;
  color: rgba(59,130,246,.06);
  line-height: 1;
  letter-spacing: -4px;
  pointer-events: none;
  user-select: none;
}
.step-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(59,130,246,.1);
  border: 2px solid rgba(59,130,246,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(59,130,246,.15);
}
.step-circle--active {
  background: rgba(59,130,246,.18);
  border-color: var(--blue);
  box-shadow: 0 0 32px rgba(59,130,246,.3);
}
.step-circle--green {
  background: rgba(34,197,94,.12);
  border-color: rgba(34,197,94,.5);
  color: #22c55e;
  box-shadow: 0 0 28px rgba(34,197,94,.2);
}
.step-terminal-mini {
  width: 100%;
  background: #050d1f;
  border-radius: 10px;
  border: 1px solid rgba(59,130,246,.15);
  padding: 12px 14px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
}
.stm-bar { display: flex; gap: 5px; margin-bottom: 10px; }
.stm-bar span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.15); }
.stm-bar span:nth-child(1) { background: rgba(239,68,68,.6); }
.stm-bar span:nth-child(2) { background: rgba(245,158,11,.6); }
.stm-bar span:nth-child(3) { background: rgba(34,197,94,.6); }
.stm-line { line-height: 1.8; color: rgba(255,255,255,.6); white-space: nowrap; overflow: hidden; }
.stm-prompt { color: #38bdf8; margin-right: 6px; }
.stm-blue { color: #38bdf8; }
.stm-green { color: #22c55e; }
.stm-muted { color: rgba(255,255,255,.3); font-size: 11px; }
.stm-cursor { display: inline-block; color: #22c55e; animation: blink 1s step-end infinite; }
.step-arrow { display: flex; justify-content: center; margin: -10px 0; opacity: .6; }
.step-arrow--hidden { visibility: hidden; }
.step-body { padding: 0 4px; }
.step-badge-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(59,130,246,.15);
  border: 1px solid rgba(59,130,246,.3);
  color: var(--blue);
  font-size: 11px; font-weight: 800;
  font-family: 'Courier New', monospace;
  margin-bottom: 10px;
}
.step-badge-num--green { background: rgba(34,197,94,.12); border-color: rgba(34,197,94,.4); color: #22c55e; }
.step-body h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-body p { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin: 0; }
@media (max-width: 900px) {
  .steps-grid-v2 { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .step-arrow { transform: rotate(90deg); }
  .step-arrow--hidden { display: none; }
}



/* ===== FOOTER PARTNERS ===== */
.footer-partners {
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-bottom: 28px;
  margin-bottom: 48px;
}
.footer-partners-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  opacity: .4;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-partners-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fp-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: .45;
  transition: opacity .2s;
}
.fp-logo:hover { opacity: .8; }
.fp-logo span { font-size: 13px; font-weight: 500; color: var(--muted); }
.fp-sep { color: rgba(255,255,255,.12); font-size: 16px; }
@media (max-width: 480px) { .fp-sep { display: none; } }
