:root {
    --green: #4F46E5;
    --green-mid: #7C3AED;
    --green-light: #EEF2FF;
    --blue: #06B6D4;
    --blue-light: #ECFEFF;
    --amber: #F59E0B;
    --amber-light: #FFFBEB;
    --red: #EF4444;
    --red-light: #FEE2E2;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --text: #0F172A;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --shadow: 0 1px 3px rgba(79,70,229,0.08), 0 1px 2px rgba(79,70,229,0.05);
    --shadow-md: 0 4px 12px rgba(79,70,229,0.10);
    --shadow-lg: 0 10px 30px rgba(79,70,229,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: var(--green);
    text-decoration: none;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 800;
}

.nav-links { display: flex; align-items: center; gap: 8px; }

.nav-link {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.15s;
    text-decoration: none;
}

.nav-link:hover { background: var(--green-light); color: var(--green); text-decoration: none; }

.btn-nav-primary {
    padding: 8px 20px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white !important;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(79,70,229,0.35);
}

.btn-nav-primary:hover { opacity: 0.92; text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(79,70,229,0.45); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}

.btn-primary { background: var(--green); color: white; box-shadow: 0 2px 8px rgba(79,70,229,0.3); }
.btn-primary:hover { background: var(--green-mid); color: white; text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(79,70,229,0.4); }
.btn-secondary { background: var(--white); color: var(--green); border: 1.5px solid var(--green); }
.btn-secondary:hover { background: var(--green-light); text-decoration: none; transform: translateY(-1px); }
.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: #0891B2; color: white; text-decoration: none; }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius); }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-danger { background: var(--red-light); color: var(--red); }
.btn-danger:hover { background: var(--red); color: white; text-decoration: none; }

.hero {
    background: linear-gradient(135deg, #1E1B4B 0%, #4F46E5 55%, #7C3AED 100%);
    color: white;
    padding: 90px 24px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
}

.hero h1 {
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-sub { font-size: 18px; opacity: 0.88; max-width: 560px; margin: 0 auto 44px; line-height: 1.65; }

.search-box {
    background: white;
    border-radius: 20px;
    padding: 8px;
    display: flex;
    gap: 8px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.search-box input, .search-box select {
    flex: 1;
    border: none;
    outline: none;
    padding: 13px 16px;
    font-size: 15px;
    color: var(--text);
    border-radius: 12px;
    background: var(--bg);
    font-family: inherit;
    transition: background 0.15s;
}

.search-box input:focus, .search-box select:focus { background: #EEF2FF; }
.search-box select { flex: 0.8; }
.search-box .btn { flex-shrink: 0; padding: 13px 26px; border-radius: 12px; }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
    opacity: 0.92;
}

.hero-stat {
    padding: 0 36px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.hero-stat:last-child { border-right: none; }
.hero-stat span { display: block; font-size: 30px; font-weight: 800; letter-spacing: -0.5px; }
.hero-stat small { font-size: 13px; opacity: 0.75; margin-top: 2px; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 60px 0; }
.section-title { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.section-sub { color: var(--text-muted); margin-bottom: 36px; }

.pros-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

.pro-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 22px;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pro-card:hover { border-color: var(--green); box-shadow: 0 8px 30px rgba(79,70,229,0.12); transform: translateY(-3px); }

.pro-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }

.pro-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    flex-shrink: 0;
    overflow: hidden;
}

.pro-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.pro-card-name { font-weight: 700; font-size: 16px; }
.pro-card-ville { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.pro-card-distance { font-size: 12px; color: var(--green); font-weight: 600; background: var(--green-light); padding: 2px 8px; border-radius: 20px; }

.pro-card-presentation {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }

.badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; background: var(--green-light); color: var(--green); }
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-amber { background: var(--amber-light); color: #92400E; }
.badge-premium { background: var(--amber); color: white; font-size: 11px; padding: 2px 8px; border-radius: 20px; }

.pro-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.pro-card-tarif { font-size: 13px; font-weight: 600; color: var(--text); }

.resultats-layout { display: grid; grid-template-columns: 1fr 380px; gap: 24px; align-items: start; padding: 24px 0; }

@media (max-width: 900px) {
    .resultats-layout { grid-template-columns: 1fr; }
    .map-sticky { position: relative; top: 0; }
}

.map-sticky { position: sticky; top: 80px; }

#map { height: 550px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }

.resultats-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.resultats-count { font-weight: 700; font-size: 18px; }
.resultats-list { display: flex; flex-direction: column; gap: 14px; }

.pro-card-horizontal {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    gap: 16px;
    transition: all 0.2s;
}

.pro-card-horizontal:hover { border-color: var(--green-mid); box-shadow: var(--shadow-md); }
.pro-card-horizontal .pro-avatar { width: 64px; height: 64px; flex-shrink: 0; font-size: 26px; }
.pro-card-body { flex: 1; min-width: 0; }

.profil-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; padding: 32px 0; }
@media (max-width: 800px) { .profil-layout { grid-template-columns: 1fr; } }

.profil-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.profil-avatar-lg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    color: var(--green);
    overflow: hidden;
    margin: 0 auto 16px;
}

.profil-avatar-lg img { width: 100%; height: 100%; object-fit: cover; }

.profil-section-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.profil-section { margin-bottom: 28px; }

.profil-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.profil-info-row:last-child { border-bottom: none; }
.profil-info-label { color: var(--text-muted); min-width: 110px; font-size: 13px; }

.contact-card { background: linear-gradient(135deg, #1E1B4B, #4F46E5); color: white; border-radius: var(--radius-lg); padding: 24px; }
.contact-card h3 { font-size: 18px; margin-bottom: 16px; }

.contact-card input, .contact-card textarea {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.15);
    color: white;
}

.contact-card input::placeholder, .contact-card textarea::placeholder { color: rgba(255,255,255,0.6); }
.contact-card textarea { resize: vertical; min-height: 100px; }
.contact-card .btn { width: 100%; justify-content: center; background: white; color: var(--green); font-weight: 700; }

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 32px;
    box-shadow: var(--shadow-md);
    max-width: 520px;
    margin: 0 auto;
}

.form-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.form-card-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group label .req { color: var(--red); margin-left: 2px; }

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.15s;
    background: var(--white);
    color: var(--text);
}

.form-control:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(13, 110, 79, 0.1); }
.form-control-lg { padding: 12px 16px; font-size: 16px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-divider {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin: 16px 0;
    position: relative;
}

.form-divider::before, .form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: var(--border);
}

.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.15s;
    font-size: 13px;
}

.checkbox-item:hover { border-color: var(--green); background: var(--green-light); }
.checkbox-item input[type="checkbox"] { accent-color: var(--green); width: 16px; height: 16px; }
.checkbox-item.checked { border-color: var(--green); background: var(--green-light); color: var(--green); font-weight: 600; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
@media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card { padding: 32px 24px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all 0.2s; }
.step-card:hover { box-shadow: 0 8px 30px rgba(79,70,229,0.10); transform: translateY(-2px); border-color: var(--green-light); }
.step-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--green-light), #DDD6FE); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 18px; box-shadow: 0 4px 12px rgba(79,70,229,0.15); }
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.pro-cta {
    background: linear-gradient(135deg, #1E1B4B 0%, #4F46E5 60%, #7C3AED 100%);
    color: white;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.pro-cta::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pro-cta h2 { font-size: 24px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.3px; }
.pro-cta p { opacity: 0.85; font-size: 15px; line-height: 1.6; }

.btn-white { background: white; color: var(--green); font-weight: 700; padding: 14px 28px; border-radius: var(--radius); transition: all 0.2s; flex-shrink: 0; box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
.btn-white:hover { background: var(--green-light); text-decoration: none; color: var(--green); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

.dashboard-layout { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 64px); }

.sidebar {
    background: var(--white);
    border-right: 1px solid var(--border);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; padding: 8px 10px 4px; margin-top: 8px; }

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.15s;
    text-decoration: none;
}

.sidebar-link:hover { background: var(--green-light); color: var(--green); text-decoration: none; }
.sidebar-link.active { background: var(--green-light); color: var(--green); font-weight: 700; }
.sidebar-badge { margin-left: auto; background: var(--red); color: white; font-size: 11px; font-weight: 700; padding: 1px 7px; border-radius: 20px; }

.main-content { padding: 32px; background: var(--bg); }
.page-header { margin-bottom: 28px; }
.page-header h1 { font-size: 24px; font-weight: 700; }
.page-header p { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }

.stat-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; }
.stat-card-label { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.stat-card-value { font-size: 32px; font-weight: 800; color: var(--green); }
.stat-card-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: var(--green-light); color: #065F46; border: 1px solid #A7F3D0; }
.alert-error { background: var(--red-light); color: #991B1B; border: 1px solid #FECACA; }
.alert-warning { background: var(--amber-light); color: #92400E; border: 1px solid #FDE68A; }

.table-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
table { width: 100%; border-collapse: collapse; }
th { background: var(--bg); padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border); }
td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--bg); }

.chip { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.chip-green { background: var(--green-light); color: var(--green); }
.chip-amber { background: var(--amber-light); color: #92400E; }
.chip-red { background: var(--red-light); color: var(--red); }
.chip-blue { background: var(--blue-light); color: var(--blue); }

.message-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; margin-bottom: 12px; }
.message-card.unread { border-left: 3px solid var(--green); background: #FAFFFE; }
.message-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.message-sender { font-weight: 700; font-size: 15px; }
.message-date { font-size: 12px; color: var(--text-muted); }
.message-body { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.message-contact { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); display: flex; gap: 16px; font-size: 13px; }

.filters-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 14px 24px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.filters-bar input, .filters-bar select { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; color: var(--text); background: var(--white); transition: border-color 0.15s; }
.filters-bar input:focus, .filters-bar select:focus { outline: none; border-color: var(--green); }

.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 40px 24px; text-align: center; }
.footer-logo { font-size: 22px; font-weight: 800; color: white; margin-bottom: 12px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: 13px; }

.auth-page { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; padding: 32px 16px; background: linear-gradient(135deg, #EEF2FF 0%, #F8FAFC 100%); }

.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 8px; }

.pending-banner { background: var(--amber-light); border: 1px solid #FDE68A; border-radius: var(--radius); padding: 14px 18px; display: flex; align-items: center; gap: 12px; margin-bottom: 20px; font-size: 14px; color: #92400E; }

/* ─── Hamburger ────────────────────────────────────────────────────────────── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background 0.15s;
}
.nav-hamburger:hover { background: var(--green-light); }
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.25s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .resultats-layout { grid-template-columns: 1fr; }
    .map-sticky { position: relative; top: 0; }
    #map { height: 300px; }
    .profil-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Nav mobile */
    .nav { padding: 0 16px; }
    .nav-hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 12px 16px;
        gap: 4px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        z-index: 99;
    }
    .nav-links.open { display: flex; }
    .nav-links .nav-link { padding: 12px 16px; font-size: 15px; border-radius: var(--radius-sm); }
    .nav-links .btn-nav-primary { margin-top: 4px; text-align: center; padding: 12px 16px; }

    /* Hero mobile */
    .hero { padding: 60px 16px 48px; }
    .hero h1 { font-size: 28px; letter-spacing: -0.3px; }
    .hero-sub { font-size: 15px; margin-bottom: 28px; }
    .hero-badge { font-size: 12px; padding: 5px 14px; }

    /* Search box mobile */
    .search-box { flex-direction: column; border-radius: var(--radius); padding: 12px; gap: 10px; }
    .search-box input, .search-box select { flex: none; width: 100%; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); }
    .search-box .btn { width: 100%; justify-content: center; padding: 14px; font-size: 15px; border-radius: var(--radius-sm); }

    /* Hero stats mobile */
    .hero-stats { gap: 0; margin-top: 32px; }
    .hero-stat { padding: 0 18px; }
    .hero-stat span { font-size: 22px; }
    .hero-stat small { font-size: 12px; }

    /* Layout */
    .container { padding: 0 16px; }
    .section { padding: 40px 0; }
    .section-title { font-size: 22px; }
    .steps-grid { grid-template-columns: 1fr; gap: 14px; }
    .pros-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    /* Filters bar mobile */
    .filters-bar { padding: 12px 16px; gap: 8px; }
    .filters-bar input, .filters-bar select { flex: 1; min-width: 140px; font-size: 14px; }
    .filters-bar .btn { width: 100%; justify-content: center; }

    /* CTA section mobile */
    .pro-cta { flex-direction: column; text-align: center; padding: 32px 24px; }
    .pro-cta .btn-white { width: 100%; justify-content: center; }

    /* Dashboard mobile */
    .dashboard-layout { grid-template-columns: 1fr; }
    .sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border);
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px 12px;
        gap: 4px;
        height: auto;
    }
    .sidebar-label { display: none; }
    .sidebar-link { padding: 8px 10px; font-size: 13px; }
    .main-content { padding: 20px 16px; }

    /* Forms mobile */
    .form-card { padding: 24px 16px; margin: 0 4px; }
    .checkbox-grid { grid-template-columns: 1fr 1fr; }

    /* Cards mobile */
    .pro-card { padding: 16px; }
    .pro-card-horizontal { padding: 14px; gap: 12px; }
    .profil-card { padding: 20px; }

    /* Tables mobile */
    .table-card { overflow-x: auto; }
    th, td { padding: 10px 12px; font-size: 13px; }

    /* Stats grid mobile */
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
