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

    :root {
      --gold: #C9922A;
      --gold-light: rgba(201, 146, 42, 0.15);
      --gold-border: rgba(201, 146, 42, 0.25);
      --dark: #1e2226;
      --dark2: #252b30;
      --dark3: #2d3338;
      --dark4: #161a1d;
      --text: #ffffff;
      --text-muted: rgba(255,255,255,0.65);
      --text-subtle: rgba(255,255,255,0.4);
      --divider: rgba(255,255,255,0.06);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: var(--dark);
      color: var(--text);
      line-height: 1.6;
    }
    a { color: inherit; }

    /* NAV */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(30, 34, 38, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--gold-border);
      padding: 0 2rem;
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
    }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo-icon {
      display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
      width: 26px; height: 26px;
    }
    .nav-logo-icon span {
      border: 1.8px solid var(--gold); border-radius: 2px; display: block;
    }
    .nav-logo-icon span:nth-child(2) { border-right-width: 4px; }
    .nav-brand-name { font-size: 18px; font-weight: 600; color: #fff; letter-spacing: 0.01em; }
    .nav-brand-name em { color: var(--gold); font-style: normal; }
    .nav-brand-sub {
      font-size: 9px; letter-spacing: 0.2em; color: var(--gold);
      display: block; margin-top: -3px;
    }
    .nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
    .nav-links a {
      font-size: 14px; color: var(--text-muted);
      text-decoration: none; transition: color 0.2s;
    }
    .nav-links a:hover { color: #fff; }

    .btn {
      display: inline-block; padding: 10px 22px;
      border-radius: 6px; font-size: 14px; font-weight: 500;
      cursor: pointer; border: none; text-decoration: none;
      transition: opacity 0.2s, background 0.2s, border-color 0.2s;
    }
    .btn-gold { background: var(--gold); color: #1e2226; }
    .btn-gold:hover { opacity: 0.88; }
    .btn-outline {
      background: transparent; color: #fff;
      border: 1.5px solid rgba(255,255,255,0.35);
    }
    .btn-outline:hover { border-color: #fff; }

    /* HERO */
    .hero {
      min-height: 580px;
      display: flex; align-items: center; justify-content: center;
      text-align: center; padding: 5rem 2rem;
      position: relative; overflow: hidden;
      background: linear-gradient(160deg, #1a1e22 0%, #252b30 50%, #1a1e22 100%);
    }
    .hero-pattern {
      position: absolute; inset: 0; opacity: 0.05;
      background-image: repeating-linear-gradient(
        45deg, var(--gold) 0px, var(--gold) 1px,
        transparent 1px, transparent 44px
      );
    }
    .hero-content { position: relative; z-index: 1; max-width: 720px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold-light); border: 1px solid var(--gold-border);
      border-radius: 20px; padding: 6px 16px;
      font-size: 12px; color: var(--gold); letter-spacing: 0.06em;
      margin-bottom: 1.75rem;
    }
    .hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
    .hero h1 { font-size: 46px; font-weight: 600; line-height: 1.13; margin-bottom: 1.25rem; }
    .hero h1 em { color: var(--gold); font-style: normal; }
    .hero-sub {
      font-size: 17px; color: var(--text-muted);
      max-width: 520px; margin: 0 auto 2.25rem; line-height: 1.7;
    }
    .hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .hero-ctas .btn { font-size: 15px; padding: 13px 30px; }
    .hero-stats {
      display: flex; gap: 3rem; justify-content: center;
      margin-top: 3.5rem; padding-top: 2.5rem;
      border-top: 1px solid var(--divider); flex-wrap: wrap;
    }
    .stat-num { font-size: 26px; font-weight: 600; color: var(--gold); }
    .stat-label { font-size: 12px; color: var(--text-subtle); margin-top: 3px; letter-spacing: 0.05em; }

    /* SECTIONS */
    section { padding: 5rem 2rem; }
    .section-inner { max-width: 960px; margin: 0 auto; }
    .section-tag {
      font-size: 11px; letter-spacing: 0.14em;
      color: var(--gold); text-transform: uppercase; margin-bottom: 0.5rem;
    }
    .section-title { font-size: 30px; font-weight: 600; margin-bottom: 0.75rem; }
    .section-sub {
      font-size: 16px; color: var(--text-muted);
      line-height: 1.7; max-width: 620px;
    }
    .divider { border: none; border-top: 1px solid var(--divider); }

    /* PRODUCTS */
    .products-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px; margin-top: 2.75rem;
    }
    .product-card {
      background: var(--dark2); border: 1px solid var(--gold-border);
      border-radius: 12px; padding: 1.75rem;
      transition: border-color 0.25s, transform 0.25s;
    }
    .product-card:hover {
      border-color: rgba(201,146,42,0.6); transform: translateY(-3px);
    }
    .product-icon {
      width: 46px; height: 46px; background: var(--gold-light);
      border-radius: 10px; display: flex; align-items: center;
      justify-content: center; margin-bottom: 1.1rem;
    }
    .product-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 0.5rem; }
    .product-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
    .product-link {
      display: inline-block; font-size: 13px; color: var(--gold);
      margin-top: 1rem; text-decoration: none;
    }
    .product-link:hover { text-decoration: underline; }

    /* USPs */
    .usps { background: var(--dark2); }
    .usp-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 16px; margin-top: 2.75rem;
    }
    .usp-item {
      padding: 1.4rem 1.25rem; border-radius: 10px;
      background: var(--dark3); border-left: 3px solid var(--gold);
    }
    .usp-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 0.45rem; }
    .usp-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

    /* PROCES */
    .proces-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px; margin-top: 2.75rem;
    }
    .proces-step {
      background: var(--dark2); border: 1px solid var(--divider);
      border-radius: 12px; padding: 1.75rem; position: relative;
    }
    .proces-num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--gold); color: var(--dark);
      font-weight: 700; font-size: 15px; margin-bottom: 1rem;
    }
    .proces-step h4 { font-size: 16px; font-weight: 600; margin-bottom: 0.45rem; }
    .proces-step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

    /* LEVERANCIERS */
    .leveranciers { background: var(--dark2); }
    .lev-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 18px; margin-top: 2.75rem;
    }
    .lev-card {
      background: var(--dark3); border: 1px solid var(--gold-border);
      border-radius: 12px; padding: 1.75rem;
    }
    .lev-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 0.5rem; color: var(--gold); }
    .lev-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

    /* WERKGEBIED */
    .werkgebied { text-align: center; }
    .werkgebied .section-sub { margin: 0 auto; }
    .map-card {
      background: var(--dark2); border: 1px solid var(--gold-border);
      border-radius: 14px; padding: 2.5rem;
      display: flex; gap: 3rem; justify-content: center;
      margin-top: 2.75rem; flex-wrap: wrap;
    }
    .map-divider { width: 1px; background: var(--gold-border); align-self: stretch; }
    .map-country { text-align: center; }
    .country-flag { font-size: 38px; margin-bottom: 0.6rem; }
    .country-name { font-size: 16px; font-weight: 600; }
    .country-desc { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

    /* FAQ */
    .faq { background: var(--dark2); }
    .faq-list { margin-top: 2.5rem; }
    .faq-item {
      border-bottom: 1px solid var(--divider);
    }
    .faq-item:first-child { border-top: 1px solid var(--divider); }
    .faq-q {
      width: 100%; background: none; border: none;
      padding: 1.25rem 0; font-size: 16px; font-weight: 500;
      color: var(--text); cursor: pointer; text-align: left;
      display: flex; justify-content: space-between; align-items: center;
      font-family: inherit;
    }
    .faq-q:hover { color: var(--gold); }
    .faq-q::after {
      content: '+'; color: var(--gold); font-size: 22px;
      font-weight: 300; transition: transform 0.25s;
    }
    .faq-item.open .faq-q::after { transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease;
      font-size: 14px; color: var(--text-muted); line-height: 1.7;
    }
    .faq-item.open .faq-a { max-height: 400px; }
    .faq-a-inner { padding: 0 0 1.25rem 0; }

    /* CONTACT */
    .contact-section { background: var(--dark); }
    .contact-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; max-width: 860px; margin: 0 auto;
    }
    .contact-info h3 { font-size: 22px; font-weight: 600; margin-bottom: 1rem; }
    .contact-info p.lead { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.75rem; }
    .contact-detail {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 0.85rem; font-size: 14px;
      color: rgba(255,255,255,0.85);
    }
    .contact-detail a { text-decoration: none; transition: color 0.2s; }
    .contact-detail a:hover { color: var(--gold); }
    .contact-detail-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
    .direct-contact {
      margin-top: 1.5rem; padding: 1.25rem;
      background: var(--dark2); border-left: 3px solid var(--gold);
      border-radius: 6px; font-size: 13px; color: var(--text-muted);
    }

    .contact-form { display: flex; flex-direction: column; gap: 14px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-field { display: flex; flex-direction: column; gap: 6px; }
    .form-field label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }
    .form-field input,
    .form-field select,
    .form-field textarea {
      background: var(--dark2);
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 7px; padding: 10px 14px;
      color: #fff; font-size: 14px; font-family: inherit;
      outline: none; transition: border-color 0.2s; width: 100%;
    }
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus { border-color: var(--gold); }
    .form-field select option { background: var(--dark); }
    .form-field textarea { resize: vertical; min-height: 90px; }
    .form-hint { font-size: 11px; color: var(--text-subtle); margin-top: 8px; }

    .submit-btn {
      background: var(--gold); color: #1e2226;
      font-size: 15px; font-weight: 600; padding: 13px;
      border-radius: 7px; border: none; cursor: pointer;
      transition: opacity 0.2s; margin-top: 4px; width: 100%;
    }
    .submit-btn:hover { opacity: 0.88; }

    /* FOOTER */
    footer {
      background: var(--dark4); border-top: 1px solid var(--divider);
      padding: 3rem 2rem 2rem;
    }
    .footer-inner {
      max-width: 960px; margin: 0 auto;
      display: grid; grid-template-columns: 1.2fr 1fr 1fr;
      gap: 2.5rem; margin-bottom: 2rem;
    }
    .footer-col h5 {
      font-size: 11px; letter-spacing: 0.14em;
      color: var(--gold); text-transform: uppercase; margin-bottom: 1rem;
    }
    .footer-col p, .footer-col a {
      font-size: 13px; color: rgba(255,255,255,0.55);
      line-height: 1.9; text-decoration: none; display: block;
    }
    .footer-col a:hover { color: #fff; }
    .footer-logo {
      display: flex; align-items: center; gap: 10px; margin-bottom: 1rem;
    }
    .footer-bottom {
      max-width: 960px; margin: 0 auto;
      padding-top: 1.5rem; border-top: 1px solid var(--divider);
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); }
    .footer-legal { font-size: 11px; color: rgba(255,255,255,0.3); }
    .footer-legal a { color: inherit; text-decoration: none; margin-left: 12px; }
    .footer-legal a:hover { color: rgba(255,255,255,0.6); }

    /* PRIVACY modal: simple inline section toggle */
    .legal-section {
      display: none; background: var(--dark2);
      padding: 4rem 2rem;
    }
    .legal-section:target { display: block; }
    .legal-section .section-inner { max-width: 760px; }
    .legal-section h2 { font-size: 24px; margin-bottom: 1rem; }
    .legal-section h3 { font-size: 15px; margin: 1.5rem 0 0.5rem; color: var(--gold); }
    .legal-section p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.75rem; }
    .legal-section ul, .legal-section ol { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin: 0 0 0.75rem 1.25rem; }
    .legal-section li { margin-bottom: 0.35rem; }
    .legal-close {
      display: inline-block; margin-top: 1.5rem; color: var(--gold);
      text-decoration: none; font-size: 13px;
    }

    /* RESPONSIVE */
    .split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.75rem; }
    @media (max-width: 768px) {
      nav { padding: 0 1.25rem; }
      .nav-links { display: none; }
      .hero h1 { font-size: 30px; }
      .hero-sub { font-size: 15px; }
      .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .form-row { grid-template-columns: 1fr; }
      .hero-stats { gap: 1.75rem; }
      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { justify-content: center; text-align: center; }
      .split-grid { grid-template-columns: 1fr; }
    }
    :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
    .hero-ctas .btn-gold { padding: 15px 38px; font-size: 16px; }
