    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { font-size: 18px; }
    body { font-family: system-ui, -apple-system, sans-serif; background: #fff; color: #111; }

    /* ===== Nav ===== */
    nav {
      background: #fff;
      padding: 0 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 68px;
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid #e5e7eb;
      box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }

    nav .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

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

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

    nav ul li a {
      color: #4b5563;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: color 0.2s;
    }

    nav ul li a:hover { color: #BE0000; }

    nav ul li a.cta-nav {
      background: #BE0000;
      color: #fff;
      padding: 0.5rem 1.25rem;
      border-radius: 3px;
      font-weight: 700;
    }

    /* ===== Hero ===== */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 520px;
      background: #fff;
    }

    .hero-left {
      padding: 4rem 3rem 4rem 3.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-left .tagline {
      color: #BE0000;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .hero-left h1 {
      font-size: 2.6rem;
      font-weight: 900;
      line-height: 1.15;
      color: #111;
      margin-bottom: 1.25rem;
    }

    .hero-left h1 span { color: #BE0000; }

    .hero-left p {
      color: #6b7280;
      line-height: 1.7;
      font-size: 1rem;
      margin-bottom: 2rem;
      max-width: 420px;
    }

    .hero-left .btn-group {
      display: flex;
      gap: 1rem;
    }

    .hero-left .btn-primary {
      background: #BE0000;
      color: #fff;
      padding: 1.15rem 3rem;
      border-radius: 3px;
      font-weight: 700;
      text-decoration: none;
      font-size: 1.2rem;
      letter-spacing: 0.5px;
      box-shadow: 0 6px 20px rgba(190,0,0,0.4);
    }

    .hero-left .btn-secondary {
      background: transparent;
      color: #111;
      padding: 0.85rem 1.9rem;
      border-radius: 3px;
      font-weight: 600;
      text-decoration: none;
      font-size: 1rem;
      border: 1.5px solid #d1d5db;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .hero-right {
      position: relative;
      overflow: hidden;
      background: #fff;
    }

    .hero-right img.hero-photo {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: left center;
      display: block;
    }

    .hero-right svg.skyline-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
    }

    .hero-right::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 4px;
      height: 100%;
      background: #BE0000;
    }

    /* ===== USP Bar ===== */
    .usp-bar {
      background: #BE0000;
      padding: 1rem 2.5rem;
      display: flex;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .usp-bar .usp {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .usp-bar .usp .check {
      background: rgba(255,255,255,0.25);
      border-radius: 50%;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
    }

    /* ===== Over ons ===== */
    .over-ons-wrapper { background: #f9fafb; }

    .over-ons {
      padding: 5rem 3.5rem;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
      align-items: stretch;
      max-width: 1200px;
      margin: 0 auto;
    }

    .over-ons .left h2 {
      font-size: 1.9rem;
      font-weight: 800;
      line-height: 1.2;
      color: #111;
      margin-bottom: 0.4rem;
    }

    .over-ons .left h2 span { color: #BE0000; }

    .over-ons .left .divider {
      width: 48px;
      height: 4px;
      background: #BE0000;
      border-radius: 2px;
      margin: 1rem 0 1.5rem;
    }

    .over-ons .left p {
      color: #4b5563;
      line-height: 1.8;
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }

    .over-ons .right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      align-content: stretch;
    }

    .over-ons .right .feature-card {
      display: flex;
      flex-direction: column;
    }

    .feature-card {
      background: #f3f4f6;
      border-radius: 8px;
      padding: 2rem 1.75rem;
      border-top: 3px solid #BE0000;
      box-shadow: 0 1px 4px rgba(0,0,0,0.07);
      height: 100%;
    }

    .feature-card .icon { font-size: 2.2rem; margin-bottom: 0.9rem; }
    .feature-card h4 { font-size: 1.05rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
    .feature-card p { color: #6b7280; font-size: 0.9rem; line-height: 1.6; }

    /* ===== Prijzen ===== */
    .prijzen {
      background: #fff;
      padding: 5rem 2.5rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .section-header .label {
      color: #BE0000;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .section-header h2 {
      font-size: 1.9rem;
      font-weight: 800;
      color: #111;
    }

    .section-header h2 span { color: #BE0000; }

    .tabs {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 2rem;
    }

    .tabs button {
      padding: 0.55rem 1.4rem;
      border: 1.5px solid #d1d5db;
      background: transparent;
      color: #6b7280;
      border-radius: 3px;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.85rem;
      transition: all 0.2s;
    }

    .tabs button.active,
    .tabs button:hover {
      background: #BE0000;
      border-color: #BE0000;
      color: #fff;
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1rem;
      max-width: 960px;
      margin: 0 auto;
    }

    .price-card {
      background: #f3f4f6;
      border: 1px solid #e5e7eb;
      border-left: 4px solid #BE0000;
      border-radius: 4px;
      padding: 1.1rem 1.25rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
      transition: box-shadow 0.2s;
    }

    .price-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

    .price-card .name {
      font-weight: 600;
      color: #111;
      font-size: 0.95rem;
    }

    .price-card .desc {
      color: #9ca3af;
      font-size: 0.78rem;
      margin-top: 0.3rem;
      line-height: 1.4;
    }

    .price-card .price {
      color: #BE0000;
      font-weight: 800;
      font-size: 1.05rem;
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* ===== Pakket kaarten ===== */
    .pakket-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      max-width: 1060px;
      margin: 0 auto;
      align-items: stretch;
    }

    .pakket-card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      transition: box-shadow 0.2s, transform 0.2s;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .pakket-card:hover {
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      transform: translateY(-2px);
    }

    .pakket-card.featured {
      border-color: #111;
      box-shadow: 0 8px 28px rgba(0,0,0,0.15);
      transform: scale(1.03);
    }

    .pakket-card .card-header {
      padding: 1.5rem 1.5rem 1.25rem;
      background: #f9fafb;
      border-bottom: 1px solid #e5e7eb;
    }

    .pakket-card.featured .card-header {
      background: #111;
    }

    .pakket-card .card-price {
      display: flex;
      align-items: baseline;
      gap: 0.15rem;
      margin-bottom: 0.25rem;
    }

    .pakket-card .card-price .euro {
      font-size: 1.2rem;
      font-weight: 700;
      color: #BE0000;
    }

    .pakket-card .card-price .amount {
      font-size: 2.8rem;
      font-weight: 900;
      color: #BE0000;
      line-height: 1;
    }

    .pakket-card.featured .card-price .euro,
    .pakket-card.featured .card-price .amount { color: #fff; }

    .pakket-card .card-price .label {
      font-size: 0.7rem;
      font-weight: 600;
      color: #9ca3af;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-left: 0.4rem;
      align-self: flex-end;
      margin-bottom: 0.4rem;
    }

    .pakket-card.featured .card-price .label { color: #6b7280; }

    .pakket-card .card-body {
      padding: 1.25rem 1.5rem 1.5rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .pakket-card .feature-list {
      flex: 1;
    }

    .pakket-card .card-name {
      font-size: 1.05rem;
      font-weight: 800;
      color: #111;
      margin-bottom: 0.4rem;
    }

    .pakket-card .card-desc {
      font-size: 0.82rem;
      color: #6b7280;
      line-height: 1.5;
      margin-bottom: 1.25rem;
    }

    .pakket-card .feature-list {
      list-style: none;
      border-top: 1px solid #f3f4f6;
      padding-top: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-bottom: 1.5rem;
    }

    .pakket-card .feature-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      color: #374151;
    }

    .pakket-card .feature-list li .feat-label { font-weight: 500; }
    .pakket-card .feature-list li .feat-val { font-weight: 700; color: #111; }
    .pakket-card .feature-list li .feat-check { color: #16a34a; font-size: 1.1rem; }
    .pakket-card .feature-list li .feat-none { color: #d1d5db; font-size: 1.1rem; }

    .pakket-card .boek-btn {
      display: block;
      width: 100%;
      padding: 0.8rem;
      background: #111;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 1px;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      transition: background 0.2s;
    }

    .pakket-card .boek-btn:hover { background: #BE0000; }

    .pakket-card.featured .boek-btn {
      background: #111;
      color: #fff;
    }

    .pakket-card.featured .boek-btn:hover {
      background: #BE0000;
      color: #fff;
    }

    /* Lint */
    .pakket-card { overflow: hidden; }

    .pakket-card .ribbon {
      position: absolute;
      top: 18px;
      right: -22px;
      width: 90px;
      background: #BE0000;
      color: #fff;
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 0.25rem 0;
      text-align: center;
      transform: rotate(45deg);
    }

    .pakket-card .ribbon.green { background: #16a34a; }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }

    .fomo-bar {
      background: #fff3f3;
      border-bottom: 1px solid #fecaca;
      padding: 0.5rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      font-weight: 700;
      color: #BE0000;
    }

    .fomo-bar .pulse {
      width: 8px;
      height: 8px;
      background: #BE0000;
      border-radius: 50%;
      flex-shrink: 0;
      animation: pulse-dot 1.4s ease-in-out infinite;
    }

    /* ===== Formulier ===== */
    .formulier {
      background: #f3f4f6;
      padding: 5rem 2.5rem;
    }

    .formulier-wrap {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 4rem;
      align-items: start;
    }

    .formulier-left .form-tagline {
      color: #BE0000;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }

    .formulier-left h2 {
      font-size: 2.4rem;
      font-weight: 900;
      line-height: 1.15;
      color: #111;
      margin-bottom: 1rem;
    }

    .formulier-left h2 span { color: #BE0000; }

    .formulier-left .form-intro {
      color: #6b7280;
      line-height: 1.7;
      font-size: 0.95rem;
      margin-bottom: 2rem;
    }

    .form-usp-list {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .form-usp-item {
      background: #fff;
      border-radius: 8px;
      padding: 1rem 1.25rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }

    .form-usp-item .usp-icon {
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .form-usp-item h4 {
      font-size: 0.9rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 0.15rem;
    }

    .form-usp-item p {
      font-size: 0.78rem;
      color: #9ca3af;
    }

    /* Form card rechts */
    .formulier-card {
      background: #fff;
      border-radius: 12px;
      padding: 2.5rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .formulier-card h3 {
      font-size: 1.4rem;
      font-weight: 800;
      color: #111;
      margin-bottom: 2rem;
    }

    .form-step-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #9ca3af;
      margin-bottom: 0.75rem;
    }

    .pakket-select-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.6rem;
      margin-bottom: 2rem;
    }

    .pakket-select-card {
      border: 1.5px solid #e5e7eb;
      border-radius: 6px;
      padding: 0.75rem 1rem;
      cursor: pointer;
      transition: all 0.15s;
      background: #fff;
    }

    .pakket-select-card:hover { border-color: #BE0000; }

    .pakket-select-card.selected {
      border-color: #BE0000;
      background: #fff5f5;
    }

    .pakket-select-card .psc-name {
      font-size: 0.82rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 0.2rem;
    }

    .pakket-select-card .psc-price {
      font-size: 1rem;
      font-weight: 900;
      color: #BE0000;
    }

    .pakket-select-card .psc-sub {
      font-size: 0.7rem;
      color: #9ca3af;
      margin-top: 0.1rem;
    }

    .form-divider {
      border: none;
      border-top: 1px solid #f3f4f6;
      margin: 1.5rem 0;
    }

    .form-fields {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    .form-fields input {
      width: 100%;
      padding: 0.8rem 1rem;
      background: #f9fafb;
      border: 1.5px solid #e5e7eb;
      border-radius: 6px;
      color: #111;
      font-size: 0.9rem;
      transition: border-color 0.2s;
    }

    .form-fields input:focus {
      outline: none;
      border-color: #BE0000;
      background: #fff;
    }

    .form-fields input::placeholder { color: #9ca3af; }

    .form-submit {
      width: 100%;
      padding: 1rem;
      background: #BE0000;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      letter-spacing: 0.5px;
      transition: background 0.2s;
    }

    .form-submit:hover { background: #a00000; }

    /* ===== Contact ===== */
    .contact {
      background: #fff;
      padding: 5rem 2.5rem;
    }

    .contact-grid {
      max-width: 700px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .contact-card {
      background: #f9fafb;
      border: 1px solid #e5e7eb;
      border-top: 3px solid #BE0000;
      border-radius: 6px;
      padding: 2rem 1.5rem;
      text-align: center;
    }

    .contact-card .icon {
      font-size: 2rem;
      margin-bottom: 0.75rem;
    }

    .contact-card h4 {
      font-size: 0.8rem;
      font-weight: 700;
      color: #9ca3af;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .contact-card a,
    .contact-card span {
      color: #111;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
    }

    .contact-card a:hover { color: #BE0000; }

    /* ===== Footer ===== */
    footer {
      background: #111;
      padding: 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    footer .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    footer .footer-logo .icon {
      width: 36px;
      height: 36px;
      background: #BE0000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    footer .footer-logo .name {
      color: #fff;
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: 1px;
    }

    footer .footer-logo .sub {
      color: #6b7280;
      font-size: 0.65rem;
      letter-spacing: 1.5px;
    }

    footer .copy {
      color: #4b5563;
      font-size: 0.8rem;
    }

    /* ===== WhatsApp ===== */
    .whatsapp {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: #25d366;
      color: white;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
      text-decoration: none;
      z-index: 200;
    }

    /* ===== Hamburger menu ===== */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: #111;
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ===== Tablet (max 1024px) ===== */
    @media (max-width: 1024px) {
      .pakket-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .pakket-card.featured { transform: none; }

      .over-ons {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
      }

      .formulier-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .formulier-left { display: none; }
    }

    /* ===== Mobiel (max 768px) ===== */
    @media (max-width: 768px) {

      html { font-size: 16px; }

      /* Nav */
      .nav-toggle { display: flex; }

      nav ul {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        gap: 0;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        z-index: 99;
      }

      nav ul.open { display: flex; }

      nav ul li a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f3f4f6;
        font-size: 1rem;
      }

      nav ul li:last-child a { border-bottom: none; }

      nav ul li a.cta-nav {
        margin-top: 0.5rem;
        text-align: center;
      }

      /* Hero */
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-left {
        padding: 2.5rem 1.5rem;
        order: 1;
      }

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

      .hero-right {
        order: 2;
        height: 260px;
      }

      .hero-left .btn-group {
        flex-direction: column;
      }

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

      /* USP bar */
      .usp-bar {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 1.5rem;
        align-items: flex-start;
      }

      /* Over ons */
      .over-ons {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
      }

      .over-ons .right {
        grid-template-columns: 1fr;
      }

      /* Prijzen */
      .prijzen { padding: 3rem 1.25rem; }

      .tabs { flex-wrap: wrap; }

      .price-grid {
        grid-template-columns: 1fr;
      }

      .pakket-grid {
        grid-template-columns: 1fr;
      }

      .pakket-card.featured { transform: none; }

      .pakket-card[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
      }

      .pakket-card[style*="grid-column: span 2"] .card-body[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
      }

      /* Formulier */
      .formulier { padding: 3rem 1.25rem; }

      .formulier-wrap { grid-template-columns: 1fr; gap: 0; }

      .formulier-left { display: none; }

      .formulier-card { padding: 1.75rem 1.25rem; }

      .pakket-select-grid { grid-template-columns: 1fr 1fr; }

      .form-row { grid-template-columns: 1fr; }

      /* Contact */
      .contact { padding: 3rem 1.25rem; }

      .contact-grid { grid-template-columns: 1fr; }

      /* Sectie headers */
      .section-header h2 { font-size: 1.5rem; }

      /* Footer */
      footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
      }
    }
