
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=SF+Pro+Display:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: hidden; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background-color: #F5F5F7; color: #1D1D1F; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

/* NAVBAR */
.navbar { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 1080px; height: 64px; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(25px) saturate(200%); -webkit-backdrop-filter: blur(25px) saturate(200%); border-radius: 40px; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04); display: flex; align-items: center; justify-content: space-between; padding: 0 10px 0 24px; z-index: 1000; border: 1px solid rgba(255, 255, 255, 0.5); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 800; color: #1D1D1F; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 36px; height: 36px; border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 5px; transition: all 0.3s ease; }
.nav-link { color: #86868B; text-decoration: none; font-size: 14px; font-weight: 500; padding: 10px 18px; border-radius: 20px; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.nav-links:hover .nav-link { opacity: 0.4; filter: blur(1px); transform: scale(0.95); }
.nav-links .nav-link:hover { opacity: 1; filter: blur(0); transform: scale(1.05); background: rgba(0, 0, 0, 0.04); color: #0071E3; }
.nav-link.active { color: #1D1D1F; font-weight: 600; }
.btn-primary { background: #0071E3; color: #FFF !important; text-decoration: none; font-weight: 600; font-size: 14px; padding: 12px 24px; border-radius: 30px; transition: all 0.3s; display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; border: none; }
.btn-primary:hover { background: #0077ED; transform: scale(1.03); box-shadow: 0 8px 20px rgba(0, 113, 227, 0.3); }

/* LAYOUT & HEROS */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.hero { padding: 180px 24px 80px; text-align: center; }
.hero-tag { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #86868B; margin-bottom: 15px; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 7vw, 72px); font-weight: 800; color: #1D1D1F; letter-spacing: -1px; margin-bottom: 20px; line-height: 1.05; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #1D1D1F; margin-bottom: 20px; line-height: 1.2; }
.subtitle { font-size: 18px; color: #86868B; max-width: 650px; margin: 0 auto 40px; line-height: 1.6; }

/* CARTES & GRILLES */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; width: 100%; margin-bottom: 80px; }
.card { background: #FFFFFF; border-radius: 28px; padding: 32px; text-align: left; text-decoration: none; color: inherit; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid rgba(0,0,0,0.02); display: flex; flex-direction: column; overflow: hidden; position: relative; }
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06); }
.card-icon { font-size: 32px; margin-bottom: 20px; display: inline-block; }
.card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; color: #1D1D1F; }
.card p { font-size: 15px; color: #86868B; line-height: 1.6; flex: 1; }

/* SPLIT SECTIONS (Texte + Image) */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 100px; }
.split-section img { width: 100%; height: 400px; object-fit: cover; border-radius: 32px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
@media (max-width: 800px) { .split-section { grid-template-columns: 1fr; gap: 30px; } }

/* STATS */
.stats-wrapper { overflow: hidden; padding: 40px 0; width: 100vw; background: #FFF; margin-bottom: 80px; }
.stats-container { display: flex; gap: 40px; width: max-content; padding: 0 50px; }
.stat-box { min-width: 280px; padding: 40px; background: #F5F5F7; border-radius: 28px; text-align: center; }
.stat-num { font-size: 56px; font-weight: 700; color: #0071E3; letter-spacing: -2px; font-family: 'Playfair Display', serif; }
.stat-lbl { font-size: 13px; font-weight: 600; color: #86868B; text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }

/* FORMULAIRES & ACCORDEONS */
input, select, textarea { width: 100%; background: #F5F5F7; border: 1px solid transparent; border-radius: 16px; padding: 16px 20px; font-family: 'Inter', sans-serif; font-size: 15px; color: #1D1D1F; margin-top: 8px; margin-bottom: 20px; outline: none; transition: 0.3s; }
input:focus, select:focus, textarea:focus { background: #FFFFFF; border-color: #0071E3; box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1); }
label { font-size: 12px; font-weight: 600; color: #86868B; text-transform: uppercase; letter-spacing: 1px; }
.accordion { background: #FFF; border-radius: 20px; margin-bottom: 15px; border: 1px solid rgba(0,0,0,0.04); overflow: hidden; }
.accordion-header { padding: 20px 24px; cursor: pointer; font-weight: 600; color: #1D1D1F; display: flex; justify-content: space-between; }
.accordion-body { padding: 0 24px 24px; display: none; color: #86868B; line-height: 1.6; }
.accordion.active .accordion-body { display: block; }

/* BADGES (Actus/Docs) */
.badge { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 6px 12px; border-radius: 12px; margin-bottom: 12px; }
.badge-blue { background: #E8F2FF; color: #0071E3; }
.badge-purple { background: #F3E8FF; color: #7B00E3; }
.badge-green { background: #E8FFEF; color: #00A344; }
.badge-orange { background: #FFF0E8; color: #E36400; }

/* FOOTER */
.footer { background: #1D1D1F; color: #F5F5F7; padding: 80px 24px 40px; margin-top: 100px; border-radius: 40px 40px 0 0; }
.footer-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer h4 { color: #86868B; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer a { color: #F5F5F7; text-decoration: none; font-size: 14px; transition: color 0.2s; display: block; margin-bottom: 12px; }
.footer a:hover { color: #0071E3; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; color: #86868B; }

/* HIDE ADMIN */
.admin-only { display: none !important; }
