/* css/style.css */
:root {
    --navy: #1B2D45;
    --teal: #2A7F7F;
    --teal-light: #3AA8A8;
    --gold: #C8952A;
    --cream: #F7F5F0;
    --white: #ffffff;
    --muted: #6B7280;
    --light: #E5E7EB;
    --danger: #DC2626;
    --success: #16A34A;
}

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

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--cream);
    color: #2C2C2C;
    font-size: 15px;
    line-height: 1.6;
}

/* NAV */
nav {
    background: var(--navy);
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-logo {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 0.5rem; align-items: center; }
.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.nav-links .btn-nav {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 600;
}
.nav-links .btn-nav:hover { background: #E8B84B; }

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #243652 60%, #1a3a4a 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="30" fill="rgba(42,127,127,0.1)"/><circle cx="20" cy="80" r="20" fill="rgba(200,149,42,0.08)"/></svg>');
}
.hero-content { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge {
    display: inline-block;
    background: rgba(42,127,127,0.2);
    color: var(--teal-light);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(42,127,127,0.3);
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hero h1 span { color: var(--gold); }
.hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: #236B6B; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #B8851A; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-block { display: block; width: 100%; text-align: center; }

/* STATS */
.stats-bar {
    background: var(--white);
    border-bottom: 3px solid var(--gold);
    padding: 1.5rem 2rem;
}
.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}
.stat-item { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--teal); }
.stat-lbl { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* SECTIONS */
.section { padding: 4rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 2rem; color: var(--navy); margin-bottom: 0.5rem; }
.section-title p { color: var(--muted); font-size: 1rem; }
.section-title .underline {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0.8rem auto;
}

/* CARDS */
.card {
    background: var(--white);
    border-radius: 8px;
    padding: 1.8rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--light);
    transition: all 0.2s;
}
.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }

/* HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step { text-align: center; padding: 2rem 1.5rem; background: var(--white); border-radius: 8px; border-top: 4px solid var(--teal); }
.step-num { width: 50px; height: 50px; background: var(--teal); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; margin: 0 auto 1rem; }
.step h3 { color: var(--navy); margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.price-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--light);
    transition: all 0.2s;
}
.price-card.featured {
    border-color: var(--teal);
    position: relative;
}
.price-card.featured::before {
    content: 'Populair';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.price-card h3 { color: var(--navy); margin-bottom: 1rem; }
.price-amount { font-size: 2.5rem; font-weight: 800; color: var(--teal); }
.price-amount sup { font-size: 1.2rem; }
.price-period { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
.price-features { list-style: none; margin-bottom: 1.5rem; }
.price-features li { padding: 0.4rem 0; color: #444; font-size: 0.9rem; }
.price-features li::before { content: '✓ '; color: var(--teal); font-weight: 700; }

/* PROFILE CARDS */
.profile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.profile-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--light);
    transition: all 0.2s;
}
.profile-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); transform: translateY(-3px); }
.profile-card-header { background: var(--navy); padding: 1.5rem; text-align: center; }
.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin-bottom: 0.8rem;
}
.profile-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid var(--gold);
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}
.profile-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.2rem; }
.profile-card .badge {
    background: rgba(42,127,127,0.3);
    color: var(--teal-light);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
}
.profile-card-body { padding: 1.2rem; }
.profile-tag {
    display: inline-block;
    background: var(--cream);
    color: var(--navy);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    margin: 0.2rem;
    border: 1px solid var(--light);
}

/* FORMS */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--light);
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background: var(--white);
    font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(42,127,127,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 2rem auto;
}
.form-title { text-align: center; margin-bottom: 2rem; }
.form-title h2 { color: var(--navy); }
.form-title p { color: var(--muted); font-size: 0.9rem; }

/* ALERTS */
.alert { padding: 1rem 1.5rem; border-radius: 4px; margin-bottom: 1.5rem; font-size: 0.9rem; }
.alert-success { background: #DCFCE7; color: #166534; border-left: 4px solid var(--success); }
.alert-danger { background: #FEE2E2; color: #991B1B; border-left: 4px solid var(--danger); }
.alert-info { background: #DBEAFE; color: #1E40AF; border-left: 4px solid #3B82F6; }

/* DASHBOARD */
.dashboard-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; max-width: 1200px; margin: 2rem auto; padding: 0 1.5rem; }
.sidebar { background: var(--white); border-radius: 8px; padding: 1.5rem; height: fit-content; border: 1px solid var(--light); }
.sidebar-menu { list-style: none; }
.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1rem;
    color: #444;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.sidebar-menu li a:hover, .sidebar-menu li a.active {
    background: rgba(42,127,127,0.1);
    color: var(--teal);
}
.sidebar-avatar { text-align: center; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--light); }
.sidebar-avatar img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.sidebar-avatar h4 { color: var(--navy); margin-top: 0.5rem; font-size: 0.95rem; }
.sidebar-avatar span { color: var(--muted); font-size: 0.8rem; }

/* MESSAGES */
.message-list { border: 1px solid var(--light); border-radius: 8px; overflow: hidden; }
.message-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--light);
    cursor: pointer;
    transition: background 0.15s;
}
.message-item:hover { background: var(--cream); }
.message-item.unread { background: #EEF7F7; }
.message-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; flex-shrink: 0; }
.message-content h4 { color: var(--navy); font-size: 0.95rem; }
.message-content p { color: var(--muted); font-size: 0.85rem; }
.message-time { color: var(--muted); font-size: 0.75rem; margin-left: auto; white-space: nowrap; }

/* FOOTER */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { color: var(--white); margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; }
.footer-bottom span { color: var(--gold); }

/* SEARCH BAR */
.search-bar {
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: -2rem auto 0;
    max-width: 900px;
    position: relative;
    z-index: 10;
}
.search-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.search-row input, .search-row select {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--light);
    border-radius: 4px;
    font-size: 0.95rem;
    min-width: 150px;
}
.search-row input:focus, .search-row select:focus { outline: none; border-color: var(--teal); }

/* BADGE */
.badge-zzp { background: #FDF6E8; color: var(--gold); border: 1px solid #F0D090; padding: 0.2rem 0.7rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.badge-actief { background: #DCFCE7; color: #166534; border: 1px solid #86EFAC; padding: 0.2rem 0.7rem; border-radius: 20px; font-size: 0.75rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .dashboard-layout { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .hero-btns { flex-direction: column; align-items: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
