/* =========================================
   1. BASE & APP LAYOUT (Dark Mode Desktop)
   ========================================= */
   .pijncheck-page .site-header { display: none !important; }
   .pijncheck-page .footer-wave-container, .pijncheck-page .footer { display: none !important; }
   .pijncheck-page { background-color: var(--primary); background-image: radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.1), transparent 25%), radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.05), transparent 25%); min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; overflow-x: hidden; font-family: var(--font-body); }
   .pc-master-wrapper { width: 100%; max-width: 600px; margin: 0 auto; background: var(--white); min-height: 100vh; min-height: 100dvh; position: relative; box-shadow: 0 0 50px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
   
   /* =========================================
      2. VIEWS & ANIMATIES
      ========================================= */
   .pc-view { display: none; width: 100%; flex-grow: 1; flex-direction: column; padding: clamp(20px, 5vw, 40px) 25px; animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
   .pc-view.active { display: flex; }
   .pc-view.hidden { display: none !important; }
   @keyframes slideUpFade { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
   @keyframes scaleIn { 0% { transform: scale(0); } 80% { transform: scale(1.1); } 100% { transform: scale(1); } }
   
   /* =========================================
      3. SCHERM 1: INTRODUCTIE (CHAT VIBE)
      ========================================= */
   .pc-intro-content { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-grow: 1; height: 100%; padding-top: 10px; }
   .pc-chat-avatar { position: relative; width: 100px; height: 100px; border-radius: 50%; padding: 4px; background: linear-gradient(135deg, var(--accent), #e0f2fe); margin-bottom: 20px; box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2); }
   .pc-chat-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 3px solid var(--white); }
   .online-indicator { position: absolute; bottom: 5px; right: 5px; width: 18px; height: 18px; background-color: #10b981; border: 3px solid var(--white); border-radius: 50%; }
   .pc-badge { background: #e0f2fe; color: var(--accent); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; padding: 6px 14px; border-radius: 50px; margin-bottom: 15px; letter-spacing: 1px; }
   .pc-title { font-family: var(--font-head); font-size: clamp(2rem, 6vw, 2.6rem); color: var(--primary); line-height: 1.1; margin-bottom: 15px; letter-spacing: -1px; }
   .pc-subtitle { color: #64748b; font-size: 1.05rem; line-height: 1.6; margin-bottom: 35px; max-width: 450px; }
   .pc-start-btn { font-size: 1.1rem; padding: 20px 40px; border-radius: 50px; width: 100%; box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25); transition: transform 0.3s, box-shadow 0.3s; }
   .pc-start-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(59, 130, 246, 0.35); }
   .pc-trust-row { display: flex; justify-content: center; gap: 20px; margin-top: 30px; color: #94a3b8; font-size: 0.9rem; font-weight: 600; }
   .pc-trust-row i { color: #10b981; margin-right: 5px; }
   
   /* =========================================
      4. SCHERM 2: DE APP UI (Top Bar & Tekst)
      ========================================= */
   .pc-app-container { width: 100%; display: flex; flex-direction: column; flex-grow: 1; }
   .pc-top-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; gap: 20px; }
   .pc-icon-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid #e2e8f0; background: var(--white); color: var(--primary); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; flex-shrink: 0; font-size: 1.1rem; }
   .pc-icon-btn:hover { background: #f8fafc; border-color: #cbd5e1; color: var(--accent); }
   .pc-icon-btn.hidden { opacity: 0; pointer-events: none; }
   .pc-progress-wrapper { flex-grow: 1; height: 8px; background: #f1f5f9; border-radius: 10px; overflow: hidden; }
   .pc-progress-fill { height: 100%; background: var(--accent); border-radius: 10px; transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
   .pc-question-area { margin-bottom: 25px; text-align: left; }
   .pc-question { font-family: var(--font-head); font-size: clamp(1.6rem, 5vw, 2rem); color: var(--primary); margin-bottom: 8px; line-height: 1.2; letter-spacing: -0.5px; }
   .pc-question-sub { color: #64748b; font-size: 0.95rem; line-height: 1.5; margin: 0; }
   
   /* =========================================
      5. SCHERM 2: KNOPPEN & SLIDERS
      ========================================= */
   .pc-options-grid { display: flex; flex-wrap: wrap; gap: 12px; width: 100%; }
   
   /* Nieuwe Medische Kaart UI voor Tegels (Stacked Layout) */
   .check-tile-btn { width: calc(50% - 6px); aspect-ratio: 0.85; background: var(--white); border: 2px solid #e2e8f0; border-radius: 16px; display: flex; flex-direction: column; cursor: pointer; transition: all 0.3s ease; padding: 0; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
   .check-tile-btn:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(59, 130, 246, 0.1); }
   .tile-img-container { flex-grow: 1; width: 100%; background: #fbfdff; display: flex; align-items: center; justify-content: center; padding: 15px; box-sizing: border-box; }
   .tile-medical-img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; opacity: 0.9; transition: transform 0.4s ease; }
   .check-tile-btn:hover .tile-medical-img { transform: scale(1.1) rotate(-2deg); opacity: 1; }
   .tile-label-container { width: 100%; background: #fff; padding: 12px 15px; box-sizing: border-box; border-top: 1px solid #eef2f6; text-align: center; }
   .tile-medical-label { color: var(--primary); font-family: var(--font-head); font-weight: 700; font-size: 1rem; transition: color 0.3s; }
   .check-tile-btn:hover .tile-medical-label { color: var(--accent); }
   
   /* Chips styling */
   .check-chip-btn { width: 100%; background: var(--white); border: 2px solid #e2e8f0; border-radius: 12px; padding: 18px 20px; text-align: left; cursor: pointer; transition: all 0.2s ease; color: var(--primary); font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 5px rgba(0,0,0,0.01); }
   .check-chip-btn::after { content: '\f054'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: #cbd5e1; font-size: 0.9rem; transition: transform 0.2s, color 0.2s; }
   .check-chip-btn:hover { border-color: var(--accent); background: #f0f9ff; box-shadow: 0 5px 15px rgba(59, 130, 246, 0.08); }
   .check-chip-btn:hover::after { color: var(--accent); transform: translateX(5px); }
   
   /* Sliders & PSK Inputs (Nu full-widthstacked layout) */
   .pc-psk-row { width: 100%; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; border-bottom: 1px solid #e2e8f0; padding-bottom: 20px; }
   .pc-psk-row-last { border-bottom: none; margin-bottom: 25px; padding-bottom: 0; }
   .psk-input { width: 100%; padding: 15px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 1rem; font-family: var(--font-body); outline: none; transition: border-color 0.2s; background: #f8fafc; box-sizing: border-box; }
   .psk-input:focus { border-color: var(--accent); background: #fff; }
   .pc-slider-group { width: 100%; display: flex; flex-direction: column; gap: 8px; margin-top: 5px; }
   .pc-slider { -webkit-appearance: none; width: 100%; height: 8px; border-radius: 4px; background: #e2e8f0; outline: none; margin: 5px 0 10px 0; }
   .pc-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 28px; height: 28px; border-radius: 50%; background: var(--accent); cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,0.2); transition: transform 0.1s; }
   .pc-slider::-webkit-slider-thumb:active { transform: scale(1.2); }
   .slider-labels { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; font-weight: 700; color: #64748b; }
   .psk-val-badge { font-family: var(--font-head); font-size: 1.2rem; color: var(--accent); font-weight: 800; background: #f0f9ff; padding: 2px 8px; border-radius: 6px; }
   .slider-value-display { font-family: var(--font-head); font-size: 2.5rem; color: var(--primary); text-align: center; margin-bottom: 5px; font-weight: 800; }
   .pc-next-btn { background: var(--accent); color: white; width: 100%; padding: 18px; border-radius: 10px; border: none; font-size: 1.1rem; font-weight: 700; cursor: pointer; text-transform: uppercase; box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2); }
   .pc-next-btn:hover { background: var(--accent-hover); transform: translateY(-2px); }
   .psk-input.error-shake { animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both; border-color: #ef4444; background: #fef2f2; }
   @keyframes shake { 10%, 90% { transform: translate3d(-1px, 0, 0); } 20%, 80% { transform: translate3d(2px, 0, 0); } 30%, 50%, 70% { transform: translate3d(-4px, 0, 0); } 40%, 60% { transform: translate3d(4px, 0, 0); } }
   
   /* =========================================
      6. SCHERM 3: RESULTAAT & LEAD FORM
      ========================================= */
   .pc-result-container { text-align: center; justify-content: center; }
   .pc-result-header { margin-bottom: 25px; }
   .pc-success-icon { width: 60px; height: 60px; background: #dcfce7; color: #166534; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 15px auto; animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
   .pc-lead-form { background: var(--white); border: 1px solid #e2e8f0; border-radius: 20px; padding: clamp(20px, 4vw, 30px); box-shadow: 0 15px 35px rgba(0,0,0,0.04); text-align: left; width: 100%; }
   .pc-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
   .pc-input { width: 100%; padding: 16px 18px; border: 1px solid #cbd5e1; border-radius: 10px; font-family: var(--font-body); font-size: 1rem; color: var(--dark); background: #f8fafc; transition: all 0.3s; margin-bottom: 15px; box-sizing: border-box; }
   .pc-input:focus { outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1); }
   .pc-submit-btn { padding: 18px; font-size: 1.1rem; border-radius: 10px; border: none; cursor: pointer; font-weight: 700; text-transform: uppercase; margin-top: 5px; }
   .pc-privacy-text { text-align: center; font-size: 0.8rem; color: #94a3b8; margin-top: 15px; margin-bottom: 0; }
   
   /* =========================================
      7. MEDIA QUERIES
      ========================================= */
   @media (max-width: 380px) { .pc-title { font-size: 1.8rem; } .pc-start-btn { padding: 15px 20px; font-size: 1rem; } .tile-medical-label { font-size: 0.9rem; } .check-chip-btn { padding: 15px 18px; font-size: 0.95rem; } .psk-input { padding: 12px; font-size: 0.95rem; } .psk-val-badge { font-size: 1rem; } }
   @media (max-width: 600px) { .pc-form-grid { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; } .pc-trust-row { flex-direction: column; gap: 10px; align-items: center; } }
   @media (max-height: 650px) { .pc-master-wrapper { min-height: auto; height: auto; } .pc-view { padding-top: 20px; padding-bottom: 20px; justify-content: flex-start; } .pc-intro-content { min-height: auto; padding-top: 20px; } }
   @media (min-width: 768px) { .pijncheck-page { padding: 60px 20px; } .pc-master-wrapper { border-radius: 24px; min-height: 750px; height: 85vh; max-height: 900px; box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1); overflow-y: auto; } .pc-master-wrapper::-webkit-scrollbar { width: 8px; } .pc-master-wrapper::-webkit-scrollbar-track { background: transparent; } .pc-master-wrapper::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; } .pc-master-wrapper::-webkit-scrollbar-thumb:hover { background: #94a3b8; } }