/* ==========================================================================
   STYLE.CSS - DESIGN SYSTEM LOIC TAP
   Version : Corrigée Mobile & Desktop (Photos split + Full Center)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. IMPORTS & FONTS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* --------------------------------------------------------------------------
   2. VARIABLES (Couleurs, Tailles, Effets)
   -------------------------------------------------------------------------- */
:root {
  /* Couleurs de fond */
  --bg-body: #02040a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.02);
  --bg-input: rgba(255, 255, 255, 0.05);

  /* Couleurs de texte */
  --text-white: #ffffff;
  --text-body: #94a3b8;
  --text-muted: #64748b;

  /* Accents */
  --accent-primary: #3b82f6;   /* Bleu */
  --accent-secondary: #8b5cf6; /* Violet */
  --accent-success: #10b981;   /* Vert */
  --accent-warning: #fbbf24;   /* Jaune/Orange */
  --accent-danger: #ef4444;    /* Rouge */

  /* Dégradés */
  --gradient-text: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  --gradient-btn: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
  --gradient-dark: linear-gradient(180deg, #02040a 0%, #060912 100%);

  /* Dimensions */
  --header-height: 80px;
  --container-width: 1200px;
  --section-spacing: 100px;

  /* Arrondis */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-pill: 999px;

  /* Effets */
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);
  --shadow-card: 0 10px 30px rgba(0,0,0,0.5);
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --------------------------------------------------------------------------
   3. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-body);
  color: var(--text-body);
  line-height: 1.6;
  /* padding-top: var(--header-height); ← SUPPRIME CETTE LIGNE */
  overflow-x: clip;
}



ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
img { max-width: 100%; height: auto; display: block; }


/* --------------------------------------------------------------------------
   4. UTILITAIRES & TYPO
   -------------------------------------------------------------------------- */
/* Marges forcées */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mx-auto { margin-inline: auto; }

/* Alignements texte */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* Couleurs texte */
/* Couleurs texte - AVEC !IMPORTANT POUR FORCER L'APPLICATION */
.text-primary { color: var(--accent-primary) !important; }
.text-secondary { color: var(--accent-secondary) !important; }
.text-success { color: var(--accent-success) !important; }
.text-danger { color: var(--accent-danger) !important; }
.text-warning { color: var(--accent-warning) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-white { color: var(--text-white) !important; }


/* Utilitaires de largeur (pour remplacer les style="max-width...") */
.mw-600 { max-width: 600px; margin-inline: auto; }
.mw-800 { max-width: 800px; margin-inline: auto; }
.mw-900 { max-width: 900px; margin-inline: auto; }
.mw-1000 { max-width: 1000px; margin-inline: auto; }

/* Flex utilitaires (pour remplacer style="display:flex...") */
.flex-center-gap { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* Alignement haut pour sticky (nécessaire dans grid) */
.items-start { align-items: start !important; }

/* Hauteurs spécifiques */
.h-150 { height: 150px; } 
.h-100-px { height: 100px; } 

/* Titres */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1.5rem; font-size: 1.05rem; line-height: 1.7; }

/* Effet texte dégradé */
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  display: inline-block;
}

/* Gradient animé avec effet dynamique (appliqué automatiquement aux H2 via JS) */
.heading-gradient-animated {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #60a5fa 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}


/* --------------------------------------------------------------------------
   5. LAYOUT & GRILLES
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-inline: 20px;
}

.section-padding { padding-block: var(--section-spacing); position: relative; }
.section-soft-bg { background: rgba(255,255,255,0.02); }

/* Grilles Standards */
.grid-1 { display: grid; grid-template-columns: 1fr; gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* Grille 50/50 pour Hero (CORRECTION : EN DEHORS DU MEDIA QUERY) */
.grid-split-half {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50% / 50% */
  gap: 60px;
  align-items: center;
  width: 100%;
}

.grid-split-40-60, .grid-split-60-40 { display: grid; gap: 60px; align-items: center; }
.grid-split-40-60 { grid-template-columns: 0.8fr 1.2fr; }
.grid-split-60-40 { grid-template-columns: 1.2fr 0.8fr; }

/* FIX STICKY : Force l'alignement haut sur demande */
.items-start { align-items: start !important; }

/* Divider Vertical Lumineux */
.divider-vertical-glow {
  width: 1px;
  height: 80px;
  margin: 0 auto;
  background: linear-gradient(180deg, transparent 0%, var(--accent-primary) 50%, transparent 100%);
}

/* --------------------------------------------------------------------------
   6. HEADER & NAV
   -------------------------------------------------------------------------- */
.header {
  position: fixed; inset-inline: 0; top: 0; z-index: 1000;
  height: var(--header-height);
  background: rgba(2, 4, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: var(--glass-border);
  display: flex; align-items: center;
  transition: var(--transition-smooth);
}
.header.scrolled { background: rgba(2, 4, 10, 0.98); height: 70px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: var(--container-width); margin-inline: auto; padding-inline: 20px; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--text-white); letter-spacing: -1px; }
.logo-accent { color: var(--accent-primary); }
.nav { display: flex; gap: 30px; align-items: center; }
.nav-link { color: var(--text-body); font-weight: 500; font-size: 0.95rem; }
.nav-link:hover { color: var(--text-white); }
.burger { display: none; background: none; border: none; color: var(--text-white); font-size: 1.5rem; cursor: pointer; }

/* --------------------------------------------------------------------------
   7. BOUTONS & BADGES
   -------------------------------------------------------------------------- */
.badge { display: inline-block; padding: 6px 14px; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600; }
.badge-blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.badge-purple { background: rgba(139, 92, 246, 0.15); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.3); }

/* Badge plein pour les photos */
.badge-solid-green { background: var(--accent-success); color: var(--text-white); border: none; }
.badge-solid-blue { background: var(--accent-primary); color: var(--text-white); border: none; }
.badge-solid-purple { background: var(--accent-secondary); color: var(--text-white); border: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 28px; border-radius: 10px; font-weight: 600; border: none;
  cursor: pointer; font-size: 1rem; transition: var(--transition-smooth); white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }
.btn-full { width: 100%; }

.btn-primary { background: var(--gradient-btn); color: var(--text-white); box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5); }

.btn-secondary { background: rgba(255, 255, 255, 0.1); color: var(--text-white); border: 1px solid rgba(255, 255, 255, 0.1); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   8. HERO SECTIONS & IMAGES
   -------------------------------------------------------------------------- */
.hero-section { padding-top: 80px; min-height: 90vh; display: flex; align-items: center; position: relative; }
.hero-section--full {
  padding-top: 180px; min-height: 80vh; display: flex; align-items: center; text-align: center;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 1) 0%, rgba(2, 4, 10, 1) 100%);
  position: relative;
}
.hero-section--full .hero-content { max-width: 800px; margin: 0 auto; text-align: center; }
.hero-section--full .hero-buttons { justify-content: center; }

.hero-content { max-width: 800px; }
.hero-title-xl { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; word-break: break-word; }
.hero-lead { font-size: 1.25rem; color: var(--text-body); margin: 0 auto 40px; max-width: 800px; }

/* Effets Glow de fond */
.hero-glow, .hero-glow--soft, .hero-glow--side { position: absolute; z-index: -1; }
.hero-glow, .hero-glow--soft { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60%; height: 60%; }
.hero-glow { background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%); }
.hero-glow--soft { background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%); }
.hero-glow--side { top: -10%; right: -10%; width: 50%; height: 80%; background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%); }

.hero-img-container { position: relative; }
.hero-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-glow); transition: transform 0.3s ease-out; will-change: transform; }
.hero-img:hover { transform: scale(1.03); }

.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 40px; }

/* BADGES FLOTTANTS (Avec correction position badge 3) */
.floating-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.9); border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 14px; border-radius: 10px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3); backdrop-filter: blur(5px);
  z-index: 5; animation: float 4s ease-in-out infinite;
  font-weight: 600; color: var(--text-white); font-size: 0.8rem; max-width: 180px;
}
.badge-1 { top: 15%; right: -20px; animation-delay: 0s; }
.badge-2 { top: 50%; right: -30px; left: auto; animation-delay: 1.5s; }

/* CORRECTION : Décalage du Badge 3 vers la droite */
.badge-3 { bottom: 10%; left: 40px; right: auto; animation-delay: 2.5s; }

/* Positions spécifiques photo gauche */
.hero-photo-left .badge-1 { top: 10%; left: -10px; right: auto; }
.hero-photo-left .badge-2 { top: 50%; right: -15px; left: auto; }
.hero-photo-left .badge-3 { bottom: 10%; left: 20px; right: auto; } /* Légèrement décalé aussi */

/* Positions spécifiques photo droite */
.hero-photo-right .badge-1 { top: 10%; left: -10px; right: auto; }
.hero-photo-right .badge-2 { top: 50%; right: -15px; left: auto; }
.hero-photo-right .badge-3 { bottom: 10%; left: 40px; right: auto; } /* Décalé */

/* --------------------------------------------------------------------------
   9. LOGOS STRIP
   -------------------------------------------------------------------------- */
.logos-strip { overflow: hidden; padding: 60px 0; background: rgba(255, 255, 255, 0.02); border-block: 1px solid rgba(255,255,255,0.05); position: relative; }
.logos-strip::before, .logos-strip::after { content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2; }
.logos-strip::before { left: 0; background: linear-gradient(to right, var(--bg-body), transparent); }
.logos-strip::after { right: 0; background: linear-gradient(to left, var(--bg-body), transparent); }
.logos-track { display: flex; gap: 80px; width: max-content; animation: scroll 30s linear infinite; }
.logo-link { flex-shrink: 0; display: flex; align-items: center; justify-content: center; min-width: 140px; }
.logo-link img { height: 110px; width: auto; opacity: 0.5; filter: grayscale(100%) brightness(1.5); transition: 0.3s; }
.logo-link:hover img { opacity: 1; filter: grayscale(0%) brightness(1); transform: scale(1.1); }

/* --------------------------------------------------------------------------
   10. CARDS & MODULES
   -------------------------------------------------------------------------- */
.card { background: var(--bg-card); border: var(--glass-border); border-radius: var(--radius-lg); padding: 40px; display: flex; flex-direction: column; overflow: hidden; transition: var(--transition-smooth); height: 100%; }
.card:hover { box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.hover-lift { transition: var(--transition-smooth); }
.hover-lift:hover { transform: translateY(-8px); box-shadow: var(--shadow-glow); }

.card--hover-blue:hover { border-color: var(--accent-primary); }
.card--hover-purple:hover { border-color: var(--accent-secondary); }
.card--hover-green:hover { border-color: var(--accent-success); }
.card--hover-white:hover { border-color: rgba(255,255,255,0.8); }

.card--center { text-align: center; align-items: center; }
.card--left { text-align: left; align-items: flex-start; }
.card-footer { margin-top: auto; padding-top: 20px; }
.card-footer .btn { width: 100%; }
.card .badge-in-card { margin-bottom: 20px; }
.card-title-inline { display: flex; align-items: center; gap: 10px; }
.card-title-inline .icon-square { min-width: 32px; height: 32px; }

.card-full-media-inner { display:flex; align-items:stretch; position:relative; background:var(--bg-card); }
.card-full-media-img { flex:0 0 45%; position:relative; overflow:hidden; }
.card-full-media-img img { width:100%; height:100%; object-fit:cover; }
.card-full-media-img::after { content:''; position:absolute; top:0; right:0; bottom:0; width:50%; background: linear-gradient(to right, transparent, var(--bg-card)); z-index:2; pointer-events: none; }
.badge-overlay { position:absolute; top:20px; left:20px; z-index:10; box-shadow:0 4px 10px rgba(0,0,0,0.3); }
@media (max-width:768px) { .card-full-media-img::after { display:none; } 
}


/* Styles Cards Spécifiques */
.card--danger { border: 1px solid rgba(239, 68, 68, 0.3); background: linear-gradient(180deg, rgba(239, 68, 68, 0.1) 0%, transparent 100%); }
.card--success { border: 1px solid rgba(16, 185, 129, 0.3); background: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%); }
.card--primary { border: 1px solid rgba(59, 130, 246, 0.3); background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%); }
.card--warning { border: 1px solid rgba(251, 191, 36, 0.3); background: linear-gradient(180deg, rgba(251, 191, 36, 0.1) 0%, transparent 100%); }
.card-text { background: var(--bg-card); border: var(--glass-border); padding: 40px; border-radius: 16px; margin-bottom: 30px; transition: var(--transition-smooth); }
.card-text:hover { box-shadow: var(--shadow-glow); border-color: var(--accent-primary); }

/* Listes */
.clean-list { list-style: none; padding: 0; margin: 0; }
.clean-list li { display: flex; align-items: center; margin-bottom: 15px; font-size: 1.1rem; }
.clean-list li i { margin-right: 15px; font-size: 1rem; }

/* Icones */
.icon-block { display: block; font-size: 3rem; margin: 0 auto 20px auto; }
.icon-square, .icon-square--lg { display: flex; align-items: center; justify-content: center; border-radius: 10px; }
.icon-square { min-width: 40px; height: 40px; font-size: 1.2rem; }
.icon-square--lg { min-width: 50px; height: 50px; font-size: 1.5rem; flex-shrink: 0; }
.icon-circle-lg { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 30px; display: flex; align-items: center; justify-content: center; background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.3); font-size: 2.5rem; color: var(--accent-primary); transition: transform 0.3s ease; }
.icon-circle-lg:hover { transform: scale(1.1) rotate(5deg); }

/* Fonds colorés soft */
.bg-primary-soft { background: rgba(59, 130, 246, 0.1); color: var(--accent-primary); }
.bg-success-soft { background: rgba(16, 185, 129, 0.1); color: var(--accent-success); }
.bg-danger-soft { background: rgba(239, 68, 68, 0.1); color: var(--accent-danger); }
.bg-warning-soft { background: rgba(251, 191, 36, 0.1); color: var(--accent-warning); }

/* Modules Grid */
.tool-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; height: 100%; transition: var(--transition-smooth); }
.tool-card:hover { box-shadow: var(--shadow-glow); border-color: var(--accent-primary); }
.media-item { display: flex; gap: 20px; margin-bottom: 30px; }
.modules-grid { text-align: left; }
.card-module { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 20px; border-radius: 12px; display: flex; align-items: center; gap: 15px; }
.card-module-icon { min-width: 45px; height: 45px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.card-module-icon i { font-size: 1.2rem; }
.card-module-title { margin: 0; font-size: 1.05rem; color: var(--text-white); }

/* Card Photo Top (Correctif Full Largeur) */
.card-photo-top { padding: 0 !important; overflow: hidden; }
.card-photo-top .card-photo-wrapper { position: relative; overflow: hidden; width: 100%; }
.card-photo-top .card-photo-wrapper img { width: 100%; height: auto; display: block; transform: scale(1); transition: transform 0.4s ease; }
.card-photo-top:hover .card-photo-wrapper img { transform: scale(1.08); }
.card-photo-top h3 { margin-top: 24px; padding-inline: 40px; }
.card-photo-top p { margin-bottom: 20px; padding-inline: 40px; }
.card-photo-top .card-footer { padding-bottom: 30px; padding-inline: 40px; margin-top: auto; }

/* Card Full (Media & Contenu) */
.card-full { align-items: flex-start; text-align: left; }
.card-full .icon-circle-lg { margin-left: 0; margin-right: 0; }
.card-full-media { padding: 0 !important; }
.card-full-media-inner { display: flex; align-items: stretch; width: 100%; }
.card-full-media-img { flex: 0 0 40%; max-width: 40%; overflow: hidden; position: relative; }
.card-full-media-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform 0.4s ease; }
.card-full-media-img:hover img { transform: scale(1.08); }
.card-full-media-img::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 50%; background: linear-gradient(to right, transparent, var(--bg-card)); z-index: 2; pointer-events: none; }
.card-full-media-content { flex: 1; padding: 30px 40px; display: flex; flex-direction: column; justify-content: center; }
.card-full-media-content h3 { margin-bottom: 12px; }
.card-full-media-content p { margin-bottom: 20px; }

/* --------------------------------------------------------------------------
   11. PRICING
   -------------------------------------------------------------------------- */
.pricing-grid { gap: 50px; max-width: 1000px; margin: 0 auto; }
.pricing-card { border: 2px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); background: var(--bg-card); padding: 40px; display: flex; flex-direction: column; height: 100%; position: relative; transition: var(--transition-smooth); text-align: center; align-items: center; }
.pricing-card:hover { box-shadow: var(--shadow-glow); border-color: var(--accent-primary); }
.pricing-card--featured { border-color: var(--accent-primary); background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8)); box-shadow: 0 0 30px rgba(59, 130, 246, 0.15); overflow: visible; }
.pricing-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent-primary); color: var(--text-white); padding: 6px 16px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.8rem; box-shadow: 0 4px 15px rgba(59,130,246,0.5); white-space: nowrap; }
.pricing-title { font-size: 1.5rem; margin-bottom: 15px; min-height: 35px; display: flex; align-items: flex-end; justify-content: center; text-align: center; }
.pricing-desc { min-height: 60px; margin-bottom: 0; color: var(--text-muted); text-align: center; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--text-white); margin: 25px 0; padding-block: 20px; border-block: 1px solid rgba(255,255,255,0.1); text-align: center; width: 100%; }
.pricing-ttc { font-size: 1rem; font-weight: 400; color: var(--text-muted); text-align: center; }
.pricing-list { flex-grow: 1; min-height: 150px; text-align: left; margin: 0 auto; max-width: 260px; }
.pricing-list-item { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.95rem; justify-content: flex-start; }
.pricing-list-icon { font-size: 0.9rem; margin-top: 3px; }
.pricing-list-item--included .pricing-list-icon { color: var(--accent-success); }
.pricing-list-item--excluded, .pricing-list-item--excluded .pricing-list-icon { color: var(--text-muted); }
.pricing-btn-container { margin-top: auto; width: 100%; text-align: center; }

/* --------------------------------------------------------------------------
   12. FAQ & AUTRES SECTIONS
   -------------------------------------------------------------------------- */
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: var(--glass-border); border-radius: var(--radius-lg); margin-bottom: 20px; overflow: hidden; transition: var(--transition-smooth); }
.faq-item:hover { border-color: var(--accent-primary); box-shadow: var(--shadow-glow); }
.faq-question { width: 100%; padding: 25px 30px; background: transparent; border: none; color: var(--text-white); font-size: 1.1rem; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition-smooth); }
.faq-question:hover { color: var(--accent-primary); }
.faq-icon { font-size: 1.2rem; color: var(--accent-primary); transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 30px; color: var(--text-muted); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 30px 25px 30px; }

/* CTA Premium */
.cta-premium-section { position: relative; padding-bottom: 200px; }
.cta-premium-glow { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80%; height: 360px; background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 75%); z-index: -1; }
.cta-premium-card { background: radial-gradient(circle at top, rgba(59,130,246,0.35) 0%, rgba(15,23,42,0.95) 45%, rgba(2,4,10,1) 100%); border: 1px solid rgba(59, 130, 246, 0.8); box-shadow: 0 0 40px rgba(59,130,246,0.6); border-radius: 30px; padding: 70px 30px; text-align: center; max-width: 900px; margin: 0 auto; }
.cta-premium-badge { display: inline-block; background: rgba(59, 130, 246, 0.15); color: var(--accent-primary); padding: 8px 20px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.85rem; margin-bottom: 30px; border: 1px solid rgba(59, 130, 246, 0.3); }
.cta-premium-title { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 20px; line-height: 1.2; }
.cta-premium-text { font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; color: var(--text-muted); }
.cta-premium-card .btn-primary { box-shadow: 0 0 25px rgba(59,130,246,0.8); }
.cta-premium-card .btn-primary:hover { box-shadow: 0 0 35px rgba(59,130,246,1); }

/* Timeline & Gallery */
.timeline-container { max-width: 1100px; margin: 0 auto; }
.timeline-grid { display: grid; grid-template-columns: 1fr 350px; gap: 80px; align-items: start; }
.timeline-wrapper { border-left: 2px solid var(--accent-primary); padding-left: 40px; position: relative; }
.timeline-step { position: relative; margin-bottom: 60px; }
.timeline-dot { position: absolute; left: -51px; top: 5px; width: 20px; height: 20px; background: var(--bg-body); border: 4px solid var(--accent-primary); border-radius: 50%; box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2); }
.timeline-images { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 20px; }
.timeline-img-wrapper { position: relative; transform-origin: center; transition: transform 0.3s ease; }
.timeline-img-wrapper:first-child { transform: rotate(2deg); }
.timeline-img-wrapper:nth-child(2) { transform: rotate(-3deg) translateX(-20px); }
.timeline-img-wrapper:hover { transform: rotate(0deg) scale(1.05); z-index: 10; }
.timeline-img { width: 100%; border-radius: 12px; border: 4px solid rgba(255,255,255,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.5); display: block; }

/* Footer */
.footer{border-top:none;background:linear-gradient(180deg,#02040a 0%,#000000 100%);padding-top:80px;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:80px;padding-top:0;border-top:none;margin-bottom:80px;}
.footer-logo{display:block;margin-bottom:20px;}
.footer-col-title{font-size:1.1rem;margin-bottom:20px;color:var(--text-white);}
.footer-links-list{margin:0;}
.footer-links-list a{color:var(--text-body);font-size:0.95rem;display:block;margin-bottom:12px;}
.footer-links-list a:hover{color:var(--text-white);}
.footer-social-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px;margin-top:30px; margin-bottom: 100px;}
.footer-social-card{background:var(--bg-card);border:var(--glass-border);border-radius:16px;padding:15px;text-align:center;transition:var(--transition-smooth);}
.footer-social-card:hover{border-color:var(--accent-primary);transform:translateY(-4px);}
.footer-social-icon{font-size:1.6rem;margin-bottom:10px;color:var(--accent-primary);}
.footer-social-label{font-size:0.9rem;color:var(--text-muted);display:block;margin-bottom:5px;}
.footer-social-number{font-size:1rem;font-weight:700;color:var(--text-white);display:block;}


/* Animations */
.fade-in-section { opacity: 0; transform: translateY(40px); visibility: hidden; transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in-section.is-visible { opacity: 1; transform: translateY(0); visibility: visible; }
@keyframes bounce { 0%,20%,50%,80%,100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes gradient-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* ==========================================================================
   FORCE DESKTOP (POUR GARANTIR LE STICKY SUR PC)
   ========================================================================== */
@media (min-width: 992px) {
    /* 1. On force le conteneur global à ne PAS étirer les colonnes */
    .grid-split-half.items-start {
        align-items: start !important; 
    }

    /* 2. On s'assure que la colonne de l'image ne prend QUE sa propre taille */
    .sticky-img {
        height: fit-content !important; 
        align-self: start !important;   
        position: -webkit-sticky !important;
        position: sticky !important;    
        top: 120px !important;          
        z-index: 10;
    }
}

/* ==========================================================================
   RESPONSIVE (MOBILE & TABLETTE)
   ========================================================================== */

/* TABLETTE & MOBILE (max 1024px) */
@media (max-width: 1024px) {
  /* Grilles */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-images { display: none; } 

  /* Correctif Card Photo Full Largeur (Suppression padding) */
  .card-photo-top { padding: 0 !important; }
  .card-photo-top h3, .card-photo-top p, .card-photo-top .card-footer { padding-inline: 25px !important; }
}

/* MOBILE UNIQUEMENT (max 768px) */
@media (max-width: 768px) {
  
  /* 1. LAYOUT GLOBAL */
  .container { padding-inline: 15px; }
  .grid-2, .grid-3, .grid-4, .grid-split-half { grid-template-columns: 1fr !important; gap: 40px; }

  /* 2. DÉSACTIVE LE STICKY */
  .sticky-img { position: relative !important; top: auto !important; height: auto !important; align-self: auto !important; }

  /* 3. ALIGNEMENT MOBILE (Centre tout) */
  .items-start { align-items: center !important; }

  /* 4. TEXTES & ALIGNEMENTS */
  .hero-content, .hero-section, .section-padding, .text-left, .text-right { text-align: center !important; }
  .hero-buttons { justify-content: center; }

  /* 5. ORDRE DES ÉLÉMENTS */
  .hero-img-container { order: -1; margin-bottom: 40px; }
  
  /* 6. ELEMENTS SPÉCIFIQUES */
  .clean-list li { justify-content: center; } 
  .card-module { flex-direction: column; text-align: center; } 
  .feature-row { flex-direction: column; align-items: center; text-align: center; } 
  .card-title-inline { justify-content: center; } 
  .pricing-list { margin: 0 auto 20px; } 

  /* Correctif Hero + Liste (Media Items) */
  .media-item { flex-direction: column; text-align: center; align-items: center; }
  .media-item .icon-square, .media-item .icon-square--lg { margin-bottom: 15px; }

  /* Footer */
  .footer-social-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .divider-vertical-glow { display: none; } 

  /* 7. NAVIGATION MOBILE */
  .burger { display: block; }
  .nav { position: fixed; top: 0; right: -100%; width: 85%; height: 100vh; background: var(--bg-body); flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,0.1); transition: 0.4s; z-index: 1100; }
  .nav.active { right: 0; }
  
  /* 8. TYPO MOBILE */
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  /* 9. CORRECTIF CARDS FULL (Centrage forcé sur Mobile) */
  /* On écrase le align-left du desktop */
  .card-full { 
      align-items: center !important; 
      text-align: center !important; 
  }
  
  /* On centre l'icône ronde */
  .card-full .icon-circle-lg { 
      margin-left: auto !important; 
      margin-right: auto !important; 
  }
  
  /* On empile l'image et le texte */
  .card-full-media-inner { 
      flex-direction: column; 
  }
  
  /* On ajuste l'image */
  .card-full-media-img { 
      max-width: 100%; 
      flex: 0 0 auto; 
      height: 200px; 
  }
  
  /* On centre le contenu texte sous l'image */
  .card-full-media-content { 
      text-align: center !important; 
      align-items: center !important; /* Pour centrer le bouton s'il est flex */
  }

} /* FIN DU FICHIER */

