/* Base Reset & Typography */
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--midnight-navy);
    padding-bottom: 90px;
    -webkit-font-smoothing: antialiased;
  }

  /* --- Header Styling --- */
/* Mobiel Dropdown Menu */
/* --- Instructie Pagina Specifieke Styling --- */
  .container {
    max-width: 480px;
    margin: 0 auto;
    background: var(--stark-white);
    min-height: 100vh;
    padding: 40px 24px;
    box-sizing: border-box;
    box-shadow: 0 0 40px rgba(9, 7, 26, 0.08);
  }

  .text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--midnight-navy);
  }

  h1 { font-size: 28px; margin-top: 0; margin-bottom: 16px; line-height: 1.25; letter-spacing: -0.5px; text-transform: uppercase; font-weight: 800; }
  h2 { font-size: 22px; margin-top: 64px; margin-bottom: 32px; letter-spacing: 0px; font-weight: 800; text-transform: uppercase; }
  h3 { font-size: 16px; margin-top: 0; margin-bottom: 8px; font-weight: 700; }
  
  p { font-size: 15px; color: #4a4a52; line-height: 1.6; margin-bottom: 24px; }
  
  .intro-text { font-size: 16px; color: #4a4a52; margin-bottom: 40px; line-height: 1.7; font-weight: 500; }

  /* --- Speech Bubble Info Box (Aangepast) --- */
  .info-box {
    background: var(--tech-purple);
    border: none;
    border-radius: 40px; 
    padding: 48px 32px;
    margin-bottom: 72px; /* Ruimte voor de speech bubble staart */
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(128, 17, 180, 0.2);
  }
  
  .info-box::before {
    content: '“';
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    color: var(--stark-white);
    line-height: 0.5;
    margin-top: 16px;
    margin-bottom: 24px;
    display: block;
  }
  
  .info-box::after {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 55%;
    border-width: 40px 40px 0 0;
    border-style: solid;
    border-color: var(--tech-purple) transparent transparent transparent;
  }

  .info-box h3 {
    color: var(--stark-white);
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .info-box p {
    color: var(--stark-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.6;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 0.5px;
  }

  .info-box p strong {
    color: var(--accent-green);
  }

  /* --- Timeline Stappenplan --- */
  .timeline {
    position: relative;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .timeline-step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
  }

  .timeline-step:last-child { margin-bottom: 0; }

  /* De verticale lijn */
  .timeline-step::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -40px;
    width: 2px;
    background: var(--border-color);
    z-index: 1;
  }
  .timeline-step:last-child::before { display: none; }

  .timeline-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: var(--stark-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(128, 17, 180, 0.3);
  }

  .timeline-content {
    background: var(--stark-white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    flex-grow: 1;
    box-shadow: 0 4px 20px rgba(9, 7, 26, 0.03);
  }

  /* Afbeeldingen in de timeline inclusief zoom-in interactie */
  .timeline-content img {
    width: 100%;
    border-radius: 8px;
    margin-top: 16px;
    border: 1px solid var(--border-color);
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .timeline-content img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(9, 7, 26, 0.1);
  }

  /* --- Nieuwe opmaak voor de iconen in Step 1 --- */
  .step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
  }

  .highlight-tag {
    display: inline-block;
    background: rgba(158, 220, 42, 0.2);
    color: #4a6a12;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
  }

  .device-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--midnight-navy);
  }

  /* --- Grid voor Platform Features --- */
  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }

  .feature-card {
    background: var(--stark-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(9, 7, 26, 0.05);
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-teal);
    flex-shrink: 0;
  }

  /* Knoppen & Footer */
  .btn-primary { width: 100%; box-sizing: border-box; }

/* WhatsApp Floating Widget */
@media (min-width: 768px) {
    body { padding-bottom: 0; }
h1 { font-size: 40px; margin-bottom: 24px; text-align: center; }
    .intro-text { font-size: 18px; text-align: center; max-width: 760px; margin: 0 auto 56px auto; }
    h2 { font-size: 28px; margin-top: 80px; }
    
    .info-box { max-width: 760px; margin: 0 auto 72px auto; padding: 64px 80px; border-radius: 60px; }
    .info-box::after { left: 50%; }
    .info-box p { font-size: 16px; }
    .info-box h3 { font-size: 24px; }

    .timeline { max-width: 800px; margin: 0 auto; }
    .timeline-step { gap: 32px; }
    .timeline-number { width: 56px; height: 56px; font-size: 20px; }
    .timeline-step::before { left: 28px; top: 56px; }
    .timeline-content { padding: 32px; }

    .feature-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

    .cta-container { max-width: 400px; margin: 0 auto; }

}

  /* --- Image Zoom Modal (Lightbox) Styling --- */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(9, 7, 26, 0.85);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
  }

  .modal-content {
    margin: auto;
    display: block;
    max-width: 95%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    object-fit: contain;
  }

  .modal.show .modal-content {
    transform: scale(1);
  }

  .close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--stark-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 1001;
  }

  .close-modal:hover,
  .close-modal:focus {
    color: var(--accent-green);
    text-decoration: none;
    cursor: pointer;
  }

  body.modal-open {
    overflow: hidden;
  }
