
@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, sans-serif; background-color: #F5F5F7; color: #1D1D1F; scroll-behavior: smooth; }

/* NAVBAR & MOBILE MENU */
.navbar { position: fixed; top: 15px; left: 50%; transform: translateX(-50%); width: calc(100% - 30px); max-width: 1080px; height: 60px; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(25px) saturate(200%); -webkit-backdrop-filter: blur(25px) saturate(200%); border-radius: 30px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: space-between; padding: 0 15px 0 20px; z-index: 1000; border: 1px solid rgba(255,255,255,0.5); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 800; color: #1D1D1F; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.nav-logo img { width: 32px; height: 32px; border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 5px; }
.nav-link { color: #86868B; text-decoration: none; font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 20px; transition: 0.3s; }
.nav-links:hover .nav-link { opacity: 0.4; filter: blur(1px); }
.nav-links .nav-link:hover { opacity: 1; filter: blur(0); background: rgba(0,0,0,0.04); color: #0071E3; }
.nav-link.active { color: #1D1D1F; font-weight: 600; }

/* BOUTONS */
.btn-primary { background: #0071E3; color: #FFF !important; text-decoration: none; font-weight: 600; font-size: 14px; padding: 10px 20px; 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); }
.btn-secondary { background: #E8F2FF; color: #0071E3 !important; text-decoration: none; font-weight: 600; font-size: 14px; padding: 10px 20px; border-radius: 30px; transition: all 0.3s; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; border: none; }
.btn-secondary:hover { background: #D0E3FF; transform: scale(1.03); }

/* MOBILE BURGER */
.burger { display: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 5px; background: none; border: none; }
.burger span { display: block; width: 22px; height: 2px; background: #1D1D1F; border-radius: 2px; transition: 0.3s; }
.mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; opacity: 0; pointer-events: none; transition: 0.4s; transform: translateY(-20px); }
.mobile-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mobile-menu a { font-size: 22px; font-weight: 600; color: #1D1D1F; text-decoration: none; }

/* LAYOUT & HEROS */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.hero { padding: 160px 20px 60px; text-align: center; }
.hero-tag { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #86868B; margin-bottom: 15px; display: block; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(38px, 6vw, 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 30px; line-height: 1.6; }

/* CARTES & GRILLES */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; width: 100%; }
.card { background: #FFFFFF; border-radius: 24px; padding: 30px; text-align: left; text-decoration: none; color: inherit; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: all 0.4s; border: 1px solid rgba(0,0,0,0.02); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-6px); box-shadow: 0 15px 30px rgba(0,0,0,0.06); }
.card-icon { font-size: 28px; margin-bottom: 15px; display: inline-block; }
.card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: #1D1D1F; }
.card p { font-size: 14px; color: #86868B; line-height: 1.5; flex: 1; }

/* ONE PAGE SECTIONS */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split-section img { width: 100%; height: 350px; object-fit: cover; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

/* STATS */
.stats-wrapper { overflow: hidden; padding: 60px 0; background: #FFF; margin: 60px 0; }
.stats-container { display: flex; gap: 30px; padding: 0 20px; justify-content: center; flex-wrap: wrap; max-width: 1140px; margin: 0 auto; }
.stat-box { flex: 1; min-width: 200px; padding: 30px 20px; background: #F5F5F7; border-radius: 24px; text-align: center; }
.stat-num { font-size: clamp(40px, 5vw, 56px); font-weight: 700; color: #0071E3; font-family: 'Playfair Display', serif; }
.stat-lbl { font-size: 12px; font-weight: 600; color: #86868B; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* TABS (Statuts) */
.tab-container { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.tab-btn { background: #E8F2FF; color: #0071E3; border: none; padding: 10px 20px; border-radius: 20px; font-weight: 600; cursor: pointer; transition: 0.3s; font-size: 15px; }
.tab-btn.active { background: #0071E3; color: #fff; }
.tab-content { display: none; animation: fade 0.4s ease; }
.tab-content.active { display: block; }
@keyframes fade { from {opacity:0; transform:translateY(10px);} to {opacity:1; transform:translateY(0);} }

/* ACCORDEONS (Statuts) */
.accordion { background: #FFF; border-radius: 16px; margin-bottom: 12px; border: 1px solid rgba(0,0,0,0.04); overflow: hidden; }
.accordion-header { padding: 18px 20px; cursor: pointer; font-weight: 600; color: #1D1D1F; display: flex; justify-content: space-between; align-items: center; }
.accordion-body { padding: 0 20px 20px; display: none; color: #4A5B7A; line-height: 1.6; font-size: 14px; }
.accordion.active .accordion-body { display: block; }
.art-title { font-weight: 600; color: #1D1D1F; margin-top: 10px; display: block; }

/* BADGES */
.badge { display: inline-block; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 10px; margin-bottom: 10px; }
.badge-blue { background: #E8F2FF; color: #0071E3; }
.badge-purple { background: #F3E8FF; color: #7B00E3; }

/* FOOTER */
.footer { background: #1D1D1F; color: #F5F5F7; padding: 60px 20px 30px; margin-top: 80px; border-radius: 30px 30px 0 0; }
.footer-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.footer h4 { color: #86868B; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.footer a { color: #F5F5F7; text-decoration: none; font-size: 14px; transition: color 0.2s; display: block; margin-bottom: 10px; }
.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; max-width: 1140px; margin: 0 auto; flex-wrap: wrap; gap: 10px; }

/* RESPONSIVE */
@media (max-width: 800px) {
  .nav-links, .navbar .btn-primary { display: none; }
  .burger { display: flex; }
  .split-section { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .split-section img { height: 250px; }
}
