:root {
    /* PALETTE SITE N&B */
    --black: #1a1a1a;
    --grey: #4a4a4a;
    --white-glass: rgba(255, 255, 255, 0.90);
    --white: #ffffff;
    --accent: #25D366; /* Vert WhatsApp */
    --soft-shadow: 0 15px 35px rgba(0,0,0,0.05);
    --soft-border: 1px solid rgba(0,0,0,0.06);
    
    /* PALETTE ADMIN & CRM */
    --crm-bg: #f4f7f6;
    --crm-sidebar: #1e1e2d;
    --crm-accent: #3699ff;
}

* { box-sizing: border-box; scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: var(--black);
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    background-color: #f0f0f0;
    overflow-x: hidden;
}

/* --- CLASSE SEO (Cache le texte pour les humains, visible pour Google) --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* --- ARRIÈRE-PLAN 3D --- */
#spline-container {
    position: fixed;
    top: 40%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    pointer-events: all;
}
spline-viewer { width: 100%; height: 100%; }

/* --- TYPOGRAPHIE --- */
h1, h2, h3, .price-val, .hero-offer-title, .admin-title, .step-title, .payment-title, #cookie-banner h4, .faq-item summary { 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700;
    letter-spacing: -0.5px;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; }
input, textarea, select { font-family: 'Montserrat', sans-serif; }

/* --- ANIMATIONS --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

.cursor { animation: blink 1s infinite; font-weight: 100; color: var(--black); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* --- NAVIGATION --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%;
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
}
.nav-left { display: flex; align-items: center; gap: 25px; }
.logo-img { height: 80px; width: auto; display: block; cursor: pointer; transition: opacity 0.3s; }
.logo-img:hover { opacity: 0.9; }

.trust-badge { display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(0,0,0,0.1); padding-left: 25px; line-height: 1.2; }
.stars { font-size: 0.75rem; color: var(--black); margin-bottom: 2px; }
.review-count { font-size: 0.75rem; font-weight: 500; color: var(--grey); }
.nav-btn { background: var(--black); color: white; padding: 10px 24px; font-size: 0.85rem; font-weight: 700; border: 1px solid var(--black); border-radius: 30px; transition: all 0.3s ease; cursor: pointer; }
.nav-btn:hover { background: white; color: var(--black); box-shadow: var(--soft-shadow); }

/* --- HERO HEADER --- */
header {
    padding: 150px 5% 100px;
    background: transparent;
    min-height: auto;
    display: flex; flex-direction: column; align-items: center; margin-bottom: 60px;
}
.hero-title { 
    font-size: 3.5rem; line-height: 1.05; margin: 0 0 20px 0; 
    letter-spacing: -1.5px; text-align: center; color: var(--black); min-height: 1.2em;
}
.hero-subtitle { 
    font-size: 1.1rem; max-width: 850px; text-align: center; color: var(--black); 
    margin-bottom: 60px; animation: fadeInUp 1s ease-out 0.2s forwards; opacity: 0; font-weight: 600; 
}

/* --- PRICING GRID --- */
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    max-width: 1200px; width: 100%; margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.4s forwards; opacity: 0;
}
.pricing-card {
    background: rgba(255, 255, 255, 0.85); padding: 40px 30px; border-radius: 20px;
    text-align: center; backdrop-filter: blur(8px); transition: transform 0.3s;
    display: flex; flex-direction: column; position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid rgba(255,255,255,0.6); overflow: hidden;
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); background: rgba(255, 255, 255, 0.95); }
.pricing-card.featured {
    transform: scale(1.05); z-index: 2; border: 2px solid var(--black);
    background: rgba(255, 255, 255, 0.95); box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.pricing-card.featured:hover { transform: scale(1.08); }
.pricing-badge {
    position: absolute; top: 20px; right: -32px; background: var(--black); color: white;
    padding: 5px 40px; transform: rotate(45deg); font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
}
.pricing-title { font-size: 1.4rem; margin-bottom: 5px; color: var(--black); text-transform: uppercase; letter-spacing: 1px; }
.pricing-subtitle { font-size: 0.9rem; color: var(--grey); margin-bottom: 25px; font-style: italic; }
.pricing-amount { font-size: 2.8rem; font-weight: 800; color: var(--black); margin-bottom: 5px; line-height: 1; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; flex: 1; }
.pricing-features li { margin-bottom: 15px; color: #555; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.pricing-features li i { color: var(--black); font-size: 0.8rem; border: 1px solid #ddd; padding: 4px; border-radius: 50%; }
.btn-price {
    width: 100%; padding: 15px; background: transparent; border: 2px solid var(--black);
    color: var(--black); font-weight: 700; border-radius: 50px; cursor: pointer; transition: 0.3s;
    text-transform: uppercase; font-size: 0.9rem;
}
.pricing-card.featured .btn-price, .btn-price:hover { background: var(--black); color: white; }

/* --- SECTIONS --- */
.glass-section { background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(20px); margin: 0 auto 60px; border-top: 1px solid rgba(255,255,255,0.3); border-bottom: 1px solid rgba(255,255,255,0.3); }
.section-padding { padding: 100px 5%; max-width: 1400px; margin: 0 auto; }
.section-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 50px; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 20px; }
.section-title { font-size: 2.2rem; margin: 0; }
.section-desc { font-size: 1rem; color: var(--grey); max-width: 350px; text-align: right; line-height: 1.5; }

.vision-section { display: flex; gap: 60px; align-items: center; padding: 80px 5%; max-width: 1200px; margin: 0 auto; }
.vision-text { flex: 1; }
.vision-title { font-size: 2.5rem; line-height: 1.2; margin-bottom: 30px; }
.stats-row { display: flex; gap: 50px; margin-top: 40px; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 30px; }
.stat-item span { font-size: 2.5rem; font-weight: 700; display: block; line-height: 1; color: var(--black); }

.grid-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.gallery-item { display: block; cursor: pointer; transition: opacity 0.3s; }
.img-wrapper { width: 100%; aspect-ratio: 4/5; overflow: hidden; margin-bottom: 15px; background: rgba(255,255,255,0.5); border-radius: 16px; border: 1px solid rgba(255,255,255,0.2); box-shadow: var(--soft-shadow); }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover .img-wrapper img { transform: scale(1.03); }
.project-title { font-weight: 700; margin-bottom: 5px; margin-top: 15px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.testimonial-item { background: rgba(255,255,255,0.5); padding: 40px; border-radius: 20px; border: var(--soft-border); backdrop-filter: blur(10px); box-shadow: var(--soft-shadow); transition: transform 0.3s; }
.testimonial-item:hover { transform: translateY(-5px); background: rgba(255,255,255,0.8); }
.quote-icon { font-size: 1.5rem; color: var(--accent); margin-bottom: 20px; opacity: 0.8; }
.quote-author { font-weight: 700; margin-top: 20px; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.process-item { padding: 30px; border-radius: 20px; transition: all 0.3s; border: 1px solid transparent; }
.process-item:hover { background: rgba(255,255,255,0.6); border: var(--soft-border); box-shadow: var(--soft-shadow); transform: translateY(-5px); }
.step-icon { font-size: 1.8rem; margin-bottom: 20px; color: var(--black); background: rgba(26,26,26,0.05); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.step-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 15px; color: var(--black); }
.step-desc { font-size: 1rem; color: var(--grey); line-height: 1.6; margin-bottom: 20px; }
.step-list { list-style: none; padding: 0; }
.step-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #555; margin-bottom: 8px; font-family: 'Montserrat', sans-serif; }
.step-list li::before { content: ''; display: block; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* --- CONTACT PRO SECTION (SPLIT DESIGN) --- */
.contact-pro-section { padding: 80px 5%; max-width: 1300px; margin: 0 auto 100px; }
.contact-container-pro { display: flex; flex-wrap: wrap; background: #fff; border-radius: 30px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.05); }

.contact-left { flex: 1; min-width: 350px; padding: 60px; background: #1a1a1a; color: white; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.contact-left::before { content:''; position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(45deg, #1a1a1a, #2a2a2a); z-index:0; }
.contact-content-inner { position: relative; z-index: 1; }
.contact-title { font-size: 2.5rem; margin: 0 0 20px; line-height: 1.1; font-weight: 800; }
.contact-subtitle { opacity: 0.7; margin-bottom: 40px; font-size: 1rem; line-height: 1.6; }

.method-card { display: flex; align-items: center; gap: 15px; background: rgba(255,255,255,0.1); padding: 15px 20px; border-radius: 12px; margin-bottom: 15px; transition: 0.3s; cursor: pointer; border: 1px solid transparent; text-decoration: none; color: white; }
.method-card:hover { background: rgba(255,255,255,0.2); border-color: white; transform: translateX(5px); }
.method-icon { width: 40px; height: 40px; background: white; color: black; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.method-text { display: flex; flex-direction: column; }
.method-text span { font-size: 0.7rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }
.method-text strong { font-size: 1rem; }
.method-arrow { margin-left: auto; opacity: 0; transition: 0.3s; }
.method-card:hover .method-arrow { opacity: 1; transform: translateX(5px); }

.secure-badge { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; margin-top: 40px; opacity: 0.6; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.payment-row { font-size: 2rem; opacity: 0.5; margin-top: 15px; display: flex; gap: 15px; }

.contact-right { flex: 1.5; min-width: 350px; padding: 60px; background: white; }
.form-pro { display: flex; flex-direction: column; gap: 25px; }
.input-row { display: flex; gap: 20px; }
.input-row .input-group { flex: 1; }

.input-group { position: relative; margin-top: 10px; }
.input-group input, .input-group textarea, .input-group select {
    width: 100%; padding: 15px 0; border: none; border-bottom: 2px solid #eee;
    background: transparent; font-size: 1rem; font-family: 'Montserrat', sans-serif;
    transition: 0.3s; outline: none; border-radius: 0;
}
.input-group label {
    position: absolute; top: 15px; left: 0; color: #999; pointer-events: none; transition: 0.3s; font-size: 1rem;
}
.input-group input:focus, .input-group input:not(:placeholder-shown),
.input-group textarea:focus, .input-group textarea:not(:placeholder-shown),
.input-group select:focus, .input-group select:valid { border-bottom-color: var(--black); }
.input-group input:focus + label, .input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label, .input-group textarea:not(:placeholder-shown) + label {
    top: -10px; font-size: 0.75rem; color: var(--black); font-weight: 700;
}
.select-label { top: -10px !important; font-size: 0.75rem !important; color: #999; font-weight: 600; }

.btn-submit-pro {
    background: var(--black); color: white; padding: 20px; border: none; border-radius: 12px;
    font-size: 1rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; transition: 0.3s; margin-top: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.btn-submit-pro:hover { background: #333; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

/* --- FAQ --- */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.05); margin-bottom: 10px; background: rgba(255,255,255,0.3); border-radius: 12px; overflow: hidden; transition: 0.3s; }
.faq-item:hover { background: rgba(255,255,255,0.6); box-shadow: var(--soft-shadow); }
.faq-item details { padding: 20px 25px; cursor: pointer; transition: all 0.3s; }
.faq-item summary { list-style: none; font-size: 1.1rem; font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--grey); }
.faq-item details[open] summary::after { content: '-'; color: var(--black); }
.faq-answer { margin-top: 15px; color: var(--grey); font-size: 1rem; line-height: 1.6; max-width: 95%; padding-top: 10px; border-top: 1px solid rgba(0,0,0,0.03); }

/* --- ADMIN PRO STYLE --- */
#admin-trigger { position: fixed; bottom: 20px; right: 20px; padding: 10px 20px; background: #000; color: white; border-radius: 30px; font-size: 0.8rem; z-index: 9999; cursor: pointer; opacity: 0.1; transition: all 0.3s ease; font-weight: 700; }
#admin-trigger:hover { opacity: 0.8; }

#login-modal, #admin-dashboard { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 10000; justify-content: center; align-items: center; }
#login-modal { background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); }
#admin-dashboard { background: rgba(0,0,0,0.85); backdrop-filter: blur(10px); }
.login-box { background: white; padding: 40px; border-radius: 20px; width: 90%; max-width: 400px; text-align: center; }

/* Admin Layout */
.admin-layout { display: flex; width: 95%; height: 95%; background: var(--crm-bg); border-radius: 20px; overflow: hidden; box-shadow: 0 50px 100px rgba(0,0,0,0.5); }
.admin-sidebar { width: 260px; background: var(--crm-sidebar); color: #a2a3b7; padding: 30px 20px; display: flex; flex-direction: column; flex-shrink: 0; }
.admin-sidebar h2 { color: white; margin-bottom: 40px; font-size: 1.5rem; letter-spacing: 1px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
.sidebar-item { padding: 15px; cursor: pointer; transition: 0.3s; border-radius: 10px; margin-bottom: 5px; font-weight: 500; display: flex; align-items: center; gap: 15px; }
.sidebar-item:hover, .sidebar-item.active { background: #1b1b28; color: white; }
.admin-content { flex: 1; padding: 40px; overflow-y: auto; position: relative; display: flex; flex-direction: column; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.admin-toolbar { display: flex; gap: 15px; margin-bottom: 20px; }
.search-bar { flex: 1; padding: 12px 20px; border: 1px solid #ddd; border-radius: 8px; font-family: 'Montserrat', sans-serif; outline: none; }
.search-bar:focus { border-color: var(--black); }
.filter-btn { padding: 10px 20px; background: white; border: 1px solid #ddd; border-radius: 8px; cursor: pointer; font-weight: 600; transition: 0.2s; }
.filter-btn.active, .filter-btn:hover { background: var(--black); color: white; border-color: var(--black); }
.btn-export { background: #1e1e2d; color: white; border: 1px solid #333; padding: 8px 15px; border-radius: 8px; cursor: pointer; font-size: 0.8rem; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.btn-export:hover { background: #3699ff; border-color: #3699ff; }

/* NOUVEAU : ANALYTICS GRID */
.analytics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.analytics-card { background: white; padding: 20px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); position: relative; overflow: hidden; }
.ana-title { color: #888; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
.ana-val { font-size: 2rem; font-weight: 800; color: var(--black); }
.ana-icon { position: absolute; top: 20px; right: 20px; font-size: 1.5rem; opacity: 0.2; }

/* Stats & Orders */
.stats-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.stat-card { background: white; padding: 25px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.stat-val { font-size: 2rem; font-weight: 800; display: block; color: var(--black); }
.stat-label { color: #888; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

.orders-grid { display: grid; gap: 15px; overflow-y: auto; }
.order-row { background: white; padding: 20px; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: 0.2s; border-left: 5px solid #eee; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.order-row:hover { transform: translateX(5px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.order-row.status-nouveau { border-left-color: #3699ff; }
.order-row.status-contacte { border-left-color: #ffa800; }
.order-row.status-paye { border-left-color: #1bc5bd; }
.client-info strong { display: block; font-size: 1.1rem; }
.tag { padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; background: #eee; color: #555; }
.tag.nouveau { background: #e1f0ff; color: #3699ff; } 
.tag.paye { background: #c9f7f5; color: #1bc5bd; }
.tag.contacte { background: #fff4de; color: #ffa800; }

/* Modal Fiche Client (CORRIGÉ Z-INDEX) */
#client-modal { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.7); /* Fond noir semi-transparent */
    z-index: 10005; /* IMPORTANT: Au dessus du dashboard */
    justify-content: center; 
    align-items: center; 
    backdrop-filter: blur(5px); 
}
.crm-modal { background: white; width: 95%; max-width: 900px; height: 90%; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 50px 100px rgba(0,0,0,0.3); animation: fadeInUp 0.3s ease; }
.crm-header { background: #1e1e2d; color: white; padding: 20px 30px; display: flex; justify-content: space-between; align-items: center; }
.crm-header h2 { margin: 0; font-size: 1.5rem; }
.crm-status-select { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); padding: 8px; border-radius: 8px; outline: none; }
.crm-close { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.crm-body { display: flex; flex: 1; overflow: hidden; }
.crm-col-left { width: 300px; background: #f9f9f9; padding: 30px; border-right: 1px solid #eee; overflow-y: auto; }
.crm-avatar { width: 80px; height: 80px; background: #e1f0ff; color: #3699ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; font-weight: bold; }
.crm-field { margin-bottom: 20px; }
.crm-field label { display: block; font-size: 0.8rem; color: #999; margin-bottom: 5px; font-weight: 600; text-transform: uppercase; }
.crm-field input, .crm-field textarea { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 6px; font-family: 'Montserrat', sans-serif; }
.crm-field input:focus { border-color: #3699ff; outline: none; }
.crm-col-right { flex: 1; padding: 30px; display: flex; flex-direction: column; background: white; overflow-y: auto; }
.crm-tabs { display: flex; gap: 20px; border-bottom: 1px solid #eee; margin-bottom: 20px; padding-bottom: 10px; }
.crm-tab { cursor: pointer; font-weight: 600; color: #999; padding-bottom: 10px; border-bottom: 2px solid transparent; }
.crm-tab.active { color: var(--black); border-bottom-color: var(--black); }
.tab-content { display: none; flex: 1; flex-direction: column; }
.tab-content.active { display: flex; }
.note-section { flex: 1; display: flex; flex-direction: column; gap: 15px; }
.note-list { flex: 1; overflow-y: auto; border: 1px solid #eee; border-radius: 10px; padding: 15px; background: #fcfcfc; max-height: 300px; }
.note-item { background: white; padding: 10px; border-radius: 8px; border: 1px solid #eee; margin-bottom: 10px; font-size: 0.9rem; }
.note-item small { display: block; color: #ccc; font-size: 0.7rem; margin-top: 5px; }
.note-input-area { display: flex; gap: 10px; }
.note-input-area input { flex: 1; padding: 12px; border: 1px solid #ddd; border-radius: 8px; }
.btn-add-note { background: #3699ff; color: white; border: none; padding: 0 20px; border-radius: 8px; cursor: pointer; font-weight: 600; }
.task-list { flex: 1; overflow-y: auto; padding: 10px; border: 1px solid #eee; border-radius: 10px; margin-bottom: 15px; }
.task-item { display: flex; align-items: center; gap: 10px; padding: 10px; background: #fff; border-bottom: 1px solid #eee; transition: 0.2s; }
.task-item:hover { background: #f9f9f9; }
.task-item input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; }
.task-item span { flex: 1; font-size: 0.95rem; color: #333; transition: 0.2s; }
.task-item.completed span { text-decoration: line-through; color: #ccc; }
.task-delete { color: #ccc; cursor: pointer; font-size: 0.9rem; }
.task-delete:hover { color: #f64e60; }
.crm-footer { padding: 20px 30px; border-top: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; background: white; }
.btn-save { background: #1bc5bd; color: white; padding: 12px 25px; border-radius: 8px; border: none; font-weight: 600; cursor: pointer; }
.btn-save:hover { background: #18b4ac; }
.btn-delete-crm { color: #f64e60; background: #ffe2e5; padding: 12px 25px; border-radius: 8px; border: none; font-weight: 600; cursor: pointer; }

/* Succès Modal */
#success-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 10005; justify-content: center; align-items: center; backdrop-filter: blur(5px); }
.success-content { background: rgba(255,255,255,0.95); padding: 50px; border-radius: 24px; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.1); width: 90%; max-width: 400px; animation: fadeInUp 0.4s ease; border: 1px solid white; }
.success-icon { font-size: 3.5rem; color: #25D366; margin-bottom: 20px; animation: pulse 2s infinite; }
.success-title { font-size: 1.5rem; margin-bottom: 10px; font-weight: 700; }
.success-text { font-size: 1rem; color: #555; margin-bottom: 30px; line-height: 1.5; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }

/* Cookie */
#cookie-banner { position: fixed; bottom: 30px; left: 30px; right: 30px; max-width: 450px; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); padding: 30px; border-radius: 20px; box-shadow: var(--soft-shadow); z-index: 10001; display: none; border: 1px solid rgba(255,255,255,0.5); animation: fadeInUp 0.5s ease-out; }
.cookie-buttons { display: flex; gap: 15px; margin-top: 20px; }
.cookie-btn { padding: 10px 25px; border-radius: 30px; cursor: pointer; font-size: 0.9rem; transition: 0.3s; font-weight: 700; }
.cookie-accept { background: var(--black); color: white; border: 1px solid var(--black); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.cookie-refuse { background: transparent; border: 1px solid #ddd; }

/* Footer */
footer { padding: 80px 5%; text-align: center; margin-top: 60px; background: rgba(255,255,255,0.8); backdrop-filter: blur(15px); border-top: 1px solid rgba(255,255,255,0.3); }
.footer-logo img { height: 120px; width: auto; margin: 0 auto 20px; display: block; }
.social-row { display: flex; justify-content: center; gap: 30px; margin: 30px 0; }
.social-link { color: var(--black); font-size: 1.5rem; transition: all 0.3s; padding: 15px; border-radius: 50%; background: rgba(0,0,0,0.03); }
.social-link:hover { background: var(--black); color: white; transform: translateY(-3px); }

/* MOBILE */
@media (max-width: 900px) {
    .analytics-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; margin-bottom: 20px; } .hero-subtitle { font-size: 1rem; padding: 0 10px; line-height: 1.6; } header { padding: 100px 5% 60px; }
    nav { padding: 10px 5%; } .logo-img { height: 50px; } .nav-btn { padding: 6px 18px; font-size: 0.8rem; }
    .pricing-grid { grid-template-columns: 1fr; gap: 40px; } 
    .pricing-card.featured { transform: scale(1); } .pricing-card.featured:hover { transform: translateY(-5px); }
    .grid-gallery, .testimonials-grid, .process-grid { grid-template-columns: 1fr; gap: 30px; }
    .section-padding { padding: 50px 20px; } .section-header { flex-direction: column; align-items: flex-start; gap: 15px; } .section-desc { text-align: left; max-width: 100%; }
    .vision-section { flex-direction: column; gap: 40px; text-align: center; } .stats-row { justify-content: center; flex-wrap: wrap; gap: 30px; }
    .contact-container-pro { flex-direction: column; } .contact-left, .contact-right { min-width: 100%; padding: 40px 20px; } .input-row { flex-direction: column; gap: 25px; } .trust-badge { display: none; }
    .admin-layout { flex-direction: column; overflow-y: auto; } .admin-sidebar { width: 100%; height: auto; flex-direction: row; overflow-x: auto; align-items: center; padding: 15px; gap: 10px; } .admin-sidebar h2 { display: none; } .sidebar-item { margin: 0; white-space: nowrap; font-size: 0.8rem; } .admin-content { padding: 20px; } .stats-container { grid-template-columns: 1fr; gap: 15px; } .crm-modal { width: 100%; height: 100%; border-radius: 0; } .crm-body { flex-direction: column; overflow-y: auto; } .crm-col-left { width: 100%; border-right: none; border-bottom: 1px solid #eee; height: auto; }
    #cookie-banner { bottom: 10px; left: 10px; right: 10px; padding: 20px; border-radius: 15px; } .cookie-buttons { flex-direction: column; } .cookie-btn { width: 100%; }
}