/* crewportal.css – Gedeelde stijlen voor CrewPortal */

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

:root {
    --blue:           #2563EB;
    --blue-dark:      #1D4ED8;
    --blue-light:     #EFF6FF;
    --blue-border:    #BFDBFE;
    --green:          #16A34A;
    --green-light:    #F0FDF4;
    --green-border:   #BBF7D0;
    --orange:         #D97706;
    --orange-light:   #FFFBEB;
    --orange-border:  #FDE68A;
    --red:            #DC2626;
    --red-light:      #FEF2F2;
    --red-border:     #FECACA;
    --gray-50:        #F8FAFC;
    --gray-100:       #F1F5F9;
    --gray-200:       #E2E8F0;
    --gray-300:       #CBD5E1;
    --gray-400:       #94A3B8;
    --gray-500:       #64748B;
    --gray-600:       #475569;
    --gray-700:       #334155;
    --gray-800:       #1E293B;
    --gray-900:       #0F172A;
    --radius:         12px;
    --radius-lg:      16px;
    --shadow-sm:      0 1px 3px rgba(0,0,0,.07), 0 2px 8px rgba(0,0,0,.05);
    --shadow:         0 1px 4px rgba(0,0,0,.07), 0 4px 20px rgba(0,0,0,.06);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--gray-50);
    color: var(--gray-800);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

/* =====================
   TOPBAR
   ===================== */
.topbar {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: sticky;
    top: 0;
    z-index: 100;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-right: 16px;
}

.logo-icon {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}

.logo-text { font-size: 17px; font-weight: 700; color: var(--gray-900); }
.logo-text span { color: var(--blue); }

/* =====================
   NAV (portaal)
   ===================== */
.nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    transition: background .15s, color .15s;
    white-space: nowrap;
}

.nav-link:hover  { background: var(--gray-100); color: var(--gray-800); }
.nav-link.active { background: var(--gray-100); color: var(--gray-900); }
.nav-link svg    { width: 16px; height: 16px; flex-shrink: 0; }

.nav-divider {
    width: 1px; height: 24px;
    background: var(--gray-200);
    margin: 0 6px;
    flex-shrink: 0;
}

.nav-logout {
    display: flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 9px;
    text-decoration: none;
    color: var(--gray-400);
    transition: background .15s, color .15s;
    flex-shrink: 0;
}

.nav-logout:hover { background: var(--red-light); color: var(--red); }
.nav-logout svg   { width: 20px; height: 20px; }

/* =====================
   LAYOUT
   ===================== */
.page-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    width: 100%;
}

.main-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    width: 100%;
}

.page-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.page-header {
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.page-title { font-size: 26px; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; line-height: 1.2; }
.page-sub   { font-size: 14px; color: var(--gray-500); }

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: #fff;
    border-top: 1px solid var(--gray-200);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.footer-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-decoration: none;
    transition: color .15s;
}

.footer-link:hover { color: var(--blue); }

.footer-sep {
    width: 3px; height: 3px;
    background: var(--gray-300);
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}

.footer-powered-label {
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 500;
    white-space: nowrap;
}

.footer-powered img {
    height: 18px;
    width: auto;
    opacity: .75;
    transition: opacity .15s;
}

.footer-powered:hover img { opacity: 1; }

/* =====================
   KAARTEN
   ===================== */
.card    { background: #fff; border-radius: var(--radius);    box-shadow: var(--shadow); padding: 28px; }
.card-lg { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 40px; }

.card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

/* =====================
   FORMULIER ELEMENTEN
   ===================== */
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: var(--gray-800);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

input.error, select.error, textarea.error {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220,38,38,.10);
}

.field-error {
    font-size: 12px; color: var(--red); font-weight: 500;
    margin-top: 5px;
    display: flex; align-items: center; gap: 4px;
}

textarea { resize: vertical; min-height: 90px; line-height: 1.5; }

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

/* =====================
   KNOPPEN
   ===================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 22px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px; font-weight: 700;
    cursor: pointer; border: none;
    transition: background .15s, transform .15s, box-shadow .15s;
    text-decoration: none; white-space: nowrap; line-height: 1;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,.3); }

.btn-ghost { background: transparent; border: 2px solid var(--gray-200); color: var(--gray-600); }
.btn-ghost:hover { border-color: var(--gray-300); background: var(--gray-50); }

.btn-full { width: 100%; }

.btn-row     { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 12px; }
.btn-row-end { display: flex; justify-content: flex-end; margin-top: 32px; }

/* =====================
   ALERTS & BADGES
   ===================== */
.alert {
    padding: 12px 16px; border-radius: 10px;
    font-size: 13px; font-weight: 500;
    margin-bottom: 20px;
    display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}

.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

.alert-red    { background: var(--red-light);    color: var(--red);    border: 1px solid var(--red-border);    }
.alert-green  { background: var(--green-light);  color: var(--green);  border: 1px solid var(--green-border);  }
.alert-orange { background: var(--orange-light); color: var(--orange); border: 1px solid var(--orange-border); }
.alert-blue   { background: var(--blue-light);   color: var(--blue);   border: 1px solid var(--blue-border);   }

.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.badge-green  { background: var(--green-light); color: var(--green); }
.badge-green .badge-dot { background: var(--green); }
.badge-orange { background: #FEF3C7; color: #92400E; }
.badge-orange .badge-dot { background: #F59E0B; }

/* =====================
   EMPTY STATE
   ===================== */
.empty { text-align: center; padding: 56px 24px; }
.empty-icon { width: 56px; height: 56px; background: var(--gray-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.empty-icon svg { width: 26px; height: 26px; color: var(--gray-400); }
.empty-title { font-size: 16px; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; }
.empty-sub   { font-size: 14px; color: var(--gray-400); }

/* =====================
   STEPPER (aanmelden)
   ===================== */
.stepper-wrap { margin-bottom: 32px; }

.stepper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
}

/* Verbindingslijn tussen stappen */
.step-item::after {
    content: '';
    position: absolute;
    top: 17px;
    left: calc(50% + 18px);
    width: calc(100% - 36px);
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

/* Verberg lijn na laatste stap */
.step-item:last-child::after { display: none; }

.step-item.done::after  { background: var(--blue); }
.step-item.active::after { background: var(--gray-200); }

/* Stepper: breedte per item, zodat titels goed passen */
.step-item { width: 80px; }

.step-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    color: var(--gray-400);
    background: #fff;
    position: relative;
    z-index: 1;
    transition: all .2s;
    flex-shrink: 0;
    cursor: default;
}

.step-circle.done {
    background: var(--blue); border-color: var(--blue); color: #fff;
    cursor: pointer;
}

.step-circle.done:hover {
    background: var(--blue-dark);
    transform: scale(1.08);
}

.step-circle.active {
    background: var(--blue); border-color: var(--blue); color: #fff;
    box-shadow: 0 0 0 4px rgba(37,99,235,.15);
}

.step-title {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-400);
    margin-top: 6px;
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 72px;
}

.step-item.done  .step-title  { color: var(--blue); }
.step-item.active .step-title { color: var(--gray-700); font-weight: 700; }

/* Stap label (x van y) */
.step-label {
    display: none;
}

/* =====================
   CREW TYPE SELECTIE
   ===================== */
.crew-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }

.crew-option {
    border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 22px 20px;
    cursor: pointer; transition: border-color .15s, background .15s; position: relative; display: block;
}

.crew-option:hover   { border-color: var(--blue); background: var(--blue-light); }
.crew-option.selected{ border-color: var(--blue); background: var(--blue-light); }

.crew-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.crew-emoji { font-size: 28px; margin-bottom: 12px; display: block; line-height: 1; }
.crew-name  { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.crew-desc  { font-size: 13px; color: var(--gray-500); line-height: 1.4; }

/* =====================
   RADIO / CHECKBOX PILLS
   ===================== */
.radio-cards, .check-cards {
    display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 6px;
}

.radio-card, .check-card { position: relative; }

.radio-card input[type="radio"],
.check-card input[type="checkbox"] {
    position: absolute; opacity: 0; width: 0; height: 0;
}

.radio-card label,
.check-card label {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 16px; border-radius: 999px;
    border: 2px solid var(--gray-200);
    font-size: 13px; font-weight: 600; color: var(--gray-600);
    cursor: pointer;
    transition: border-color .15s, background .15s, color .15s;
    white-space: nowrap; margin-bottom: 0;
}

.radio-card input[type="radio"]:checked + label,
.check-card input[type="checkbox"]:checked + label {
    background: var(--blue); border-color: var(--blue); color: #fff;
}

.radio-card label:hover,
.check-card label:hover { border-color: var(--blue); color: var(--blue); }

.radio-card input[type="radio"]:checked + label:hover,
.check-card input[type="checkbox"]:checked + label:hover { color: #fff; }

/* =====================
   SKILL CHECKBOXES (blok)
   ===================== */
.skills-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px;
}

.skill-card { position: relative; }
.skill-card input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }

.skill-card label {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 14px 16px; border-radius: 10px;
    border: 2px solid var(--gray-200);
    font-size: 13px; font-weight: 500; color: var(--gray-600);
    cursor: pointer; transition: border-color .15s, background .15s, color .15s;
    line-height: 1.4; height: 100%; margin-bottom: 0;
}

.skill-card label::before {
    content: '';
    width: 18px; height: 18px;
    border-radius: 5px; border: 2px solid var(--gray-300);
    flex-shrink: 0; margin-top: 1px;
    transition: background .15s, border-color .15s;
}

.skill-card input[type="checkbox"]:checked + label {
    background: var(--blue-light); border-color: var(--blue);
    color: var(--blue-dark); font-weight: 600;
}

.skill-card input[type="checkbox"]:checked + label::before {
    background: var(--blue); border-color: var(--blue);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center; background-size: 12px;
}

.skill-card label:hover { border-color: var(--blue); }

/* =====================
   UPLOAD ZONES
   ===================== */
.upload-zone {
    border: 2px dashed var(--gray-300); border-radius: var(--radius);
    padding: 32px 24px; text-align: center; cursor: pointer;
    transition: border-color .15s, background .15s;
    margin-bottom: 16px; position: relative;
}

.upload-zone:hover { border-color: var(--blue); background: var(--blue-light); }

.upload-zone input[type="file"] {
    position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}

.upload-icon {
    width: 44px; height: 44px; background: var(--gray-100); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}

.upload-icon svg { width: 22px; height: 22px; color: var(--gray-400); }
.upload-title    { font-size: 14px; font-weight: 700; color: var(--gray-700); margin-bottom: 4px; }
.upload-sub      { font-size: 12px; color: var(--gray-400); }

/* =====================
   FUNCTIE RANKING
   ===================== */
.functie-ranking { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

.functie-rank-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    background: var(--blue-light); border: 2px solid var(--blue-border);
    border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--blue-dark);
    cursor: grab; user-select: none;
}

.functie-rank-item:active { cursor: grabbing; }

.rank-badge {
    width: 26px; height: 26px; background: var(--blue); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800; flex-shrink: 0;
}

.rank-handle { margin-left: auto; color: var(--blue); opacity: .5; }

.rank-top3 {
    font-size: 11px; color: var(--green); font-weight: 700;
    background: var(--green-light); padding: 2px 8px; border-radius: 999px;
}

.rank-remove {
    background: none; border: none; color: var(--blue); opacity: .5;
    cursor: pointer; padding: 2px; display: flex; align-items: center;
    font-size: 18px; line-height: 1; transition: opacity .15s;
}

.rank-remove:hover { opacity: 1; }

.functie-pool { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; min-height: 44px; padding: 4px 0; }

.pool-tag {
    padding: 9px 18px; border-radius: 999px; border: 2px solid var(--gray-200);
    font-size: 13px; font-weight: 600; color: var(--gray-600); cursor: pointer;
    transition: border-color .15s, background .15s, color .15s;
}

.pool-tag:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.pool-tag-none  { border-style: dashed; color: var(--gray-400); }
.pool-tag-none:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }

/* =====================
   REVIEW TABLE
   ===================== */
.review-table { width: 100%; margin-bottom: 28px; border-collapse: collapse; }
.review-table tr { border-bottom: 1px solid var(--gray-100); }
.review-table tr:last-child { border-bottom: none; }
.review-table td { padding: 13px 0; font-size: 14px; vertical-align: top; }
.review-table td:first-child { color: var(--blue); font-weight: 600; width: 130px; }

/* =====================
   CHECKBOX (akkoord)
   ===================== */
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; }

.checkbox-group input[type="checkbox"] {
    width: 20px; height: 20px; margin-top: 1px;
    cursor: pointer; flex-shrink: 0; accent-color: var(--blue);
}

.checkbox-group label { font-size: 14px; font-weight: 600; color: var(--gray-700); cursor: pointer; margin-bottom: 0; }
.checkbox-group small { display: block; font-size: 12px; font-weight: 400; color: var(--gray-500); margin-top: 3px; line-height: 1.5; }

/* =====================
   BESCHIKBAARHEID
   ===================== */
.beschik-grid { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }

.days-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }

.day-card {
    border: 1.5px solid var(--gray-200); border-radius: 12px;
    padding: 14px 12px; text-align: center; cursor: pointer;
    text-decoration: none; display: block;
    transition: border-color .15s, background .15s; position: relative; background: #fff;
}

.day-card:hover  { border-color: var(--blue); background: var(--blue-light); }
.day-card.active { border-color: var(--blue); border-width: 2px; background: #fff; }

.day-card.status-1 { background: var(--green-light);  border-color: var(--green-border);  }
.day-card.status-2 { background: var(--red-light);    border-color: var(--red-border);    }
.day-card.status-3 { background: var(--orange-light); border-color: var(--orange-border); }

.day-dot { position: absolute; top: 8px; right: 8px; width: 8px; height: 8px; border-radius: 50%; }

.day-name  { font-size: 11px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.day-num   { font-size: 24px; font-weight: 800; color: var(--gray-900); line-height: 1; margin-bottom: 2px; }
.day-month { font-size: 12px; color: var(--gray-500); font-weight: 500; }

.beschik-panel { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; position: sticky; top: 80px; }

.panel-empty {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 200px; text-align: center; color: var(--gray-400); gap: 12px; padding: 20px;
}

.panel-empty svg { width: 32px; height: 32px; }
.panel-empty p   { font-size: 14px; font-weight: 500; line-height: 1.5; }
.panel-date      { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.panel-sub       { font-size: 13px; color: var(--gray-400); margin-bottom: 20px; }

.status-btn {
    display: block; width: 100%; padding: 13px 16px; border-radius: 10px;
    border: 2px solid var(--gray-200); background: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700;
    color: var(--gray-700); cursor: pointer; text-align: left; margin-bottom: 10px;
    transition: border-color .15s, background .15s, color .15s;
}

.status-btn:hover         { border-color: var(--gray-300); background: var(--gray-50); }
.status-btn.active-green  { background: var(--green-light);  border-color: var(--green);  color: var(--green);  }
.status-btn.active-red    { background: var(--red-light);    border-color: var(--red);    color: var(--red);    }
.status-btn.active-orange { background: var(--orange-light); border-color: var(--orange); color: var(--orange); }

/* =====================
   PROFIEL
   ===================== */
.profiel-grid { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }

.avatar-wrap { display: flex; flex-direction: column; align-items: center; padding: 28px 20px; }

.avatar {
    width: 72px; height: 72px; background: var(--gray-100); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px; overflow: hidden; flex-shrink: 0;
}

.avatar svg { width: 36px; height: 36px; color: var(--gray-400); }
.avatar img { width: 72px; height: 72px; object-fit: cover; }

.avatar-name  { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; text-align: center; }
.avatar-email { font-size: 13px; color: var(--gray-500); margin-bottom: 14px; text-align: center; word-break: break-all; }

.meta-list { padding: 0 20px 20px; width: 100%; }

.meta-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 13px; gap: 8px; }
.meta-item:last-child { border-bottom: none; }
.meta-label { color: var(--gray-500); font-weight: 500; white-space: nowrap; }
.meta-value { color: var(--gray-800); font-weight: 600; text-align: right; }

.form-section-title {
    font-size: 15px; font-weight: 700; color: var(--gray-900);
    margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-100);
    display: flex; align-items: center; gap: 8px;
}

.form-section-title svg { width: 17px; height: 17px; flex-shrink: 0; }
.form-section-title.orange       { color: var(--orange); }
.form-section-title.orange svg   { color: var(--orange); }

/* =====================
   LOGIN / OTP
   ===================== */
.login-wrap { width: 100%; max-width: 420px; }

.login-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 44px 40px; }

.login-header { text-align: center; margin-bottom: 32px; }

.login-icon { width: 56px; height: 56px; background: var(--blue-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.login-icon svg { width: 26px; height: 26px; color: var(--blue); }

.login-title { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.login-sub   { font-size: 14px; color: var(--gray-500); line-height: 1.5; }

.otp-group { display: flex; gap: 10px; justify-content: center; margin-bottom: 24px; }

.otp-input {
    width: 52px !important; height: 60px;
    text-align: center; font-size: 24px; font-weight: 800; color: var(--gray-900);
    border: 2px solid var(--gray-200); border-radius: 12px;
    padding: 0 !important;
    transition: border-color .15s, box-shadow .15s;
    -webkit-appearance: none; appearance: none;
}

.otp-input:focus  { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.15); }
.otp-input.filled { border-color: var(--blue); background: var(--blue-light); }

.divider { display: flex; align-items: center; gap: 12px; margin: 24px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.divider span { font-size: 12px; color: var(--gray-400); font-weight: 600; white-space: nowrap; }

.link-btn { background: none; border: none; color: var(--blue); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; padding: 0; text-decoration: underline; }
.link-btn:hover { color: var(--blue-dark); }

/* =====================
   LANDING PAGE
   ===================== */
.hero-card {
    width: 100%; max-width: 480px;
    background: linear-gradient(160deg, #1E3A5F 0%, #0F172A 100%);
    border-radius: var(--radius-lg); padding: 56px 40px 48px;
    text-align: center; margin-bottom: 20px; position: relative; overflow: hidden;
}

.hero-card::before {
    content: ''; position: absolute; top: -60px; left: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(37,99,235,.3) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}

.hero-logo { width: 64px; height: 64px; background: #fff; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 4px 20px rgba(0,0,0,.3); position: relative; }
.hero-logo-inner { font-size: 20px; font-weight: 800; color: var(--blue); letter-spacing: -1px; }
.hero-title { font-size: 30px; font-weight: 800; color: #fff; line-height: 1.2; }
.hero-sub { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 20px; line-height: 1.7; max-width: 320px; margin-left: auto; margin-right: auto; }

.action-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: 100%; max-width: 480px; }

.action-card { background: #fff; border-radius: var(--radius); padding: 24px 20px; text-decoration: none; border: 1.5px solid var(--gray-200); transition: border-color .15s, transform .15s, box-shadow .15s; display: block; }
.action-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }
.action-icon { width: 40px; height: 40px; background: var(--gray-100); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.action-icon svg { width: 20px; height: 20px; color: var(--gray-500); }
.action-title { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.action-sub   { font-size: 13px; color: var(--gray-500); }

/* =====================
   MISC
   ===================== */
.section-label { font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 10px; display: block; }
.field-divider { border: none; border-top: 1px solid var(--gray-100); margin: 24px 0; }
.form-hint     { font-size: 12px; color: var(--gray-400); margin-top: 4px; margin-bottom: 16px; }

svg { display: block; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
    .beschik-grid { grid-template-columns: 1fr; }
    .profiel-grid { grid-template-columns: 1fr; }
    .days-grid    { grid-template-columns: repeat(3, 1fr); }
    .form-row     { grid-template-columns: 1fr; }
    .main         { padding: 24px 16px 40px; }
    .main-narrow  { padding: 24px 16px 40px; }
    .card-lg      { padding: 28px 20px; }
    .page-header  { flex-direction: column; align-items: flex-start; }
    .step-item    { width: 56px; }
    .step-title   { font-size: 9px; max-width: 52px; }
}

@media (max-width: 560px) {
    .crew-options { grid-template-columns: 1fr; }
    .skills-grid  { grid-template-columns: 1fr; }
    .action-cards { grid-template-columns: 1fr; }
    .hero-card    { padding: 40px 24px; }
    .login-card   { padding: 36px 24px; }
    .otp-input    { width: 44px !important; height: 52px; font-size: 20px; }
    .step-item    { width: 40px; }
    .step-title   { display: none; }
}

@media (max-width: 480px) {
    .days-grid    { grid-template-columns: repeat(2, 1fr); }
    .nav-link span{ display: none; }
}
