/* ============================================
   CROUS SINE SALOUM - GLOBAL STYLES
   Modernisme Minimaliste Africain avec motifs Gemini
   Version 3.0 - Mise à jour complète
   ============================================ */

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

/* ============================================
   CSS VARIABLES - DESIGN SYSTEM
   ============================================ */
:root {
  /* Colors - Palette Modernisme Minimaliste Africain */
  --color-white: #FFFFFF;
  --color-bg: #FAFAF8;
  --color-ocre: #C67C4E;
  --color-ocre-light: #E8D5C4;
  --color-ocre-dark: #A0623A;
  --color-navy: #1B3A6B;
  --color-navy-light: #2D5A8C;
  --color-navy-dark: #0F2340;
  --color-grey: #4A4A4A;
  --color-grey-light: #E8E8E8;
  --color-grey-lighter: #F5F5F5;
  --color-success: #2E7D32;
  --color-success-light: #E8F5E9;
  
  /* Couleurs CROUS */
  --s-900: #2c1f17;
  --s-800: #3d2b1f;
  --s-700: #5a3d2c;    /* Marron principal pour les textes */
  --s-600: #7a5240;
  --s-500: #9a6e58;
  --s-400: #b98d78;
  --s-300: #d0b09f;
  --s-200: #e6d5ca;
  --s-100: #f2e9e3;
  --s-50: #faf5f1;
  --g-800: #1c3228;
  --g-700: #264438;    /* Vert foncé principal pour les textes */
  --g-600: #335748;
  --g-500: #426b5a;
  --g-400: #5a8a74;
  --g-300: #7faa96;
  --g-200: #b3cfc4;
  --g-100: #dceee8;
  --g-50: #f0f8f4;
  --cream: #fdfaf7;
  --ink: #1e1610;
  --muted: #7a6860;
  --light: #b0a099;
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --ff-d: 'Playfair Display', serif;
  --ff-b: 'Inter', sans-serif;
  
  /* Font Sizes */
  --fs-h1: 3.5rem;
  --fs-h2: 2.5rem;
  --fs-h3: 1.75rem;
  --fs-h4: 1.25rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 36px;
  
  /* Transitions */
  --transition: all 0.3s ease-in-out;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
  --sh-xs: 0 1px 4px rgba(44,31,23,.05);
  --sh-sm: 0 2px 12px rgba(44,31,23,.07);
  --sh-md: 0 8px 32px rgba(44,31,23,.09);
  --sh-lg: 0 20px 60px rgba(44,31,23,.12);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--s-700);  /* Changé: texte en marron #5a3d2c */
  background-color: var(--color-bg);
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - COULEURS MARRON ET VERT FONCÉ
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--g-700);  /* Changé: titres en vert foncé #264438 */
}

h1 {
  font-size: var(--fs-h1);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

p {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  color: var(--s-700);  /* Changé: paragraphes en marron #5a3d2c */
}

a {
  color: var(--g-700);  /* Changé: liens en vert foncé #264438 */
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--s-700);  /* Changé: hover en marron #5a3d2c */
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-2xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  position: relative;
  padding-bottom: var(--spacing-lg);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-ocre) 0%, var(--color-navy) 100%);
}

/* ============================================
   LIGNE VERTICALE OCRE SIGNATURE
   ============================================ */
.vertical-line {
  position: fixed;
  left: 30px;
  top: 0;
  width: 4px;
  height: 100vh;
  background: linear-gradient(180deg, var(--color-ocre) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* ============================================
   MOTIFS GEMINI - SYSTÈME COMPLET
   ============================================ */

/* Motif principal - Style Gemini pour sections */
.gemini-bg {
  background: linear-gradient(135deg, #fdfaf7 0%, #f2e9e3 100%);
  position: relative;
  overflow: hidden;
}

/* Vagues organiques */
.gemini-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(90,138,116,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.gemini-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(90,138,116,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Points décoratifs */
.gemini-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(90,138,116,0.2) 2px, transparent 2px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Lignes diagonales */
.gemini-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, 
                    rgba(90,138,116,0.08) 0px, 
                    rgba(90,138,116,0.08) 3px, 
                    transparent 3px, 
                    transparent 50px);
  pointer-events: none;
  z-index: 0;
}

/* Cercles concentriques */
.gemini-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.gemini-circles::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  border: 2px solid rgba(90,138,116,0.1);
  border-radius: 50%;
}

.gemini-circles::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  height: 65%;
  border: 2px solid rgba(90,138,116,0.08);
  border-radius: 50%;
}

.gemini-circles .circle-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  height: 45%;
  border: 1.5px solid rgba(90,138,116,0.06);
  border-radius: 50%;
}

/* Bulles flottantes */
.gemini-bubbles div {
  position: absolute;
  background: radial-gradient(circle, rgba(90,138,116,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatBubble 8s ease-in-out infinite;
}

.gemini-bubbles div:nth-child(1) {
  width: 280px;
  height: 280px;
  top: 5%;
  left: -5%;
  animation-delay: 0s;
  opacity: 0.6;
}

.gemini-bubbles div:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: -3%;
  animation-delay: 2s;
  opacity: 0.5;
}

.gemini-bubbles div:nth-child(3) {
  width: 140px;
  height: 140px;
  top: 40%;
  right: 10%;
  animation-delay: 4s;
  opacity: 0.4;
}

.gemini-bubbles div:nth-child(4) {
  width: 110px;
  height: 110px;
  bottom: 30%;
  left: 5%;
  animation-delay: 6s;
  opacity: 0.5;
}

/* Croix décoratives */
.gemini-cross {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(90deg, 
      rgba(90,138,116,0.06) 0px, 
      rgba(90,138,116,0.06) 1px, 
      transparent 1px, 
      transparent 80px),
    repeating-linear-gradient(0deg, 
      rgba(90,138,116,0.06) 0px, 
      rgba(90,138,116,0.06) 1px, 
      transparent 1px, 
      transparent 80px);
  pointer-events: none;
  z-index: 0;
}

/* Texture grain (noise) */
.gemini-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Version light pour OMNI SI */
.gemini-bg-light {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--white) 0%, var(--g-50) 100%);
}

.gemini-bg-light::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 55%;
  height: 55%;
  background: radial-gradient(ellipse, rgba(90,138,116,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.gemini-bg-light::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 45%;
  height: 45%;
  background: radial-gradient(ellipse, rgba(90,138,116,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Points light */
.gemini-dots-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(90,138,116,0.15) 2px, transparent 2px);
  background-size: 35px 35px;
  pointer-events: none;
  z-index: 0;
}

/* Vagues horizontales */
.gemini-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: repeating-linear-gradient(transparent 0px, transparent 29px, rgba(90,138,116,0.08) 29px, rgba(90,138,116,0.08) 30px);
  pointer-events: none;
  z-index: 0;
}

.gemini-waves-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: repeating-linear-gradient(180deg, rgba(90,138,116,0.05) 0px, rgba(90,138,116,0.05) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
  z-index: 0;
}

/* Bulles light */
.gemini-bubbles-light div {
  position: absolute;
  background: radial-gradient(circle, rgba(90,138,116,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatBubbleLight 10s ease-in-out infinite;
}

.gemini-bubbles-light div:nth-child(1) {
  width: 220px;
  height: 220px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
  opacity: 0.5;
}

.gemini-bubbles-light div:nth-child(2) {
  width: 160px;
  height: 160px;
  bottom: 15%;
  right: -2%;
  animation-delay: 3s;
  opacity: 0.4;
}

.gemini-bubbles-light div:nth-child(3) {
  width: 110px;
  height: 110px;
  top: 50%;
  right: 15%;
  animation-delay: 6s;
  opacity: 0.45;
}

.gemini-bubbles-light div:nth-child(4) {
  width: 80px;
  height: 80px;
  bottom: 40%;
  left: 8%;
  animation-delay: 8s;
  opacity: 0.35;
}

/* Animations */
@keyframes floatBubble {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.05); }
}

@keyframes floatBubbleLight {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.04); }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--g-700);  /* Changé: logo en vert foncé */
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  color: var(--g-700);  /* Changé: en vert foncé */
}

.logo-text span {
  color: var(--color-ocre);
  font-size: 0.9rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
}

nav a {
  color: var(--g-700);  /* Changé: navigation en vert foncé */
  font-weight: 500;
  position: relative;
  padding-bottom: 0.25rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-ocre);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  min-width: 200px;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  list-style: none;
  margin-top: var(--spacing-sm);
  overflow: hidden;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  border-bottom: 1px solid var(--color-grey-light);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--s-700);  /* Changé: dropdown en marron */
  font-size: var(--fs-small);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--color-ocre-light);
  color: var(--g-700);  /* Changé: hover en vert foncé */
  padding-left: var(--spacing-lg);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--g-700);  /* Changé: en vert foncé */
}
/* ============================================
   HERO CARROUSEL PLEINE LARGEUR
   ============================================ */
.hero-fullwidth {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  transform: scale(1);
  transition: transform 8s ease-out, opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1.05);
}

/* OVERLAY CLAIR - Opacité réduite pour images plus claires */
.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(61,43,31,0.12) 0%, rgba(28,50,40,0.12) 100%);
  /* Opacité réduite de 0.85 à 0.12 pour images très claires */
  z-index: 1;
}

.hero-overlay-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
}

.hero-content-wrapper {
  max-width: 600px;
  animation: heroContentFadeIn 1s ease-out;
}

@keyframes heroContentFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 8px 20px 8px 12px;
  margin-bottom: 32px;
}
.hero-logo-pill img{width:40px;height:40px;object-fit:contain;border-radius:50%;background:#fff;padding:4px;}
.hero-logo-pill span{
  font-size:13px;
  color: var(--g-700);  /* Vert foncé */
  letter-spacing:.5px;
  font-weight:600;
}

.hero-title {
  font-family: var(--ff-d);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--g-700);  /* Vert foncé */
  margin-bottom: 20px;
  text-shadow: none;
}
.hero-title em { 
  font-style: italic; 
  color: var(--s-700);  /* Marron */
}

.hero-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--s-700);  /* Marron */
  margin-bottom: 36px;
  max-width: 440px;
  text-shadow: none;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--g-700);  /* Vert foncé */
  color: #fff;
  font-family: var(--ff-b);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .25s, transform .2s;
}
.btn-hero-primary:hover { 
  background: var(--s-700);  /* Marron au survol */
  transform: translateY(-2px); 
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--s-700);  /* Marron */
  font-family: var(--ff-b);
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid var(--s-300);
  text-decoration: none;
  transition: all .25s;
}
.btn-hero-secondary:hover { 
  border-color: var(--s-700); 
  color: var(--g-700);
  background: rgba(0,0,0,0.03);
}

/* Navigation carrousel */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--g-700);  /* Vert foncé */
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
}
.slider-arrow:hover { 
  background: var(--g-700); 
  border-color: var(--g-700); 
  color: white; 
  transform: translateY(-50%) scale(1.05); 
}
.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active { 
  width: 30px; 
  border-radius: 5px; 
  background: var(--g-700);  /* Vert foncé */
}
.slider-dot:hover { 
  background: var(--s-700);  /* Marron */
}

.slider-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 20;
  color: var(--s-700);  /* Marron */
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--g-700), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-float-logo {
  position: absolute;
  top: 100px;
  right: 48px;
  background: white;
  border-radius: var(--r-md);
  padding: 16px;
  box-shadow: var(--sh-lg);
  z-index: 15;
  animation: floatLogo 3s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-float-logo img { width: 60px; height: 60px; object-fit: contain; }

.hero-stats-card {
  position: absolute;
  bottom: 32px;
  left: 48px;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 16px 22px;
  box-shadow: var(--sh-md);
  display: flex;
  gap: 14px;
  align-items: center;
  z-index: 15;
}
.hero-stats-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--g-100); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.hero-stats-number { 
  font-family: var(--ff-d); 
  font-size: 26px; 
  font-weight: 700; 
  color: var(--g-700);  /* Vert foncé */
  line-height: 1; 
}
.hero-stats-label { 
  font-size: 11px; 
  color: var(--s-700);  /* Marron */
  margin-top: 3px; 
}

/* Responsive Hero */
@media (max-width: 1024px) {
  .hero-fullwidth { min-height: 600px; }
  .hero-container { padding: 0 32px; }
  .hero-content-wrapper { max-width: 500px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 22px; }
  .slider-arrow.prev { left: 20px; }
  .slider-arrow.next { right: 20px; }
  .hero-stats-card { left: 32px; bottom: 20px; padding: 12px 20px; }
  .hero-float-logo { top: 80px; right: 32px; padding: 12px; }
  .hero-float-logo img { width: 45px; height: 45px; }
}

@media (max-width: 768px) {
  .hero-fullwidth { min-height: 550px; }
  .hero-container { padding: 0 20px; }
  .hero-content-wrapper { max-width: 100%; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-logo-pill { margin-left: auto; margin-right: auto; }
  .hero-logo-pill span { color: var(--g-700); }
  .hero-stats-card { display: none; }
  .hero-float-logo { top: auto; bottom: 80px; right: 20px; left: auto; transform: scale(0.8); }
  .slider-arrow { width: 35px; height: 35px; font-size: 18px; }
  .slider-dots { bottom: 20px; }
}

@media (max-width: 640px) {
  .hero-fullwidth { min-height: 500px; }
  .hero-title { font-size: 32px; }
  .hero-description { font-size: 14px; }
  .btn-hero-primary, .btn-hero-secondary { padding: 10px 20px; font-size: 13px; }
  .slider-arrow { width: 30px; height: 30px; }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }
  .hero-float-logo { transform: scale(0.7); bottom: 60px; right: 10px; }
  .hero-stats-number { font-size: 20px; }
  .hero-stats-label { font-size: 9px; }
}
/* ============================================
   MISSIONS SECTION - STYLES MODERNES
   ============================================ */
.missions-section {
  margin-top: 80px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(90,138,116,0.05), rgba(90,138,116,0.02));
  border-radius: var(--r-xl);
  border: 1px solid var(--s-100);
  backdrop-filter: blur(4px);
}

.missions-header {
  text-align: center;
  margin-bottom: 40px;
}

.missions-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--g-700), var(--g-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: pulseIcon 2s infinite;
}

.missions-icon i {
  font-size: 32px;
  color: white;
}

@keyframes pulseIcon {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(51,87,72,0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(51,87,72,0);
  }
}

.missions-header h3 {
  font-family: var(--ff-d);
  font-size: 28px;
  color: var(--g-700);  /* Changé: titre en vert foncé */
  margin-bottom: 10px;
}

.missions-header p {
  font-size: 14px;
  color: var(--s-700);  /* Changé: texte en marron */
}

.missions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mission-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid var(--s-100);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(90,138,116,0.1), transparent);
  transition: left 0.5s ease;
}

.mission-card:hover::before {
  left: 100%;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--g-200);
}

.mission-icon {
  width: 60px;
  height: 60px;
  background: var(--g-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
  background: var(--g-700);
  transform: scale(1.1);
}

.mission-icon i {
  font-size: 28px;
  color: var(--g-700);
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon i {
  color: white;
}

.mission-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--g-700);  /* Changé: titre en vert foncé */
  margin-bottom: 8px;
}

.mission-content p {
  font-size: 12px;
  color: var(--s-700);  /* Changé: texte en marron */
  line-height: 1.5;
  margin: 0;
}

/* Animation d'entrée des cartes */
.svc-card {
  animation: cardGlow 0.6s ease-out;
}

@keyframes cardGlow {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive missions */
@media (max-width: 1024px) {
  .missions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .missions-grid {
    grid-template-columns: 1fr;
  }
  
  .missions-section {
    padding: 24px;
  }
  
  .missions-header h3 {
    font-size: 24px;
  }
}
/* ============================================
   SECTION SERVICES
   ============================================ */
.svc-sec {
  position: relative;
  overflow: hidden;
  padding: 96px 48px;
}

.svc-in {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sec-hd {
  max-width: 1160px;
  margin: 0 auto 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.sec-ey {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g-700);  /* Changé: en vert foncé */
  font-weight: 600;
  margin-bottom: 10px;
}

.sec-tt {
  font-family: var(--ff-d);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: var(--g-700);  /* Changé: titre en vert foncé */
  line-height: 1.15;
}

.sec-sb {
  font-size: 15px;
  color: var(--s-700);  /* Changé: texte en marron */
  line-height: 1.7;
  max-width: 320px;
  text-align: right;
}

.svc-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 34px 26px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--s-100);
  box-shadow: var(--sh-xs);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, var(--g-700), var(--s-700));
  opacity: 0;
  transition: opacity .4s ease;
  border-radius: var(--r-lg);
}

.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
}

.svc-card:hover::after {
  opacity: 1;
}

.svc-n {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--ff-d);
  font-size: 44px;
  font-weight: 700;
  color: var(--s-100);
  line-height: 1;
  transition: color .3s;
  z-index: 1;
}

.svc-card:hover .svc-n {
  color: rgba(255,255,255,.12);
}

.svc-ic {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--g-50);
  border: 1px solid var(--g-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  transition: background .3s, border-color .3s;
}

.svc-card:hover .svc-ic {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.2);
}

.svc-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--ff-d);
  font-size: 21px;
  font-weight: 700;
  color: var(--g-700);  /* Changé: titre en vert foncé */
  margin-bottom: 10px;
  transition: color .3s;
}

.svc-card:hover h3 {
  color: #fff;
}

.svc-card p {
  position: relative;
  z-index: 1;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--s-700);  /* Changé: texte en marron */
  flex: 1;
  transition: color .3s;
}

.svc-card:hover p {
  color: rgba(255,255,255,.72);
}

.svc-arr {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--g-700);  /* Changé: en vert foncé */
  transition: color .3s, gap .3s;
}

.svc-card:hover .svc-arr {
  color: rgba(255,255,255,.85);
  gap: 10px;
}

/* ============================================
   SECTION OMNI SI
   ============================================ */
.omni-sec {
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}

.omni-in {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.omni-header {
  text-align: center;
  margin-bottom: 56px;
}

.omni-slogan {
  font-family: var(--ff-d);
  font-size: 18px;
  font-style: italic;
  color: var(--g-700);  /* Changé: en vert foncé */
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--s-200);
  display: inline-block;
}

.omni-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.omni-badge {
  background: var(--g-700);  /* Changé: fond vert foncé */
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.omni-content h2 {
  font-family: var(--ff-d);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--g-700);  /* Changé: titre en vert foncé */
}

.omni-content h2 span {
  color: var(--s-700);  /* Changé: span en marron */
}

.omni-features {
  list-style: none;
  margin: 28px 0;
}

.omni-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--s-100);
  font-size: 14px;
  color: var(--s-700);  /* Changé: texte en marron */
}

.omni-features li:last-child {
  border-bottom: none;
}

.feature-check {
  width: 24px;
  height: 24px;
  background: var(--g-700);  /* Changé: fond vert foncé */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
}

.omni-stats-small {
  display: flex;
  gap: 24px;
  margin: 28px 0;
}

.omni-stat-small {
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--r-md);
  text-align: center;
  flex: 1;
  box-shadow: var(--sh-sm);
}

.omni-stat-number {
  font-family: var(--ff-d);
  font-size: 28px;
  font-weight: 700;
  color: var(--g-700);  /* Changé: chiffres en vert foncé */
}

.omni-stat-label {
  font-size: 11px;
  color: var(--s-700);  /* Changé: label en marron */
}

.stat-progress {
  height: 4px;
  background: var(--s-100);
  border-radius: 4px;
  margin-top: 10px;
  overflow: hidden;
}

.stat-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--g-700), var(--g-500));
  border-radius: 4px;
  transition: width 1.5s ease;
}

.omni-qr-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  text-align: center;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--s-100);
}

.omni-qr-placeholder {
  display: inline-block;
  margin-bottom: 20px;
}

.omni-qr-card h3 {
  font-family: var(--ff-d);
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--g-700);  /* Changé: titre en vert foncé */
}

.omni-qr-card p {
  font-size: 13px;
  color: var(--s-700);  /* Changé: texte en marron */
  margin-bottom: 20px;
}

.qr-info {
  background: var(--g-50);
  padding: 14px;
  border-radius: var(--r-md);
  margin-top: 20px;
}

.qr-info p {
  font-size: 12px;
  margin: 0;
  color: var(--g-700);
}

/* Animation bouton pulse */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(38,68,56,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(38,68,56,0); }
}

.floating-card {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.pulse-slow {
  animation: pulseSlow 3s ease-in-out infinite;
}

@keyframes pulseSlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* ============================================
   SECTION DIRECTEUR
   ============================================ */
.dir-sec {
  background: var(--white);
  padding: 96px 48px;
}

.dir-in {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: center;
}

.dir-img-wrap {
  position: relative;
}

.dir-img-bg {
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: var(--g-50);
  border-radius: var(--r-xl);
  border: 1px solid var(--g-200);
}

.dir-img {
  position: relative;
  z-index: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--sh-md);
}

.dir-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.dir-name-tag {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: var(--s-700);
  color: #fff;
  border-radius: 100px;
  padding: 9px 22px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--sh-sm);
}

.dir-txt h2 {
  font-family: var(--ff-d);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--g-700);  /* Changé: titre en vert foncé */
  line-height: 1.2;
  margin-bottom: 26px;
}

.dir-quote {
  position: relative;
  padding: 26px 28px;
  background: var(--s-50);
  border-radius: var(--r-md);
  border-left: 3px solid var(--s-300);
  margin-bottom: 28px;
  box-shadow: var(--sh-xs);
}

.dir-quote::before {
  content: '"';
  font-family: var(--ff-d);
  font-size: 72px;
  line-height: .55;
  color: var(--s-200);
  position: absolute;
  top: 22px;
  left: 20px;
}

.dir-quote p {
  font-family: var(--ff-d);
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: var(--s-700);  /* Changé: citation en marron */
  padding-left: 24px;
}

.dir-sig {
  font-size: 14px;
  font-weight: 600;
  color: var(--g-700);  /* Changé: signature en vert foncé */
  display: flex;
  align-items: center;
  gap: 12px;
}

.dir-sig::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--s-300);
}

.btn-s {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--s-700);
  color: #fff;
  font-family: var(--ff-b);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .25s, transform .2s;
  margin-top: 24px;
}

.btn-s:hover {
  background: var(--g-700);
  transform: translateY(-2px);
}

/* ============================================
   SECTION PROJETS FAR
   ============================================ */
.far-sec {
  background: var(--s-50);
  padding: 96px 48px;
}

.far-in {
  max-width: 1280px;
  margin: 0 auto;
}

.far-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.far-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--s-100);
}

.far-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.far-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--g-700), var(--s-700));
  overflow: hidden;
}

.far-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.far-card:hover .far-image img {
  transform: scale(1.05);
}

.far-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--g-700);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.far-content {
  padding: 24px;
}

.far-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.far-content h3 {
  font-family: var(--ff-d);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--g-700);  /* Changé: titre en vert foncé */
}

.far-content h4 {
  font-size: 12px;
  font-weight: 500;
  color: var(--s-700);  /* Changé: sous-titre en marron */
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.far-content p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--s-700);  /* Changé: texte en marron */
  margin-bottom: 18px;
}

.far-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.far-features span {
  font-size: 10px;
  background: var(--g-50);
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--g-700);
}

.far-stats {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  padding: 12px 0;
  border-top: 1px solid var(--s-100);
  border-bottom: 1px solid var(--s-100);
}

.far-stat {
  flex: 1;
  text-align: center;
}

.far-stat-num {
  display: block;
  font-family: var(--ff-d);
  font-size: 20px;
  font-weight: 700;
  color: var(--g-700);  /* Changé: chiffres en vert foncé */
}

.far-stat-label {
  font-size: 10px;
  color: var(--s-700);  /* Changé: label en marron */
}

.far-progress {
  margin: 16px 0;
}

.far-progress .prog-lbl {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--s-700);
  margin-bottom: 6px;
}

.far-progress .prog-bar {
  height: 5px;
  background: var(--s-100);
  border-radius: 4px;
  overflow: hidden;
}

.far-progress .prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--g-700), var(--g-500));
  border-radius: 4px;
  width: 0%;
  transition: width 1.2s ease;
}

.far-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--g-700);
  text-decoration: none;
  margin-top: 12px;
  transition: gap 0.3s ease;
}

.far-btn:hover {
  gap: 10px;
  color: var(--s-700);
}

.far-cta {
  background: linear-gradient(135deg, var(--white), var(--g-50));
  border-radius: var(--r-lg);
  padding: 36px 48px;
  text-align: center;
  border: 1px solid var(--s-100);
}

.far-cta-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--g-700);  /* Changé: texte en vert foncé */
}

.far-cta-content strong {
  color: var(--s-700);  /* Changé: strong en marron */
}

/* ============================================
   CARTE PRINCIPALE OMNI SI (FAR)
   ============================================ */
.far-main-card {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  margin-bottom: 60px;
  border: 1px solid var(--s-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.far-main-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-xl);
}

.far-main-image {
  position: relative;
  background: linear-gradient(135deg, var(--g-700), var(--s-700));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.far-portrait-img {
  max-width: 100%;
  height: auto;
  max-height: 280px;
  width: auto;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  transition: transform 0.3s ease;
}

.far-main-card:hover .far-portrait-img {
  transform: scale(1.02);
}

.far-main-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.far-main-badge {
  background: var(--g-700);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  box-shadow: var(--sh-sm);
}

.far-main-content {
  padding: 32px;
  background: var(--white);
}

.far-main-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.far-main-content h3 {
  font-family: var(--ff-d);
  font-size: 26px;
  font-weight: 700;
  color: var(--g-700);  /* Changé: titre en vert foncé */
  margin-bottom: 4px;
}

.far-main-content h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--s-700);  /* Changé: sous-titre en marron */
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.far-main-slogan {
  font-family: var(--ff-d);
  font-size: 16px;
  font-style: italic;
  color: var(--s-700);  /* Changé: slogan en marron */
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--s-200);
  display: inline-block;
}

.far-main-info {
  background: var(--g-50);
  padding: 12px 16px;
  border-radius: var(--r-md);
  margin-bottom: 20px;
}

.far-main-info p {
  font-size: 13px;
  margin: 0;
  color: var(--g-700);
}

.far-main-info strong {
  color: var(--s-700);
}

.far-main-features {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-group {
  flex: 1;
  background: var(--s-50);
  padding: 14px;
  border-radius: var(--r-md);
  text-align: center;
}

.feature-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--g-700);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.feature-group p {
  font-size: 11px;
  color: var(--s-700);
  margin: 0;
  line-height: 1.4;
}

.far-main-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--s-100);
  border-bottom: 1px solid var(--s-100);
}

.far-main-stat {
  flex: 1;
  text-align: center;
}

.far-main-stat .stat-value {
  font-family: var(--ff-d);
  font-size: 24px;
  font-weight: 700;
  color: var(--g-700);
  line-height: 1;
}

.far-main-stat .stat-label {
  font-size: 10px;
  color: var(--s-700);
  margin-top: 4px;
}

.far-main-progress {
  margin-bottom: 24px;
}

.far-main-progress .prog-lbl {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--s-700);
  margin-bottom: 6px;
}

.far-main-progress .prog-bar {
  height: 5px;
  background: var(--s-100);
  border-radius: 4px;
  overflow: hidden;
}

.far-main-progress .prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--g-700), var(--g-500));
  border-radius: 4px;
  width: 0%;
  transition: width 1.2s ease;
}

.far-main-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-qr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--s-100);
  color: var(--s-700);
  font-family: var(--ff-b);
  font-size: 12px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--s-200);
}

.btn-qr i {
  font-size: 16px;
  color: var(--g-700);
}

.btn-qr:hover {
  background: var(--s-200);
  transform: translateY(-2px);
}

/* ============================================
   SECTION STATS
   ============================================ */
.stats-sec {
  background: var(--g-800);
  padding: 90px 48px;
  position: relative;
  overflow: hidden;
}

.stats-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 90% at 85% 50%, rgba(90,138,116,.2) 0%, transparent 55%);
}

.stats-sec::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

.stats-in {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.stats-head {
  text-align: center;
  margin-bottom: 60px;
}

.stats-head .ey2 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g-300);
  font-weight: 600;
  margin-bottom: 12px;
}

.stats-head h2 {
  font-family: var(--ff-d);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.kpi-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  padding: 32px 24px;
  text-align: center;
  transition: background .3s;
}

.kpi-item:hover {
  background: rgba(255,255,255,.09);
}

.kpi-val {
  font-family: var(--ff-d);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.kpi-val.brown { color: var(--s-300); }
.kpi-val.green { color: var(--g-300); }

.kpi-lbl {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
}

.kpi-trend {
  font-size: 12px;
  margin-top: 6px;
  font-weight: 600;
}

.kpi-trend.up { color: #7ffabc; }

.dtbl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dtbl {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.dtbl-head {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.dtbl-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.dtbl-head h3 {
  font-family: var(--ff-d);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.dtbl table {
  width: 100%;
  border-collapse: collapse;
}

.dtbl th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding: 10px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.dtbl th:not(:first-child) { text-align: right; }

.dtbl td {
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  padding: 10px 22px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.dtbl td:not(:first-child) {
  text-align: right;
  font-family: var(--ff-d);
  font-size: 15px;
  font-weight: 600;
}

.dtbl tr:last-child td { border-bottom: none; }
.dtbl td.highlight { color: var(--g-300); font-weight: 700; }
.dtbl tr:hover td { background: rgba(255,255,255,.03); }

.prog-row {
  padding: 14px 22px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.prog-lbl {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  margin-bottom: 6px;
}

.prog-bar {
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
}

.prog-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--g-400), var(--g-300));
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

.prog-fill.s {
  background: linear-gradient(90deg, var(--s-500), var(--s-300));
}

/* ============================================
   SECTION ACTUALITÉS
   ============================================ */
.news-sec {
  background: var(--cream);
  padding: 96px 48px;
}

.news-in {
  max-width: 1160px;
  margin: 0 auto;
}

.news-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
}

.n-nav {
  display: flex;
  gap: 10px;
}

.n-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--s-200);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--s-700);
  transition: background .2s, border-color .2s;
}

.n-btn:hover {
  background: var(--s-700);
  border-color: var(--s-700);
  color: #fff;
}

.n-wrap {
  overflow: hidden;
  border-radius: var(--r-lg);
}

.n-track {
  display: flex;
  gap: 22px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.n-card {
  flex: 0 0 calc(33.33% - 15px);
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--s-100);
  transition: transform .3s, box-shadow .3s;
}

.n-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

/* ============================================
   IMAGES 282x179 (MODIFIÉ)
   ============================================ */
.n-ph {
  width: 100%;
  aspect-ratio: 282 / 179; /* Ratio 282:179 */
  overflow: hidden;
  cursor: pointer;
  background-color: var(--s-100);
  position: relative;
}

.n-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Remplit l'espace 282x179 sans déformation */
  display: block;
  transition: transform 0.3s ease;
}

/* Effet zoom au survol */
.n-ph:hover img {
  transform: scale(1.08);
}

/* Indicateur "cliquer pour agrandir" */
.n-ph::after {
  content: '🔍';
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.65);
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.n-ph:hover::after {
  opacity: 1;
}

/* Option alternative: si vous voulez l'image entière sans coupure */
.n-ph.contain img {
  object-fit: contain;
  background-color: var(--s-100);
}

/* Corps de la carte */
.n-body {
  padding: 24px;
}

.n-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--g-700);
  background: var(--g-50);
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 12px;
  border: 1px solid var(--g-100);
}

.n-body h3 {
  font-family: var(--ff-d);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--g-700);
  margin-bottom: 9px;
}

.n-body p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--s-700);
  margin-bottom: 16px;
}

.n-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--s-700);
}

.n-read {
  color: var(--g-700);
  font-weight: 600;
  text-decoration: none;
}

.n-read:hover {
  text-decoration: underline;
}

.n-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 28px;
}

.n-dot {
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background: var(--s-200);
  cursor: pointer;
  transition: width .3s, background .3s;
}

.n-dot.on {
  width: 22px;
  background: var(--s-700);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.lightbox.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .n-card {
    flex: 0 0 calc(50% - 11px);
  }
}

@media (max-width: 768px) {
  .news-sec {
    padding: 60px 24px;
  }
  
  .news-hd {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .n-card {
    flex: 0 0 100%;
  }
  
  .n-ph::after {
    width: 28px;
    height: 28px;
    font-size: 12px;
    bottom: 8px;
    right: 8px;
  }
}

@media (max-width: 480px) {
  .news-sec {
    padding: 40px 16px;
  }
  
  .n-body {
    padding: 16px;
  }
  
  .n-body h3 {
    font-size: 17px;
  }
}
/* ============================================
   SECTION VIE ÉTUDIANTE
   ============================================ */
.life-sec {
  background: var(--s-50);
  padding: 96px 48px;
}

.life-in {
  max-width: 1160px;
  margin: 0 auto;
}

.life-hd {
  text-align: center;
  margin-bottom: 56px;
}

.life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.lc {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: #fff;
  display: block;
  min-height: 260px;
}

.lc:first-child {
  grid-row: 1/3;
  min-height: 540px;
}

.lc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.6) saturate(.9);
  transition: transform .5s ease;
}

.lc:hover .lc-bg {
  transform: scale(1.05);
}

.lc-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,10,5,.88) 0%, transparent 65%);
}

.lc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px;
  z-index: 2;
}

.lc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 7px;
}

.lc h3 {
  font-family: var(--ff-d);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

.lc:first-child h3 {
  font-size: 30px;
}

/* ============================================
   SECTION CTA
   ============================================ */
.cta-sec {
  background: var(--g-700);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(255,255,255,.04) 0%, transparent 60%);
}

.cta-in {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-sec h2 {
  font-family: var(--ff-d);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-sec p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-w {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--g-700);
  font-family: var(--ff-b);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}

.btn-w:hover {
  opacity: .92;
  transform: translateY(-2px);
}

.btn-wg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: rgba(255,255,255,.8);
  font-family: var(--ff-b);
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.3);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.btn-wg:hover {
  border-color: #fff;
  color: #fff;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background: var(--color-ocre);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-ocre-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--g-700);
  color: #fff;
  font-family: var(--ff-b);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .25s, transform .2s;
  position: relative;
  z-index: 2;
}

.btn-p:hover {
  background: var(--s-700);
  transform: translateY(-2px);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  margin-top: var(--spacing-2xl);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-ocre) 0%, var(--color-navy-light) 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.footer-section h4 {
  color: var(--color-ocre);
  margin-bottom: var(--spacing-md);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-section a {
  color: var(--color-white);
  font-size: var(--fs-small);
}

.footer-section a:hover {
  color: var(--color-ocre);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
  font-size: var(--fs-small);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-ocre);
  border-radius: 50%;
  color: var(--color-white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--color-ocre-dark);
  transform: scale(1.1);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }
.fade-in { animation: fadeIn 0.6s ease-out forwards; }
.slide-in-left { animation: slideInLeft 0.6s ease-out forwards; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.rv.on {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .h-inner { grid-template-columns: 1fr; padding: 96px 32px 72px; gap: 44px; }
  .h-vis { display: none; }
  .dir-in { grid-template-columns: 1fr; gap: 44px; }
  .dir-img-wrap { max-width: 280px; margin: 0 auto; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .omni-grid { grid-template-columns: 1fr; gap: 40px; }
  .far-grid { grid-template-columns: repeat(2, 1fr); }
  .far-main-card { grid-template-columns: 1fr; }
  .far-main-image { padding: 30px; justify-content: center; }
  .far-portrait-img { max-height: 220px; }
  .far-main-features { flex-direction: column; gap: 10px; }
  .far-main-actions { flex-direction: column; }
  .kpi-strip { grid-template-columns: repeat(3, 1fr); }
  .dtbl-grid { grid-template-columns: 1fr; }
  .n-card { flex: 0 0 calc(50% - 11px); }
  .life-grid { grid-template-columns: 1fr 1fr; }
  .lc:first-child { grid-column: 1/3; grid-row: auto; min-height: 300px; }
  .footer-content { grid-template-columns: repeat(2, 1fr); }
  .hero-fullwidth { min-height: 600px; }
  .hero-container { padding: 0 32px; }
  .hero-content-wrapper { max-width: 500px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 22px; }
  .slider-arrow.prev { left: 20px; }
  .slider-arrow.next { right: 20px; }
  .hero-stats-card { left: 32px; bottom: 20px; padding: 12px 20px; }
  .hero-float-logo { top: 100px; right: 32px; padding: 12px; }
  .hero-float-logo img { width: 45px; height: 45px; }
}

@media (max-width: 768px) {
  :root {
    --fs-h1: 2.5rem;
    --fs-h2: 1.75rem;
    --fs-h3: 1.25rem;
    --spacing-2xl: 2rem;
  }
  
  .vertical-line { display: none; }
  
  .header-container { flex-wrap: wrap; padding: var(--spacing-md); }
  
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    gap: 0;
    width: 100%;
  }
  
  nav ul.active { display: flex; }
  nav ul li { border-bottom: 1px solid var(--color-grey-light); }
  nav a { display: block; padding: var(--spacing-md); }
  .mobile-menu-toggle { display: block; }
  
  .hero-content { grid-template-columns: 1fr; gap: var(--spacing-lg); }
  .grid-2, .grid-3, .grid-4, .far-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .container { padding: 0 var(--spacing-md); }
  .section { padding: var(--spacing-lg) 0; }
  .far-stats { flex-direction: column; gap: var(--spacing-sm); }
  .omni-stats { grid-template-columns: 1fr; }
  .omni-stats-small { flex-direction: column; gap: 16px; }
  .far-main-content { padding: 24px; }
  .far-main-stats { flex-direction: column; gap: 10px; }
  .far-main-content h3 { font-size: 22px; }
  .far-main-slogan { font-size: 14px; }
  .far-portrait-img { max-height: 180px; }
  
  .hero-fullwidth { min-height: 550px; }
  .hero-container { padding: 0 20px; }
  .hero-content-wrapper { max-width: 100%; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-logo-pill { margin-left: auto; margin-right: auto; }
  .slider-arrow { width: 35px; height: 35px; font-size: 18px; }
  .hero-stats-card { display: none; }
  .hero-float-logo { top: auto; bottom: 80px; right: 20px; left: auto; }
  .slider-dots { bottom: 20px; }
  
  .gemini-bubbles div { display: none; }
  .gemini-bubbles-light div { display: none; }
  .gemini-dots-light { background-size: 20px 20px; }
}

@media (max-width: 640px) {
  :root {
    --fs-h1: 2rem;
    --fs-h2: 1.5rem;
    --fs-h3: 1.1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
  }
  
  .h-inner, .dir-sec, .svc-sec, .omni-sec, .far-sec, .stats-sec, .news-sec, .life-sec, .cta-sec {
    padding-left: 18px;
    padding-right: 18px;
  }
  
  .svc-grid { grid-template-columns: 1fr; }
  .kpi-strip { grid-template-columns: 1fr; }
  .n-card { flex: 0 0 100%; }
  .life-grid { grid-template-columns: 1fr; }
  .lc:first-child { grid-column: auto; }
  .sec-hd { flex-direction: column; align-items: flex-start; }
  .sec-sb { text-align: left; max-width: 100%; }
  .news-hd { flex-direction: column; align-items: flex-start; gap: 20px; }
  .far-cta { padding: 24px; }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--color-grey-lighter);
    margin-top: 0;
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  .hero-fullwidth { min-height: 500px; }
  .hero-title { font-size: 32px; }
  .hero-description { font-size: 14px; }
  .btn-hero-primary, .btn-hero-secondary { padding: 10px 20px; font-size: 13px; }
  .slider-arrow { width: 30px; height: 30px; }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }
  .hero-float-logo { transform: scale(0.8); bottom: 60px; right: 10px; }
  
  .far-cta { padding: var(--spacing-lg); }
  .far-content { padding: var(--spacing-md); }
}

@media (max-width: 480px) {
  :root {
    --fs-h1: 2rem;
    --fs-h2: 1.5rem;
    --fs-h3: 1.1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--color-grey-lighter);
    margin-top: 0;
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  .far-cta {
    padding: var(--spacing-lg);
  }
  
  .far-content {
    padding: var(--spacing-md);
  }
}
/* ============================================
   GALERIE VIE ÉTUDIANTE
   ============================================ */
.life-sec {
  background: var(--cream);
  padding: 96px 48px;
}

.life-in {
  max-width: 1160px;
  margin: 0 auto;
}

.life-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 20px;
}

/* Contrôles */
.gallery-controls {
  display: flex;
  gap: 12px;
}

.gallery-shuffle-btn,
.gallery-view-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 1px solid var(--s-200);
  border-radius: 100px;
  color: var(--s-700);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-shuffle-btn:hover,
.gallery-view-btn:hover {
  background: var(--s-700);
  color: white;
  border-color: var(--s-700);
  transform: translateY(-2px);
}

/* Grille */
.life-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  transition: opacity 0.3s ease;
}

/* Cartes */
.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-card.gallery-wide {
  grid-column: span 2;
}

.gallery-card.gallery-tall {
  grid-row: span 2;
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4/3;
}

.gallery-tall .gallery-img-wrapper {
  aspect-ratio: 3/4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-overlay-content {
  transform: translateY(0);
}

.gallery-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}

.gallery-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.gallery-category {
  display: inline-block;
  font-size: 12px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 100px;
}

/* Lightbox (inchangé - gardez votre CSS existant) */
.gallery-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.gallery-lightbox.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

/* ... (reste du CSS lightbox identique à avant) ... */

@media (max-width: 768px) {
  .life-sec {
    padding: 60px 24px;
  }
  
  .gallery-card.gallery-wide {
    grid-column: span 1;
  }
  
  .gallery-controls {
    width: 100%;
    justify-content: space-between;
  }
}