/* ==========================================
   RENOVONS COLLECTIF - Professional Design
   ========================================== */

* { box-sizing: border-box; }

:root {
    --rnv-blue: #2563eb;
    --rnv-blue-dark: #1d4ed8;
    --rnv-blue-light: #dbeafe;
    --rnv-blue-50: #eff6ff;
    --rnv-orange: #f97316;
    --rnv-orange-dark: #ea580c;
    --rnv-green: #10b981;
    --rnv-green-light: #d1fae5;
    --rnv-red: #ef4444;
    --rnv-red-light: #fee2e2;
    --rnv-yellow: #f59e0b;
    --rnv-yellow-light: #fef3c7;
    --rnv-dark: #0f172a;
    --rnv-gray-900: #1e293b;
    --rnv-gray-700: #334155;
    --rnv-gray-500: #64748b;
    --rnv-gray-400: #94a3b8;
    --rnv-gray-200: #e2e8f0;
    --rnv-gray-100: #f1f5f9;
    --rnv-gray-50: #f8fafc;
    --rnv-white: #ffffff;
    --rnv-radius: 12px;
    --rnv-radius-sm: 8px;
    --rnv-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --rnv-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --rnv-shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --rnv-shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --rnv-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ NAVBAR ============ */
.rnv-navbar {
    background: var(--rnv-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--rnv-gray-200);
}

.wp-admin .rnv-navbar,
.admin-bar .rnv-navbar { top: 32px; }

.rnv-navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
}

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

.rnv-logo-icon { font-size: 28px; }

.rnv-logo-text {
    font-size: 20px;
    color: var(--rnv-gray-700);
    font-weight: 400;
    letter-spacing: -0.3px;
}

.rnv-logo-text strong {
    color: var(--rnv-blue);
    font-weight: 800;
}

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

.rnv-nav-link {
    padding: 8px 16px;
    color: var(--rnv-gray-500);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--rnv-transition);
}

.rnv-nav-link:hover {
    color: var(--rnv-blue);
    background: var(--rnv-blue-50);
}

.rnv-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: linear-gradient(135deg, var(--rnv-orange), var(--rnv-orange-dark));
    color: var(--rnv-white) !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--rnv-transition);
    box-shadow: 0 3px 10px rgba(249,115,22,0.3);
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.rnv-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249,115,22,0.4);
    color: var(--rnv-white) !important;
}

/* ============ HERO ============ */
.rnv-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
    padding: 80px 20px 70px;
    text-align: center;
    overflow: hidden;
}

.rnv-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.rnv-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to bottom right, transparent 49.5%, var(--rnv-gray-50) 50%);
}

.rnv-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.rnv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fbbf24;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.rnv-hero h1 {
    color: var(--rnv-white);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}

.rnv-gradient-text {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rnv-hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: clamp(15px, 2.5vw, 18px);
    line-height: 1.6;
    margin: 0 0 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rnv-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.rnv-hero-stat strong {
    display: block;
    color: var(--rnv-white);
    font-size: 28px;
    font-weight: 800;
}

.rnv-hero-stat span {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.rnv-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--rnv-orange), var(--rnv-orange-dark));
    color: var(--rnv-white) !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 35px;
    box-shadow: 0 6px 20px rgba(249,115,22,0.4);
    transition: var(--rnv-transition);
    animation: rnvPulse 2s infinite;
}

.rnv-hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(249,115,22,0.5);
    color: var(--rnv-white) !important;
}

@keyframes rnvPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(249,115,22,0.4); }
    50% { box-shadow: 0 6px 30px rgba(249,115,22,0.6); }
}

.rnv-hero-stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* ============ TRUST BAR ============ */
.rnv-trust-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 22px 20px;
    background: var(--rnv-white);
    border-bottom: 1px solid var(--rnv-gray-200);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    z-index: 10;
}

.rnv-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--rnv-gray-700);
}

.rnv-trust-ico {
    font-size: 18px;
    line-height: 1;
}

/* ============ FORM WRAPPER ============ */
.rnv-form-wrapper {
    max-width: 780px;
    margin: 30px auto 0;
    padding: 0 20px 50px;
    position: relative;
    z-index: 5;
}

.rnv-form-card {
    background: var(--rnv-white);
    border-radius: 16px;
    box-shadow: var(--rnv-shadow-xl);
    padding: 40px;
    border: 1px solid var(--rnv-gray-200);
}

/* ============ PROGRESS ============ */
.rnv-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    gap: 0;
}

.rnv-pstep {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.rnv-pcircle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: var(--rnv-transition);
    background: var(--rnv-gray-100);
    color: var(--rnv-gray-400);
    border: 2px solid var(--rnv-gray-200);
}

.rnv-pstep.active .rnv-pcircle {
    background: linear-gradient(135deg, var(--rnv-blue), var(--rnv-blue-dark));
    color: var(--rnv-white);
    border-color: var(--rnv-blue);
    box-shadow: 0 4px 15px rgba(37,99,235,0.4);
}

.rnv-pstep.completed .rnv-pcircle {
    background: linear-gradient(135deg, var(--rnv-green), #059669);
    color: var(--rnv-white);
    border-color: var(--rnv-green);
}

.rnv-plabel {
    font-size: 12px;
    font-weight: 600;
    color: var(--rnv-gray-400);
    transition: var(--rnv-transition);
}

.rnv-pstep.active .rnv-plabel { color: var(--rnv-blue); }
.rnv-pstep.completed .rnv-plabel { color: var(--rnv-green); }

.rnv-pline {
    flex: 1;
    height: 3px;
    background: var(--rnv-gray-200);
    margin: 0 12px;
    margin-bottom: 28px;
    border-radius: 3px;
    overflow: hidden;
    max-width: 100px;
}

.rnv-pline-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--rnv-blue), var(--rnv-green));
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* ============ STEP HEADER ============ */
.rnv-step-head {
    text-align: center;
    margin-bottom: 30px;
}

.rnv-step-head h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--rnv-dark);
    margin: 0 0 8px;
}

.rnv-step-head p {
    font-size: 14px;
    color: var(--rnv-gray-500);
    margin: 0;
}

/* ============ CATEGORIES ============ */
.rnv-cats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.rnv-cat { cursor: pointer; }
.rnv-cat input { display: none; }

.rnv-cat-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    border: 2px solid var(--rnv-gray-200);
    border-radius: var(--rnv-radius);
    text-align: center;
    transition: var(--rnv-transition);
    background: var(--rnv-white);
}

.rnv-cat-ico {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, var(--rnv-blue-50), var(--rnv-blue-light));
    transition: var(--rnv-transition);
    line-height: 1;
}

.rnv-cat-box span {
    font-size: 13px;
    font-weight: 600;
    color: var(--rnv-gray-700);
    line-height: 1.3;
}

.rnv-cat-tick {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--rnv-green);
    color: var(--rnv-white);
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: var(--rnv-transition);
}

.rnv-cat:hover .rnv-cat-box {
    border-color: var(--rnv-blue);
    transform: translateY(-3px);
    box-shadow: var(--rnv-shadow-md);
}

.rnv-cat:hover .rnv-cat-ico {
    background: linear-gradient(135deg, var(--rnv-blue), var(--rnv-blue-dark));
    transform: scale(1.1);
}

.rnv-cat input:checked + .rnv-cat-box {
    border-color: var(--rnv-blue);
    background: var(--rnv-blue-50);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.rnv-cat input:checked + .rnv-cat-box .rnv-cat-ico {
    background: linear-gradient(135deg, var(--rnv-blue), var(--rnv-blue-dark));
    transform: scale(1.1);
}

.rnv-cat input:checked + .rnv-cat-box .rnv-cat-tick {
    opacity: 1;
    transform: scale(1);
}

/* ============ FORM FIELDS ============ */
.rnv-field {
    margin-bottom: 18px;
}

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

.rnv-field input,
.rnv-field textarea,
.rnv-field select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--rnv-gray-200);
    border-radius: var(--rnv-radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--rnv-dark);
    background: var(--rnv-white);
    transition: var(--rnv-transition);
    outline: none;
}

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

.rnv-field input::placeholder,
.rnv-field textarea::placeholder {
    color: var(--rnv-gray-400);
}

.rnv-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Checkbox */
.rnv-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--rnv-gray-500);
    line-height: 1.5;
}

.rnv-check input { display: none; }

.rnv-checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--rnv-gray-200);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--rnv-transition);
    margin-top: 2px;
}

.rnv-check input:checked + .rnv-checkmark {
    background: var(--rnv-blue);
    border-color: var(--rnv-blue);
}

.rnv-check input:checked + .rnv-checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.rnv-check a { color: var(--rnv-blue); }

/* ============ BUTTONS ============ */
.rnv-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--rnv-gray-100);
}

.rnv-btn-primary,
.rnv-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--rnv-transition);
    text-decoration: none;
    font-family: inherit;
}

.rnv-btn-primary {
    background: linear-gradient(135deg, var(--rnv-blue), var(--rnv-blue-dark));
    color: var(--rnv-white);
    box-shadow: 0 4px 15px rgba(37,99,235,0.35);
}

.rnv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.45);
    color: var(--rnv-white);
}

.rnv-btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.rnv-btn-submit {
    background: linear-gradient(135deg, var(--rnv-orange), var(--rnv-orange-dark));
    color: var(--rnv-white);
    box-shadow: 0 4px 15px rgba(249,115,22,0.35);
    font-size: 16px;
    padding: 16px 32px;
}

.rnv-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.45);
    color: var(--rnv-white);
}

.rnv-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid var(--rnv-gray-200);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: var(--rnv-white);
    color: var(--rnv-gray-500);
    transition: var(--rnv-transition);
    font-family: inherit;
}

.rnv-btn-ghost:hover {
    border-color: var(--rnv-gray-400);
    color: var(--rnv-gray-700);
}

.rnv-btn-xl {
    padding: 18px 36px;
    font-size: 17px;
}

/* ============ LOADING ============ */
.renovons-loading { text-align: center; padding: 50px 20px; }

.rnv-loader { text-align: center; }

.rnv-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--rnv-gray-200);
    border-top-color: var(--rnv-blue);
    border-radius: 50%;
    animation: rnvSpin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes rnvSpin { to { transform: rotate(360deg); } }

.rnv-loader h3 { color: var(--rnv-dark); font-size: 18px; margin: 0 0 8px; }
.rnv-loader p { color: var(--rnv-gray-500); font-size: 14px; margin: 0; }

/* ============ HOW IT WORKS ============ */
.rnv-how {
    background: var(--rnv-white);
    padding: 70px 20px;
    text-align: center;
}

.rnv-how > h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--rnv-dark);
    margin: 0 0 50px;
}

.rnv-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.rnv-how-card {
    position: relative;
    padding: 30px 25px;
    text-align: center;
}

.rnv-how-num {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--rnv-orange);
    color: var(--rnv-white);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rnv-how-ico {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--rnv-blue-50), var(--rnv-blue-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 1;
}

.rnv-how-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--rnv-dark);
    margin: 0 0 10px;
}

.rnv-how-card p {
    font-size: 14px;
    color: var(--rnv-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ============ CTA FINAL ============ */
.rnv-cta-final {
    background: linear-gradient(135deg, var(--rnv-blue), var(--rnv-blue-dark));
    padding: 60px 20px;
    text-align: center;
}

.rnv-cta-final h2 {
    color: var(--rnv-white);
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px;
}

.rnv-cta-final p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin: 0 0 30px;
}

.rnv-cta-final .rnv-btn-primary {
    background: var(--rnv-white);
    color: var(--rnv-blue);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.rnv-cta-final .rnv-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    color: var(--rnv-blue);
}

/* ============ CONFIRMATION ============ */
.renovons-confirmation {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.renovons-confirmation-icon { font-size: 70px; color: var(--rnv-green); margin-bottom: 20px; }
.renovons-confirmation h2 { color: var(--rnv-dark); font-size: 26px; font-weight: 700; }

.renovons-confirmation-steps { text-align: left; margin: 30px 0; }

.renovons-conf-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--rnv-gray-200);
}

.renovons-conf-num {
    width: 36px; height: 36px; min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rnv-blue), var(--rnv-blue-dark));
    color: var(--rnv-white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}

/* ============ NOTICES ============ */
.renovons-notice {
    padding: 14px 18px;
    border-radius: var(--rnv-radius-sm);
    margin-bottom: 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.renovons-notice-success { background: var(--rnv-green-light); color: #065f46; border: 1px solid #a7f3d0; }
.renovons-notice-error { background: var(--rnv-red-light); color: #991b1b; border: 1px solid #fecaca; }
.renovons-notice-warning { background: var(--rnv-yellow-light); color: #92400e; border: 1px solid #fde68a; }
.renovons-notice-info { background: var(--rnv-blue-light); color: #1e40af; border: 1px solid #93c5fd; }

/* ============ AUTH PAGES ============ */
.renovons-auth-container {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    background: var(--rnv-gray-50);
    min-height: 60vh;
}

.renovons-auth-card {
    background: var(--rnv-white);
    border-radius: 16px;
    box-shadow: var(--rnv-shadow-lg);
    padding: 40px;
    width: 100%;
    max-width: 700px;
    border: 1px solid var(--rnv-gray-200);
}

.renovons-auth-card h2 {
    text-align: center;
    color: var(--rnv-dark);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px;
}

.renovons-auth-subtitle {
    text-align: center;
    color: var(--rnv-gray-500);
    margin-bottom: 30px;
    font-size: 14px;
}

.renovons-auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--rnv-gray-200);
    color: var(--rnv-gray-500);
    font-size: 14px;
}

.renovons-auth-footer a { color: var(--rnv-blue); font-weight: 600; }

.renovons-auth-message {
    padding: 14px;
    border-radius: var(--rnv-radius-sm);
    margin-top: 15px;
    text-align: center;
}

.renovons-form-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rnv-gray-100);
}

.renovons-form-section h3 {
    font-size: 16px;
    color: var(--rnv-dark);
    margin: 0 0 15px;
    font-weight: 700;
}

.renovons-form-group { margin-bottom: 16px; }

.renovons-form-group label {
    display: block;
    font-weight: 600;
    color: var(--rnv-gray-700);
    margin-bottom: 6px;
    font-size: 14px;
}

.renovons-form-group input,
.renovons-form-group textarea,
.renovons-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--rnv-gray-200);
    border-radius: var(--rnv-radius-sm);
    font-size: 15px;
    transition: var(--rnv-transition);
    background: var(--rnv-white);
    outline: none;
    font-family: inherit;
}

.renovons-form-group input:focus,
.renovons-form-group textarea:focus,
.renovons-form-group select:focus {
    border-color: var(--rnv-blue);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

.renovons-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.renovons-form-inline { display: flex; justify-content: space-between; align-items: center; }

.renovons-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--rnv-gray-500);
}

.renovons-checkbox input { width: auto; margin-top: 3px; }

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

.renovons-select-multiple { min-height: 120px; }

.renovons-link-small { font-size: 13px; color: var(--rnv-blue); }

/* ============ BUTTONS (common) ============ */
.renovons-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: var(--rnv-transition);
    font-family: inherit;
}

.renovons-btn-primary {
    background: linear-gradient(135deg, var(--rnv-blue), var(--rnv-blue-dark));
    color: var(--rnv-white);
    box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}

.renovons-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.4);
    color: var(--rnv-white);
}

.renovons-btn-outline {
    background: transparent;
    color: var(--rnv-blue);
    border: 2px solid var(--rnv-blue);
}

.renovons-btn-outline:hover { background: var(--rnv-blue); color: var(--rnv-white); }

.renovons-btn-white { background: var(--rnv-white); color: var(--rnv-blue); }

.renovons-btn-lg { padding: 14px 28px; font-size: 16px; }
.renovons-btn-sm { padding: 8px 16px; font-size: 12px; }
.renovons-btn-block { width: 100%; justify-content: center; }
.renovons-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ============ DASHBOARD V2 (Premium Sidebar Layout) ============ */
.rnv-dash-wrap {
    display: flex;
    min-height: 100vh;
    background: #f1f5f9;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
}

/* -- Sidebar -- */
.rnv-dash-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
    transition: transform 0.3s;
}
.admin-bar .rnv-dash-sidebar { top: 32px; height: calc(100vh - 32px); }

.rnv-dash-logo {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rnv-dash-logo strong { font-weight: 800; color: #60a5fa; }
.rnv-dash-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
}

.rnv-dash-profile {
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rnv-dash-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin: 0 auto 10px;
    letter-spacing: 1px;
}
.rnv-dash-pname { font-weight: 700; font-size: 15px; }
.rnv-dash-ploc { font-size: 12px; color: #94a3b8; margin-top: 3px; }

.rnv-dash-menu { flex: 1; padding: 12px 0; }
.rnv-dm-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 24px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s;
    border-left: 3px solid transparent;
}
.rnv-dm-item:hover { color: #fff; background: rgba(255,255,255,0.06); }
.rnv-dm-item.active { color: #fff; background: rgba(59,130,246,0.15); border-left-color: #3b82f6; }
.rnv-dm-ico { font-size: 18px; width: 22px; text-align: center; }
.rnv-dm-badge {
    margin-left: auto;
    background: #3b82f6;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.rnv-dash-logout { padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.rnv-dm-logout { color: #ef4444 !important; }
.rnv-dm-logout:hover { background: rgba(239,68,68,0.1) !important; }

/* -- Main Content -- */
.rnv-dash-main {
    flex: 1;
    margin-left: 260px;
    padding: 30px;
    min-height: 100vh;
}
.admin-bar .rnv-dash-main { padding-top: 30px; }

/* -- Top Bar Mobile -- */
.rnv-dash-topbar {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    margin-bottom: 20px;
}
.rnv-dash-burger { font-size: 24px; background: none; border: none; cursor: pointer; padding: 8px; }
.rnv-dash-topname { font-weight: 700; font-size: 15px; }
.rnv-dash-topout { font-size: 13px; color: #ef4444; text-decoration: none; }

/* -- KPIs -- */
.rnv-dash-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.rnv-kpi {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    position: relative;
}
.rnv-kpi-blue {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    border: none;
}
.rnv-kpi-blue .rnv-kpi-label { color: rgba(255,255,255,0.8); }
.rnv-kpi-icon { font-size: 28px; }
.rnv-kpi-val { font-size: 28px; font-weight: 800; line-height: 1; }
.rnv-kpi-label { font-size: 12px; color: #64748b; margin-top: 2px; }
.rnv-kpi-action {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
}
.rnv-kpi-action:hover { background: rgba(255,255,255,0.3); color: #fff; }

/* -- Quick Actions -- */
.rnv-dash-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.rnv-qa {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.15s;
}
.rnv-qa:hover { border-color: #3b82f6; box-shadow: 0 2px 8px rgba(59,130,246,0.12); color: #2563eb; transform: translateY(-2px); }
.rnv-qa-ico { font-size: 22px; }

/* -- Section -- */
.rnv-dash-section {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}
.rnv-ds-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.rnv-ds-header h2 { font-size: 18px; font-weight: 700; margin: 0; color: #0f172a; }
.rnv-ds-warn {
    font-size: 12px;
    color: #f59e0b;
    background: #fffbeb;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
}

.rnv-dash-empty-sm { text-align: center; padding: 40px 20px; }
.rnv-des-ico { font-size: 48px; margin-bottom: 12px; }
.rnv-dash-empty-sm h3 { font-size: 18px; color: #334155; margin: 0 0 8px; }
.rnv-dash-empty-sm p { color: #64748b; font-size: 14px; margin: 0; }

/* -- Lead Rows -- */
.rnv-leads-list { display: flex; flex-direction: column; gap: 12px; }
.rnv-lead-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.15s;
}
.rnv-lead-row:hover { border-color: #93c5fd; background: #eff6ff; }
.rnv-lr-main { flex: 2; min-width: 0; }
.rnv-lr-cat { font-weight: 700; font-size: 14px; color: #1e40af; margin-bottom: 4px; }
.rnv-lr-loc { font-size: 13px; color: #64748b; margin-bottom: 4px; }
.rnv-lr-desc { font-size: 13px; color: #475569; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rnv-lr-meta { display: flex; gap: 12px; font-size: 11px; color: #94a3b8; flex-wrap: wrap; }

.rnv-lr-contact { flex: 1; min-width: 140px; }
.rnv-lr-blurred {
    filter: blur(4px);
    user-select: none;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.8;
}

.rnv-lr-action { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 100px; }
.rnv-lr-price { font-weight: 800; font-size: 16px; color: #2563eb; }

/* -- Buttons -- */
.rnv-d-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.15s;
    white-space: nowrap;
}
.rnv-d-btn-primary { background: linear-gradient(135deg, #2563eb, #3b82f6); color: #fff; }
.rnv-d-btn-primary:hover { background: linear-gradient(135deg, #1d4ed8, #2563eb); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.3); }
.rnv-d-btn-outline { background: #fff; color: #2563eb; border: 1px solid #2563eb; }
.rnv-d-btn-outline:hover { background: #eff6ff; color: #1d4ed8; }
.rnv-d-btn-green { background: #059669; color: #fff; }
.rnv-d-btn-green:hover { background: #047857; color: #fff; }
.rnv-d-btn-sm { padding: 7px 14px; font-size: 12px; border-radius: 8px; }

/* -- Contact Rows -- */
.rnv-contacts-list { display: flex; flex-direction: column; gap: 10px; }
.rnv-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}
.rnv-cr-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}
.rnv-cr-info { flex: 1; min-width: 0; }
.rnv-cr-name { font-weight: 700; font-size: 14px; color: #0f172a; }
.rnv-cr-cat { font-size: 12px; color: #64748b; }
.rnv-cr-contact { display: flex; gap: 6px; flex-shrink: 0; }
.rnv-cr-date { font-size: 12px; color: #94a3b8; flex-shrink: 0; min-width: 70px; text-align: right; }

.rnv-dash-empty { max-width: 420px; margin: 80px auto; text-align: center; background: #fff; padding: 40px; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

/* -- RESPONSIVE MOBILE -- */
@media (max-width: 1024px) {
    .rnv-dash-kpis { grid-template-columns: repeat(2, 1fr); }
    .rnv-dash-actions { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .rnv-dash-sidebar {
        transform: translateX(-100%);
        width: 280px;
        box-shadow: 4px 0 20px rgba(0,0,0,0.3);
    }
    .rnv-dash-sidebar.open { transform: translateX(0); }
    .rnv-dash-main { margin-left: 0; padding: 16px; }
    .rnv-dash-topbar { display: flex; }
    .rnv-dash-kpis { grid-template-columns: 1fr 1fr; gap: 10px; }
    .rnv-kpi { padding: 14px; }
    .rnv-kpi-val { font-size: 22px; }
    .rnv-kpi-action { display: none; }
    .rnv-dash-actions { grid-template-columns: 1fr 1fr; gap: 8px; }
    .rnv-qa { padding: 12px; font-size: 12px; }
    .rnv-lead-row { flex-direction: column; align-items: flex-start; }
    .rnv-lr-contact { display: none; }
    .rnv-lr-action { flex-direction: row; width: 100%; justify-content: space-between; margin-top: 8px; padding-top: 10px; border-top: 1px solid #e2e8f0; }
    .rnv-contact-row { flex-wrap: wrap; }
    .rnv-cr-contact { width: 100%; margin-top: 8px; }
    .rnv-cr-date { width: 100%; text-align: left; }
    .rnv-dash-section { padding: 16px; }
}

/* ============ OLD DASHBOARD (keep for other pages) ============ */
.renovons-dashboard {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

.renovons-dash-nav {
    display: flex;
    background: var(--rnv-white);
    border-radius: var(--rnv-radius);
    box-shadow: var(--rnv-shadow);
    margin-bottom: 30px;
    overflow-x: auto;
    border: 1px solid var(--rnv-gray-200);
}

.renovons-dash-nav a {
    padding: 16px 22px;
    text-decoration: none;
    color: var(--rnv-gray-500);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: var(--rnv-transition);
    border-bottom: 3px solid transparent;
}

.renovons-dash-nav a:hover { color: var(--rnv-blue); background: var(--rnv-blue-50); }
.renovons-dash-nav a.active { color: var(--rnv-blue); border-bottom-color: var(--rnv-blue); }

.renovons-dash-header h1 {
    color: var(--rnv-dark);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
}

/* Welcome Banner */
.rnv-welcome-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    color: #fff;
    border-radius: 16px;
    padding: 24px 30px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.rnv-welcome-left h1 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 4px;
}

.rnv-welcome-left p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    margin: 0;
}

.rnv-welcome-right {
    display: flex;
    gap: 10px;
}

.renovons-btn-white {
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    backdrop-filter: blur(4px);
}

.renovons-btn-white:hover {
    background: rgba(255,255,255,0.35) !important;
}

/* Stats */
.renovons-dash-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 35px;
}

.renovons-stat-card {
    background: var(--rnv-white);
    border-radius: var(--rnv-radius);
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--rnv-shadow);
    border: 1px solid var(--rnv-gray-200);
}

.renovons-stat-card i { font-size: 28px; color: var(--rnv-gray-400); }

.renovons-stat-primary {
    background: linear-gradient(135deg, var(--rnv-blue), var(--rnv-blue-dark));
    color: var(--rnv-white);
    border: none;
}

.renovons-stat-primary i,
.renovons-stat-primary .renovons-stat-label { color: rgba(255,255,255,0.8); }

.renovons-stat-value { display: block; font-size: 30px; font-weight: 800; line-height: 1.2; }
.renovons-stat-label { font-size: 13px; color: var(--rnv-gray-500); }

/* Sections */
.renovons-section { margin-bottom: 35px; }

.renovons-section h2 {
    color: var(--rnv-dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Lead Cards */
.renovons-leads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.renovons-lead-card {
    background: var(--rnv-white);
    border: 1px solid var(--rnv-gray-200);
    border-radius: var(--rnv-radius);
    overflow: hidden;
    box-shadow: var(--rnv-shadow);
    transition: var(--rnv-transition);
}

.renovons-lead-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--rnv-shadow-lg);
}

.renovons-lead-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: var(--rnv-gray-50);
    border-bottom: 1px solid var(--rnv-gray-200);
}

.renovons-lead-category { font-weight: 700; font-size: 13px; color: var(--rnv-blue); }

.renovons-lead-price {
    background: linear-gradient(135deg, var(--rnv-blue), var(--rnv-blue-dark));
    color: var(--rnv-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.renovons-lead-body { padding: 18px; }
.renovons-lead-body p { margin: 8px 0; font-size: 13px; color: var(--rnv-gray-500); }
.renovons-lead-body p i { width: 16px; text-align: center; margin-right: 6px; color: var(--rnv-gray-400); }
.renovons-lead-location { font-weight: 700; color: var(--rnv-dark) !important; }

.renovons-lead-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-top: 1px solid var(--rnv-gray-200);
}

.renovons-lead-slots { font-size: 12px; color: var(--rnv-gray-400); }

.renovons-buy-lead {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--rnv-orange), var(--rnv-orange-dark));
    color: var(--rnv-white);
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--rnv-transition);
    font-family: inherit;
}

.renovons-buy-lead:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(249,115,22,0.4); }
.renovons-buy-lead:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* Purchased */
.renovons-purchased-list {
    background: var(--rnv-white);
    border-radius: var(--rnv-radius);
    box-shadow: var(--rnv-shadow);
    overflow: hidden;
    border: 1px solid var(--rnv-gray-200);
}

.renovons-purchased-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 20px;
    border-bottom: 1px solid var(--rnv-gray-100);
}

.renovons-purchased-item:last-child { border-bottom: none; }
.renovons-purchased-info small { color: var(--rnv-gray-500); }
.renovons-purchased-date { font-size: 12px; color: var(--rnv-gray-400); white-space: nowrap; }

.renovons-purchased-card {
    background: var(--rnv-white);
    border: 1px solid var(--rnv-gray-200);
    border-radius: var(--rnv-radius);
    margin-bottom: 16px;
    box-shadow: var(--rnv-shadow);
}

.renovons-purchased-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--rnv-gray-50);
    border-bottom: 1px solid var(--rnv-gray-200);
}

.renovons-purchased-body { padding: 20px; }

.renovons-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.renovons-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.renovons-contact-item i { color: var(--rnv-blue); width: 16px; text-align: center; }
.renovons-contact-item a { color: var(--rnv-blue); font-weight: 600; }

.renovons-lead-description h4 { font-size: 14px; color: var(--rnv-dark); margin: 15px 0 8px; font-weight: 700; }
.renovons-lead-description p { color: var(--rnv-gray-500); line-height: 1.6; }

/* Credits */
.renovons-credit-balance {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--rnv-blue), var(--rnv-blue-dark));
    color: var(--rnv-white);
    padding: 28px 35px;
    border-radius: 16px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(37,99,235,0.3);
}

.renovons-balance-icon { font-size: 40px; opacity: 0.8; }
.renovons-balance-amount { display: block; font-size: 44px; font-weight: 800; line-height: 1; }
.renovons-balance-label { font-size: 14px; opacity: 0.8; }

/* Packs */
.renovons-packs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.renovons-pack-card {
    background: var(--rnv-white);
    border: 2px solid var(--rnv-gray-200);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    position: relative;
    transition: var(--rnv-transition);
}

.renovons-pack-card:hover {
    border-color: var(--rnv-blue);
    transform: translateY(-4px);
    box-shadow: var(--rnv-shadow-lg);
}

.renovons-pack-featured {
    border-color: var(--rnv-blue);
    box-shadow: var(--rnv-shadow-md);
}

.renovons-pack-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--rnv-orange), var(--rnv-orange-dark));
    color: var(--rnv-white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.renovons-pack-card h3 { color: var(--rnv-dark); font-size: 18px; margin: 10px 0; font-weight: 700; }
.renovons-pack-credits { font-size: 38px; font-weight: 800; color: var(--rnv-blue); margin: 10px 0; }
.renovons-pack-credits small { font-size: 14px; font-weight: 500; color: var(--rnv-gray-500); }
.renovons-pack-price { font-size: 24px; font-weight: 700; color: var(--rnv-dark); margin: 5px 0; }
.renovons-pack-per-credit { font-size: 12px; color: var(--rnv-gray-400); margin-bottom: 18px; }

.renovons-buy-pack {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--rnv-blue), var(--rnv-blue-dark));
    color: var(--rnv-white);
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--rnv-transition);
    font-family: inherit;
}

.renovons-buy-pack:hover { box-shadow: 0 4px 15px rgba(37,99,235,0.4); transform: translateY(-1px); }

/* Tables */
.renovons-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--rnv-white);
    border-radius: var(--rnv-radius);
    overflow: hidden;
    box-shadow: var(--rnv-shadow);
    border: 1px solid var(--rnv-gray-200);
}

.renovons-table th {
    background: var(--rnv-gray-50);
    padding: 14px 18px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: var(--rnv-dark);
    border-bottom: 2px solid var(--rnv-gray-200);
}

.renovons-table td {
    padding: 12px 18px;
    font-size: 13px;
    border-bottom: 1px solid var(--rnv-gray-100);
    color: var(--rnv-gray-500);
}

/* Badges */
.renovons-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.renovons-badge-success { background: var(--rnv-green-light); color: #065f46; }
.renovons-badge-warning { background: var(--rnv-yellow-light); color: #92400e; }
.renovons-badge-danger { background: var(--rnv-red-light); color: #991b1b; }
.renovons-badge-info { background: var(--rnv-blue-light); color: #1e40af; }
.renovons-badge-default { background: var(--rnv-gray-100); color: var(--rnv-gray-500); }

/* Empty State */
.renovons-empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--rnv-gray-500);
}

.renovons-empty-state i { font-size: 48px; color: var(--rnv-gray-200); margin-bottom: 15px; }
.renovons-empty-state h3 { color: var(--rnv-dark); margin-bottom: 8px; }

/* Waiting */
.renovons-waiting-approval {
    text-align: center;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.renovons-waiting-approval i { font-size: 60px; color: var(--rnv-yellow); margin-bottom: 20px; }

/* Card */
.renovons-card {
    background: var(--rnv-white);
    border: 1px solid var(--rnv-gray-200);
    border-radius: var(--rnv-radius);
    padding: 28px;
    box-shadow: var(--rnv-shadow);
    margin-bottom: 20px;
}

.renovons-text-muted { color: var(--rnv-gray-500); font-size: 14px; }

/* ============ FOOTER ARTISAN ============ */
.rnv-footer-artisan {
    text-align: center;
    padding: 25px 20px;
    background: var(--rnv-gray-50);
    border-top: 1px solid var(--rnv-gray-200);
}

.rnv-footer-artisan p {
    color: var(--rnv-gray-500);
    font-size: 14px;
    margin: 0;
}

.rnv-footer-artisan a {
    color: var(--rnv-blue);
    font-weight: 700;
    text-decoration: underline;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .rnv-navbar-links .rnv-nav-link { display: none; }
    .rnv-navbar-inner { height: 55px; padding: 0 12px; }
    .rnv-logo-icon { font-size: 22px; }
    .rnv-logo-text { font-size: 15px; }
    .rnv-nav-btn { padding: 8px 14px; font-size: 12px; }
    .rnv-hero { padding: 40px 20px 50px; }
    .rnv-hero h1 { font-size: 24px; }
    .rnv-hero-sub { font-size: 14px; }
    .rnv-hero-cta { padding: 14px 28px; font-size: 15px; }
    .rnv-hero-stats { gap: 15px; }
    .rnv-hero-stat strong { font-size: 22px; }
    .rnv-hero-stat-sep { display: none; }
    .rnv-trust-bar { gap: 12px; padding: 16px 12px; }
    .rnv-trust-item { font-size: 11px; gap: 4px; }
    .rnv-form-card { padding: 25px 18px; }
    .rnv-cats { grid-template-columns: repeat(2, 1fr); }
    .rnv-field-row { grid-template-columns: 1fr; }
    .rnv-how-grid { grid-template-columns: 1fr; gap: 20px; }
    .rnv-plabel { display: none; }
    .rnv-pline { margin-bottom: 0; }
    .renovons-form-row { grid-template-columns: 1fr; }
    .renovons-contact-grid { grid-template-columns: 1fr; }
    .renovons-leads-grid { grid-template-columns: 1fr; }
    .renovons-dash-stats { grid-template-columns: 1fr; }
    .renovons-packs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .rnv-cats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .rnv-cat-box { padding: 14px 8px; }
    .rnv-cat-ico { width: 40px; height: 40px; font-size: 18px; }
    .rnv-actions { flex-direction: column; gap: 12px; }
    .rnv-actions > * { width: 100%; text-align: center; justify-content: center; }
    .renovons-packs-grid { grid-template-columns: 1fr; }
    .renovons-dash-nav a { padding: 12px 14px; font-size: 12px; }
    .rnv-trust-bar { flex-wrap: wrap; justify-content: center; }
    .rnv-trust-item { flex: 0 0 auto; }
    .rnv-hero-cta { padding: 13px 24px; font-size: 14px; }
}

/* ============================================================
   FICHE ARTISAN
   ============================================================ */

.renovons-fiche-page { background: var(--rnv-gray-50); }

.rnv-fiche-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 60px;
}

/* Breadcrumb */
.rnv-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 12px 0;
    font-size: 13px;
    color: var(--rnv-gray-500);
}

.rnv-breadcrumb a {
    color: var(--rnv-blue);
    text-decoration: none;
}

.rnv-breadcrumb a:hover { text-decoration: underline; }
.rnv-bc-current { font-weight: 600; color: var(--rnv-gray-700); }

/* Header Card */
.rnv-fiche-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--rnv-white);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: var(--rnv-shadow-md);
    gap: 24px;
    flex-wrap: wrap;
}

.rnv-fiche-header-left {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex: 1;
}

.rnv-fiche-avatar {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    background: var(--rnv-blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.rnv-fiche-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rnv-fiche-avatar-placeholder { font-size: 40px; }

.rnv-fiche-info h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--rnv-gray-900);
    margin: 0 0 8px;
}

.rnv-fiche-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.rnv-fiche-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: var(--rnv-blue-50);
    color: var(--rnv-blue);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.rnv-fiche-location {
    font-size: 14px;
    color: var(--rnv-gray-500);
    margin-bottom: 6px;
}

.rnv-fiche-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.rnv-fiche-rating strong { color: var(--rnv-gray-900); }
.rnv-rating-count { color: var(--rnv-gray-500); }

.rnv-fiche-header-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.rnv-btn-lg {
    padding: 14px 28px !important;
    font-size: 15px !important;
}

.rnv-btn-outline-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid var(--rnv-green);
    color: var(--rnv-green);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--rnv-transition);
}

.rnv-btn-outline-green:hover {
    background: var(--rnv-green);
    color: var(--rnv-white);
}

.rnv-btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--rnv-blue);
    color: var(--rnv-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: var(--rnv-transition);
}

.rnv-btn-outline:hover {
    background: var(--rnv-blue);
    color: var(--rnv-white);
}

.rnv-btn-block { display: block; width: 100%; text-align: center; }

/* Grid Layout */
.rnv-fiche-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
}

.rnv-fiche-section {
    background: var(--rnv-white);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: var(--rnv-shadow);
}

.rnv-fiche-section h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--rnv-gray-900);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--rnv-gray-100);
}

.rnv-fiche-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--rnv-gray-600);
}

/* Spécialités */
.rnv-fiche-specialites {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.rnv-fiche-spec-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--rnv-gray-50);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--rnv-gray-700);
}

.rnv-spec-ico { font-size: 22px; }

/* Departments */
.rnv-fiche-depts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 16px;
}

.rnv-dept-badge {
    padding: 6px 14px;
    background: var(--rnv-blue-50);
    color: var(--rnv-blue);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* Gallery */
.rnv-fiche-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.rnv-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--rnv-shadow);
    transition: var(--rnv-transition);
}

.rnv-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--rnv-shadow-md);
}

.rnv-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rnv-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--rnv-white);
    font-size: 12px;
    font-weight: 500;
}

/* Reviews */
.rnv-rating-summary {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 20px;
    background: var(--rnv-gray-50);
    border-radius: 12px;
    margin-bottom: 20px;
}

.rnv-rating-big {
    text-align: center;
    min-width: 120px;
}

.rnv-rating-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--rnv-gray-900);
    line-height: 1;
}

.rnv-rating-stars { font-size: 18px; margin: 4px 0; }
.rnv-rating-total { font-size: 13px; color: var(--rnv-gray-500); }

.rnv-rating-bars { flex: 1; }

.rnv-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 13px;
}

.rnv-bar-track {
    flex: 1;
    height: 8px;
    background: var(--rnv-gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.rnv-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rnv-orange), var(--rnv-orange-dark));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.rnv-bar-count { min-width: 20px; text-align: right; color: var(--rnv-gray-500); }

/* Review cards */
.rnv-reviews-list { display: flex; flex-direction: column; gap: 14px; }

.rnv-review-card {
    padding: 18px;
    background: var(--rnv-gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--rnv-blue);
}

.rnv-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.rnv-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rnv-blue), var(--rnv-blue-dark));
    color: var(--rnv-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.rnv-review-header strong {
    display: block;
    color: var(--rnv-gray-900);
    font-size: 14px;
}

.rnv-review-meta {
    font-size: 12px;
    color: var(--rnv-gray-500);
}

.rnv-review-type { color: var(--rnv-blue); font-weight: 600; }

.rnv-review-card h4 {
    margin: 4px 0;
    font-size: 15px;
    color: var(--rnv-gray-800);
}

.rnv-review-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--rnv-gray-600);
}

.rnv-no-reviews {
    text-align: center;
    padding: 30px;
    color: var(--rnv-gray-400);
    font-size: 15px;
}

/* Review form */
.rnv-review-form-wrapper {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid var(--rnv-gray-100);
}

.rnv-review-form-wrapper h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--rnv-gray-900);
}

.rnv-star-select {
    display: flex;
    gap: 8px;
}

.rnv-star-btn {
    font-size: 32px;
    cursor: pointer;
    color: #d1d5db;
    transition: color 0.2s;
    user-select: none;
}

.rnv-star-btn.active,
.rnv-star-btn:hover { color: #f59e0b; }

.rnv-review-msg {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.rnv-msg-success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.rnv-msg-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Sidebar */
.rnv-fiche-sidebar { display: flex; flex-direction: column; gap: 16px; }

.rnv-sidebar-card {
    background: var(--rnv-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--rnv-shadow);
}

.rnv-sidebar-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--rnv-gray-900);
    margin: 0 0 12px;
}

.rnv-sidebar-card p {
    font-size: 14px;
    color: var(--rnv-gray-600);
    margin: 0 0 14px;
}

.rnv-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rnv-info-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--rnv-gray-100);
    font-size: 13px;
    color: var(--rnv-gray-600);
}

.rnv-info-list li:last-child { border: 0; }
.rnv-info-list a { color: var(--rnv-blue); text-decoration: none; }

.rnv-sidebar-depts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.rnv-dept-link {
    padding: 4px 12px;
    background: var(--rnv-blue-50);
    color: var(--rnv-blue);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.rnv-dept-link:hover { background: var(--rnv-blue-light); }

.rnv-sidebar-cta {
    background: linear-gradient(135deg, #1e3a5f, var(--rnv-hero-end));
    color: var(--rnv-white);
}

.rnv-sidebar-cta h3,
.rnv-sidebar-cta p { color: rgba(255,255,255,0.9); }

/* Lightbox */
.rnv-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rnv-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}

.rnv-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.rnv-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.rnv-lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--rnv-white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ============================================================
   ANNUAIRE
   ============================================================ */

.rnv-annuaire-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px 60px;
}

.rnv-annuaire-header {
    text-align: center;
    margin-bottom: 30px;
}

.rnv-annuaire-header h1 {
    font-size: 32px;
    font-weight: 900;
    color: var(--rnv-gray-900);
    margin: 0 0 10px;
}

.rnv-annuaire-header p {
    font-size: 16px;
    color: var(--rnv-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.rnv-annuaire-filters {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    background: var(--rnv-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--rnv-shadow);
}

.rnv-filter-group {
    flex: 1;
    min-width: 200px;
}

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

.rnv-filter-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--rnv-gray-200);
    border-radius: 10px;
    font-size: 14px;
    color: var(--rnv-gray-700);
    background: var(--rnv-white);
    cursor: pointer;
}

.rnv-annuaire-count {
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--rnv-gray-500);
}

.rnv-annuaire-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--rnv-white);
    border-radius: 16px;
    box-shadow: var(--rnv-shadow);
}

.rnv-annuaire-empty p {
    font-size: 18px;
    color: var(--rnv-gray-500);
    margin-bottom: 20px;
}

/* Artisan cards grid */
.rnv-annuaire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
}

.rnv-artisan-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--rnv-white);
    border-radius: 16px;
    box-shadow: var(--rnv-shadow);
    text-decoration: none;
    color: inherit;
    transition: var(--rnv-transition);
    border: 2px solid transparent;
}

.rnv-artisan-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--rnv-shadow-md);
    border-color: var(--rnv-blue);
}

.rnv-ac-header {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
}

.rnv-ac-avatar {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: var(--rnv-blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    font-size: 28px;
}

.rnv-ac-avatar img { width: 100%; height: 100%; object-fit: cover; }

.rnv-ac-info h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--rnv-gray-900);
    margin: 0 0 4px;
}

.rnv-ac-loc {
    font-size: 13px;
    color: var(--rnv-gray-500);
}

.rnv-ac-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.rnv-ac-cat-tag {
    padding: 3px 10px;
    background: var(--rnv-gray-50);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--rnv-gray-600);
}

.rnv-ac-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.rnv-ac-rating { font-size: 13px; color: var(--rnv-gray-700); }
.rnv-ac-rating small { color: var(--rnv-gray-400); }
.rnv-no-rating { color: var(--rnv-gray-400); font-style: italic; }
.rnv-ac-photos { font-size: 12px; color: var(--rnv-gray-500); }

.rnv-ac-cta {
    display: block;
    text-align: center;
    padding: 8px;
    background: var(--rnv-blue-50);
    color: var(--rnv-blue);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

/* SEO links */
.rnv-annuaire-seo {
    margin-top: 40px;
    padding: 30px;
    background: var(--rnv-white);
    border-radius: 16px;
    box-shadow: var(--rnv-shadow);
}

.rnv-annuaire-seo h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 16px;
    color: var(--rnv-gray-900);
}

.rnv-seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rnv-seo-links a {
    padding: 8px 16px;
    background: var(--rnv-gray-50);
    color: var(--rnv-gray-700);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--rnv-transition);
}

.rnv-seo-links a:hover {
    background: var(--rnv-blue-50);
    color: var(--rnv-blue);
}

/* ============ FAQ SEO ============ */
.rnv-faq-list { display: flex; flex-direction: column; gap: 8px; }

.rnv-faq-item {
    border: 1px solid var(--rnv-gray-200);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--rnv-transition);
}

.rnv-faq-item[open] {
    border-color: var(--rnv-blue);
    box-shadow: 0 2px 8px rgba(37,99,235,0.1);
}

.rnv-faq-item summary {
    padding: 14px 18px;
    font-weight: 700;
    font-size: 14px;
    color: var(--rnv-gray-800);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--rnv-gray-50);
}

.rnv-faq-item summary::-webkit-details-marker { display: none; }

.rnv-faq-item summary::after {
    content: '+';
    font-size: 18px;
    font-weight: 700;
    color: var(--rnv-blue);
    transition: transform 0.2s;
}

.rnv-faq-item[open] summary::after {
    content: '−';
}

.rnv-faq-item p {
    padding: 14px 18px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--rnv-gray-600);
}

/* SEO Description */
.rnv-fiche-seo-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--rnv-gray-700);
    padding: 16px 20px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 10px;
    border-left: 4px solid var(--rnv-blue);
}

/* ============ PROFILE PHOTOS ============ */
.rnv-profile-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.rnv-profile-photo-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--rnv-shadow);
    background: var(--rnv-white);
}

.rnv-profile-photo-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.rnv-photo-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    font-size: 12px;
    color: var(--rnv-gray-600);
}

.rnv-photo-delete {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 2px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.rnv-photo-delete:hover { opacity: 1; }

/* ============ BLURRED LEADS ============ */
.rnv-lead-blurred {
    position: relative;
    background: var(--rnv-gray-50);
    border-radius: 8px;
    padding: 10px 14px;
    margin: 10px 0;
    overflow: hidden;
}

.rnv-blurred-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 13px;
}

.rnv-blur-text {
    filter: blur(4px);
    user-select: none;
    color: var(--rnv-gray-400);
}

.rnv-blur-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(2px);
    font-size: 12px;
    font-weight: 700;
    color: var(--rnv-gray-600);
    border-radius: 8px;
}

/* ============ QUICK ACTIONS ============ */
.rnv-quick-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.rnv-qa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--rnv-transition);
    border: 2px solid;
}

.rnv-qa-green { border-color: #10b981; color: #10b981; background: #ecfdf5; }
.rnv-qa-green:hover { background: #10b981; color: #fff; }
.rnv-qa-blue { border-color: var(--rnv-blue); color: var(--rnv-blue); background: var(--rnv-blue-50); }
.rnv-qa-blue:hover { background: var(--rnv-blue); color: #fff; }
.rnv-qa-purple { border-color: #8b5cf6; color: #8b5cf6; background: #f5f3ff; }
.rnv-qa-purple:hover { background: #8b5cf6; color: #fff; }
.rnv-qa-orange { border-color: var(--rnv-orange); color: var(--rnv-orange); background: #fff7ed; }
.rnv-qa-orange:hover { background: var(--rnv-orange); color: #fff; }

/* ============ NAV BADGE ============ */
.rnv-nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    background: var(--rnv-orange);
    color: #fff;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    margin-left: 4px;
}

/* ============ SECTION HEADER ============ */
.rnv-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.rnv-section-header h2 { margin: 0; }

.rnv-section-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.rnv-badge-warning {
    background: #fef3c7;
    color: #d97706;
}

/* ============ FICHE RESPONSIVE ============ */
@media (max-width: 900px) {
    .rnv-fiche-grid { grid-template-columns: 1fr; }
    .rnv-fiche-header { flex-direction: column; }
    .rnv-fiche-header-right { flex-direction: row; width: 100%; }
    .rnv-fiche-header-right > * { flex: 1; text-align: center; }
    .rnv-rating-summary { flex-direction: column; }
    .rnv-fiche-gallery { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

@media (max-width: 600px) {
    .rnv-fiche-header-left { flex-direction: column; align-items: center; text-align: center; }
    .rnv-fiche-cats { justify-content: center; }
    .rnv-fiche-header-right { flex-direction: column; }
    .rnv-annuaire-grid { grid-template-columns: 1fr; }
    .rnv-fiche-info h1 { font-size: 22px; }
}
